4.0.3 • Published 2 years ago

react-native-pdf-enhanced v4.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
2 years ago

react-native-pdf

npm

A react native PDF view component (cross-platform support)

Feature

  • read a PDF from url/local file/asset and can cache it.
  • display horizontally or vertically
  • drag and zoom
  • double tap for zoom
  • support password protected pdf

Installation

We use rn-fetch-blob to handle file system access in this package, So you should install react-native-pdf and rn-fetch-blob

npm install rn-fetch-blob --save
npm install react-native-pdf --save

react-native link rn-fetch-blob
react-native link react-native-pdf

FAQ

Q1. After installation and running, I can not see the pdf file.
A1: maybe you forgot to excute react-native link or it does not run correctly. You can add it manually. For detail you can see the issue #24 and #2

Q2. When running, it shows 'Pdf' has no propType for native prop RCTPdf.acessibilityLabel of native type 'String'
A2. Your react-native version is too old, please upgrade it to 0.47.0+ see also #39

Q3. When I run the example app I get a white screen / the loading bar isn't progressing on IOS.
A3. Check your uri, if you hit a pdf that is hosted on a http you will need to add an exception for the server hosting the pdf in the ios info.plist. Here is an example :

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSExceptionDomains</key>
  <dict>
    <key>yourserver.com</key>
    <dict>
      <!--Include to allow subdomains-->
      <key>NSIncludesSubdomains</key>
      <true/>
      <!--Include to allow HTTP requests-->
      <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
      <true/>
      <!--Include to specify minimum TLS version-->
      <key>NSTemporaryExceptionMinimumTLSVersion</key>
      <string>TLSv1.1</string>
    </dict>
  </dict>
</dict>

Q4. why doesn't it work with react native expo?.
A4. Expo does not support native module. you can read more expo caveats here

ChangeLog

v4.0.0 (break change) 1. replace dependence lib react-native-fetch-blob with rn-fetch-blob if you upgrade from an old version, you should

react-native unlink react-native-fetch-blob
npm uninstall react-native-fetch-blob

npm install rn-fetch-blob --save
react-native link rn-fetch-blob

v3.0.17 1. update android build tool to v26.0.3 2. update AndroidPdfViewer to v3.1.0.beta1 3. add {width,height} to onLoadComplete

v3.0.16 1. onPageChanged not fired in Landscape (IOS) 2. draw the page with diffrent size to center 3. support the page with rotation

v3.0.15 1. fix iPad scale offset problem 2. add code protection to avoid crashes

v3.0.14 1. fix in iPad can not zoom problem(offset still has problem, but zoom works)

v3.0.13 1. fix in iPad layout not center problem

v3.0.12 1. fix source.expiration check

v3.0.11 1. improve iOS zoom, can zoom from pinch center 2. fix call setState on an unmounted component

v3.0.10 1. fix source.expiration check #163

v3.0.9 1. use CATiledLayer to improve iOS render performance

v3.0.8 1. use await to unlink file 2. fix podspec 3. do not count a scrolling gesture as a tap

v3.0.6 1. add cache file expiration 2. enhanced file download stability

v3.0.5 1. OnError return Error() object 2. fix cache overwrite error 3. add Android content:// support 4. fix type error 5. refactor view.propTypes to ViewPropTypes.

v3.0.4

  1. fix 'virtualizedCell.cellKey' warning #125
  2. fix android crashed because of missing props #127
  3. use pure component to render pdf pages #129
  4. add requiresMainQueueSetup to cure RN v0.52 warning #130

v3.0.3

  1. when cache failed, can re-load at next time

v3.0.2

  1. add activityIndicatorProps to support ActivityIndicator customize
  2. fix not trigger onPageChanged() at last screen when screen has more then one pages
  3. fix set initial page and scale no action error

v3.0.1 deprecated

v3.0.0

  1. rewrite all iOS codes, improve scroll performance/Smoothness, fix scale/onPageChanged...
  2. add onPageSigleTap(), onScaleChanged()
  3. update android dependent lib AndroidPdfViewer to 3.0.0.alpha.5
  4. android support link in pdf
  5. delete cache file when error happened

