Gathering detailed insights and metrics for @ohmi/react-native-pdf
Gathering detailed insights and metrics for @ohmi/react-native-pdf
Gathering detailed insights and metrics for @ohmi/react-native-pdf
Gathering detailed insights and metrics for @ohmi/react-native-pdf
npm install @ohmi/react-native-pdf
Typescript
Module System
Node Version
NPM Version
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
3
模板版本:v0.2.2
@ohmi/react-native-pdf
[!TIP] Gitee 地址
请到三方库的 Releases 发布地址查看配套的版本信息:@ohmi/react-native-pdf Releases 。对于未发布到npm的旧版本,请参考安装指南安装tgz包。
进入到工程目录并输入以下命令:
1npm install @ohmi/react-native-pdf
1yarn add @ohmi/react-native-pdf
下面的代码展示了这个库的基本使用场景:
[!WARNING] 使用时 import 的库名不变。
1import React from "react"; 2import { View, Dimensions, StyleSheet } from "react-native"; 3import Pdf from "react-native-pdf"; 4 5export function PdfExample() { 6 // const source = { uri: 'https://www-file.huawei.com/minisite/media/annual_report/annual_report_2022_cn.pdf', cache: true }; 7 const source = require("../assets/test.pdf"); 8 9 return ( 10 <View style={styles.sectionContainer}> 11 <Pdf 12 source={source} 13 onLoadComplete={(numberOfPages, filePath) => { 14 console.log(`Number of pages: ${numberOfPages}`); 15 }} 16 onPageChanged={(page, numberOfPages) => { 17 console.log(`Current page: ${page}`); 18 }} 19 onError={(error) => { 20 console.log(error); 21 }} 22 onPressLink={(uri) => { 23 console.log(`Link pressed: ${uri}`); 24 }} 25 style={styles.pdf} 26 /> 27 </View> 28 ); 29} 30 31const styles = StyleSheet.create({ 32 sectionContainer: { 33 flex: 1, 34 justifyContent: "flex-start", 35 alignItems: "center", 36 }, 37 pdf: { 38 flex: 1, 39 width: Dimensions.get("window").width, 40 height: Dimensions.get("window").height, 41 }, 42});
目前 HarmonyOS 暂不支持 AutoLink,所以 Link 步骤需要手动配置。
首先需要使用 DevEco Studio 打开项目里的 HarmonyOS 工程 harmony
oh-package.json5
添加 overrides 字段1{ 2 ... 3 "overrides": { 4 "@rnoh/react-native-openharmony" : "./react_native_openharmony" 5 } 6}
目前有两种方法:
方法一:通过 har 包引入(推荐)
[!TIP] har 包位于三方库安装路径的
harmony
文件夹下。
打开 entry/oh-package.json5
,添加以下依赖
1"dependencies": { 2 "@rnoh/react-native-openharmony": "file:../react_native_openharmony", 3 "@ohmi/react-native-pdf": "file:../../node_modules/@ohmi/react-native-pdf/harmony/pdfview.har" 4 }
点击右上角的 sync
按钮
或者在终端执行:
1cd entry 2ohpm install
方法二:直接链接源码
[!TIP] 如需使用直接链接源码,请参考直接链接源码说明
打开 entry/src/main/cpp/CMakeLists.txt
,添加:
1project(rnapp) 2cmake_minimum_required(VERSION 3.4.1) 3set(CMAKE_SKIP_BUILD_RPATH TRUE) 4set(RNOH_APP_DIR "${CMAKE_CURRENT_SOURCE_DIR}") 5set(NODE_MODULES "${CMAKE_CURRENT_SOURCE_DIR}/../../../../../node_modules") 6+ set(OH_MODULES "${CMAKE_CURRENT_SOURCE_DIR}/../../../oh_modules") 7set(RNOH_CPP_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../../../../../react-native-harmony/harmony/cpp") 8set(LOG_VERBOSITY_LEVEL 1) 9set(CMAKE_ASM_FLAGS "-Wno-error=unused-command-line-argument -Qunused-arguments") 10set(CMAKE_CXX_FLAGS "-fstack-protector-strong -Wl,-z,relro,-z,now,-z,noexecstack -s -fPIE -pie") 11set(WITH_HITRACE_SYSTRACE 1) # for other CMakeLists.txt files to use 12add_compile_definitions(WITH_HITRACE_SYSTRACE) 13 14add_subdirectory("${RNOH_CPP_DIR}" ./rn) 15 16# RNOH_BEGIN: manual_package_linking_1 17add_subdirectory("../../../../sample_package/src/main/cpp" ./sample-package) 18+ add_subdirectory("${OH_MODULES}/@ohmi/react-native-pdf/src/main/cpp" ./pdfview) 19# RNOH_END: manual_package_linking_1 20 21file(GLOB GENERATED_CPP_FILES "./generated/*.cpp") 22 23add_library(rnoh_app SHARED 24 ${GENERATED_CPP_FILES} 25 "./PackageProvider.cpp" 26 "${RNOH_CPP_DIR}/RNOHAppNapiBridge.cpp" 27) 28target_link_libraries(rnoh_app PUBLIC rnoh) 29 30# RNOH_BEGIN: manual_package_linking_2 31target_link_libraries(rnoh_app PUBLIC rnoh_sample_package) 32+ target_link_libraries(rnoh_app PUBLIC rnoh_pdf_view) 33# RNOH_END: manual_package_linking_2
打开 entry/src/main/cpp/PackageProvider.cpp
,添加:
1#include "RNOH/PackageProvider.h" 2#include "SamplePackage.h" 3+ #include "PdfViewPackage.h" 4 5using namespace rnoh; 6 7std::vector<std::shared_ptr<Package>> PackageProvider::getPackages(Package::Context ctx) { 8 return { 9 std::make_shared<SamplePackage>(ctx), 10+ std::make_shared<PdfViewPackage>(ctx) 11 }; 12}
找到 function buildCustomRNComponent(),一般位于 entry/src/main/ets/pages/index.ets
或 entry/src/main/ets/rn/LoadBundle.ets
,添加:
1 ... 2+ import { RTNPdfView, PDF_VIEW_TYPE } from '@ohmi/react-native-pdf'; 3 4 @Builder 5export function buildCustomRNComponent(ctx: ComponentBuilderContext) { 6 ... 7+ if (ctx.componentName === PDF_VIEW_TYPE) { 8+ RTNPdfView({ 9+ ctx: ctx.rnComponentContext, 10+ tag: ctx.tag, 11+ }) 12+ } 13 ... 14 } 15 ... 16
[!TIP] 本库使用了混合方案,需要添加组件名。
在entry/src/main/ets/pages/index.ets
或 entry/src/main/ets/rn/LoadBundle.ets
找到常量 arkTsComponentNames
在其数组里添加组件名
1const arkTsComponentNames: Array<string> = [ 2 SampleView.NAME, 3 GeneratedSampleView.NAME, 4 PropsDisplayer.NAME, 5+ PDF_VIEW_TYPE 6 ];
点击右上角的 sync
按钮
或者在终端执行:
1cd entry 2ohpm install
然后编译、运行即可。
要使用此库,需要使用正确的 React-Native 和 RNOH 版本。另外,还需要使用配套的 DevEco Studio 和 手机 ROM。
请到三方库相应的 Releases 发布地址查看 Release 配套的版本信息:@ohmi/react-native-pdf Releases
[!TIP] "Platform"列表示该属性在原三方库上支持的平台。
[!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
Name | Description | Type | Required | Platform | HarmonyOS Support |
---|---|---|---|---|---|
source | PDF source like {uri:xxx, cache:false}. see the following for detail. | object | YES | iOS / Android | yes |
page | initial page index | number | NO | iOS / Android | yes |
scale | should minScale<=scale<=maxScale | number | NO | iOS / Android | yes |
minScale | min scale | number | NO | iOS / Android | yes |
maxScale | max scale | number | NO | iOS / Android | yes |
horizontal | draw page direction, if you want to listen the orientation change, you can use [react-native-orientation-locker] | bool | NO | iOS / Android | no |
showsHorizontalScrollIndicator | shows or hides the horizontal scroll bar indicator on iOS | bool | NO | iOS | no |
showsVerticalScrollIndicator | shows or hides the vertical scroll bar indicator on iOS | bool | NO | iOS | no |
fitWidth | if true fit the width of view, can not use fitWidth=true together with scale | bool | NO | iOS / Android | no |
fitPolicy | 0:fit width, 1:fit height, 2:fit both(default) | number | NO | iOS / Android | yes |
spacing | the breaker size between pages | number | NO | iOS / Android | yes |
password | pdf password, if password error, will call OnError() with message "Password required or incorrect password." | string | NO | iOS / Android | yes |
style | support normal view style, you can use this to set border/spacing color... | object | NO | iOS / Android | yes |
renderActivityIndicator | when loading show it as an indicator, you can use your component | (progress) => Component | NO | iOS / Android | no |
enableAntialiasing | improve rendering a little bit on low-res screens, but maybe course some problem on Android 4.4, so add a switch | bool | NO | iOS / Android | no |
enablePaging | only show one page in screen | bool | NO | iOS / Android | no |
enableRTL | scroll page as "page3, page2, page1" | bool | NO | iOS / Android | no |
enableAnnotationRendering | enable rendering annotation, notice:iOS only support initial setting,not support realtime changing | bool | NO | iOS | no |
enableDoubleTapZoom | Enable double tap to zoom gesture | bool | NO | iOS / Android | no |
trustAllCerts | Allow connections to servers with self-signed certification | bool | NO | iOS / Android | no |
singlePage | Only show first page, useful for thumbnail views | bool | NO | iOS / Android | no |
onLoadProgress | callback when loading, return loading progress (0-1) | function(percent) | NO | iOS / Android | yes |
onLoadComplete | callback when pdf load completed, return total page count, pdf local/cache path, {width,height} and table of contents | function(numberOfPages, path, {width, height}, tableContents) | NO | iOS / Android | partially |
onPageChanged | callback when page changed ,return current page and total page count | function(page,numberOfPages) | NO | iOS / Android | yes |
onError | callback when error happened | function(error) | NO | iOS / Android | yes |
onPageSingleTap | callback when page was single tapped | function(page) | NO | iOS / Android | no |
onScaleChanged | callback when scale page | function(scale) | NO | iOS / Android | yes |
onPressLink | callback when link tapped | function(uri) | NO | iOS / Android | yes |
Name | Description | Type | Required | Platform | HarmonyOS Support |
---|---|---|---|---|---|
uri | see the following for detail. | object | YES | iOS / Android | yes |
cache | use cache or not | bool | NO | iOS / Android | no |
cacheFileName | specific file name for cached pdf file | string | NO | iOS / Android | no |
expiration | cache file expired seconds (0 is not expired) | number | NO | iOS / Android | no |
method | request method when uri is a url | string | NO | iOS / Android | no |
headers | request headers when uri is a url | object | NO | iOS / Android | no |
Name | Description | Type | Required | Platform | HarmonyOS Support |
---|---|---|---|---|---|
{uri:"http://xxx/xxx.pdf"} | load pdf from a url | object | NO | iOS / Android | yes |
{require("./test.pdf")} | load pdf relate to js file (do not need add by xcode) | require(path) | NO | iOS | yes |
{uri:"bundle-assets://path/to/xxx.pdf"} | load pdf from assets, the file should be at Android/app/src/main/assets/path/to/xxx.pdf | object | NO | iOS | no |
{uri:"data:application/pdf;base64,JVBERi0xLjcKJc..."} | load pdf from base64 string | object | NO | iOS / Android | no |
{uri:"file:///absolute/path/to/xxx.pdf"} | load pdf from local file system | object | NO | iOS / Android | no |
{uri:"ms-appx:///xxx.pdf"} | load pdf bundled with UWP app | object | NO | Windows | no |
{uri:"content://com.example.blobs/xxxxxxxx-...?offset=0&size=xxx"} | load pdf from content URI | object | NO | iOS | no |
{uri:"blob:xxxxxxxx-...?offset=0&size=xxx"} | load pdf from blob URL | object | NO | Android | no |
Name | Description | Type | Required | Platform | HarmonyOS Support |
---|---|---|---|---|---|
setPage | Set the current page of the PDF component. pageNumber is a positive integer. If pageNumber > numberOfPages, current page is not changed. | function(pageNumber) | NO | iOS / Android | no |
本项目基于 The MIT License (MIT) ,请自由地享受和参与开源。
No vulnerabilities found.
No security vulnerabilities found.