Known issues
1. iOS zooming can not scroll to pinch center

[more]

Example

/**
 * Copyright (c) 2017-present, Wonday (@wonday.org)
 * All rights reserved.
 *
 * This source code is licensed under the MIT-style license found in the
 * LICENSE file in the root directory of this source tree.
 */

import React from 'react';
import { StyleSheet, Dimensions, View } from 'react-native';

import Pdf from 'react-native-pdf';

export default class PDFExample extends React.Component {
    render() {
        const source = {uri:'http://samples.leanpub.com/thereactnativebook-sample.pdf',cache:true};
        //const source = require('./test.pdf');  // ios only
        //const source = {uri:'bundle-assets://test.pdf'};

        //const source = {uri:'file:///sdcard/test.pdf'};
        //const source = {uri:"data:application/pdf;base64,..."};

        return (
            <View style={styles.container}>
                <Pdf
                    source={source}
                    onLoadComplete={(numberOfPages,filePath)=>{
                        console.log(`number of pages: ${numberOfPages}`);
                    }}
                    onPageChanged={(page,numberOfPages)=>{
                        console.log(`current page: ${page}`);
                    }}
                    onError={(error)=>{
                        console.log(error);
                    }}
                    style={styles.pdf}/>
            </View>
        )
  }
}

const styles = StyleSheet.create({
    container: {
        flex: 1,
        justifyContent: 'flex-start',
        alignItems: 'center',
        marginTop: 25,
    },
    pdf: {
        flex:1,
        width:Dimensions.get('window').width,
    }
});

Configuration

PropertyTypeDefaultDescriptioniOSAndroidFirstRelease
sourceobjectnot nullPDF source like {uri:xxx, cache:false}. see the following for detail.<3.0
pagenumber1initial page index<3.0
scalenumber1.0zoom scale, 1<=scale<=3<3.0
horizontalboolfalsedraw page direction, if you want to listen the orientation change, you can use [react-native-orientation-locker]<3.0
fitWidthboolfalseif true fit the width of view, can not use fitWidth=true together with scale<3.0, abandoned from 3.0
fitPolicynumber20:fit width, 1:fit height, 2:fit both(default)3.0
spacingnumber10the breaker size between pages<3.0
passwordstring""pdf password, if password error, will call OnError() with message "Password required or incorrect password."<3.0
styleobject{backgroundColor:"#eee"}support normal view style, you can use this to set border/spacing color...<3.0
activityIndicatorComponentwhen loading show it as an indicator, you can use your component<3.0
activityIndicatorPropsobject{color:'#009900',progressTintColor:'#009900'}activityIndicator props3.1
enableAntialiasingbooltrueimprove rendering a little bit on low-res screens, but maybe course some problem on Android 4.4, so add a switch<3.0
onLoadProgressfunction(percent)nullcallback when loading, return loading progress (0-1)<3.0
onLoadCompletefunction(numberOfPages, path, {width, height})nullcallback when pdf load completed, return total page count and pdf local/cache path<3.0
onPageChangedfunction(page,numberOfPages)nullcallback when page changed ,return current page and total page count<3.0
onErrorfunction(error)nullcallback when error happened<3.0
onPageSingleTapfunction(page)nullcallback when page was single tapped3.0
onScaleChangedfunction(scale)nullcallback when scale page3.0

parameters of source

parameterDescriptiondefaultiOSAndroid
uripdf source, see the forllowing for detail.required
cacheuse cache or notfalse
expirationcache file expired seconds (0 is not expired)0
methodrequest method when uri is a url"GET"
headersrequest headers when uri is a url{}

types of source.uri

UsageDescriptioniOSAndroid
{uri:"http://xxx/xxx.pdf"}load pdf from a url
{require("./test.pdf")}load pdf relate to js file (do not need add by xcode)
{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
{uri:"bundle-assets://xxx.pdf"}load pdf from assets, you must add pdf to project by xcode. this does not support folder.
{uri:"base64data"}load pdf from base64 string
{uri:"file:///absolute/path/to/xxx.pdf"}load pdf from local file system