npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-signply-sdk

v3.3.2

Published

test

Downloads

92

Readme

react-native-signply-sdk

Sign PDF documents easily with React Native version > 0.68.0

Installation

npm install react-native-signply-sdk

Usage

import { NativeModules } from 'react-native';
import { SignplySDKParams } from 'react-native-signply-sdk/src/SignplySDKParams';

const SignplySdk = NativeModules.SignplySdk;
const licenseB64 = "LS0tL...";
const signplySDKParams = new SignplySDKParams();
signplySDKParams.licenseB64 = licenseB64;

// ...

    SignplySdk.launchSignply(JSON.stringify(signplySDKParams),
    (documentSignedPath) => {
      console.log(documentSignedPath);
      alert(documentSignedPath);
    },
    (error) => {
      alert(error);
    })

License

The SDK needs a license to work, which in this case is included in the example project (example/src/App.js), is valid until the end of the year. For production you will need to ask for a license by packageName. ** This license is only valid for testing and should never be used in production.**

Considerations Android

It is necessary to add maven jitpack url in android/build.gradle file inside allprojects repositories like this

allprojects {
    repositories {
        google()
        mavenCentral()
        maven {
            url "https://jitpack.io"
        }
    }
}

Add this on android build.gradle app module to avoid shared.so duplications.

android {

// ...
    packagingOptions {
      pickFirst 'lib/x86/libc++_shared.so'
      pickFirst 'lib/x86_64/libc++_shared.so'
      pickFirst 'lib/armeabi-v7a/libc++_shared.so'
      pickFirst 'lib/arm64-v8a/libc++_shared.so'
    }
    // ...
}

If you have any trouble with Java version use Java 11 in gradle

compileOptions {
  sourceCompatibility JavaVersion.VERSION_11
  targetCompatibility JavaVersion.VERSION_11
}

Sync files with gradle.

Considerations iOS

IMPORTANT Starting with v3.2.0 Unzip folder in node_modules/react-native-signply-sdk/ios/SignplySB.xcframework.zip After that, go to ios folder on root project and make a pod install

pod install

Data Model

SignplySDKParams

  • licenseB64 (String) : Base 64 SIGNply license
  • fileProperties (SignplySDKFileProperties): Contains file information
  • commonProperties (SignplySDKCommonProperties): Contains common information
  • widget (SignplySDKWidget): Configurable signature widget
  • tsp (SignplySDKTSP): TSP configurable
  • extra (SignplySDKExtra): Extra functionality in configurable SDK
  • certificate (SignplySDKCertificate): Configurable signing certificate

SignplySDKFileProperties

  • documentPath (String): This value needs to be a name of the pdf saved in applications folder (example: document.pdf)
  • signedName (String): Signed document name. If not specified, by default it gets the value "signply_document.pdf". If the name already exists, a (1), (2), (3) are concatenated and so on.
  • isShareable (Bool): If true, it shows a document share button
  • password (String): Document password
  • author (String): Signature author
  • reason (String): Signature reason
  • contact (String): Contact of the author or entity of the signature
  • location (String): Location of the author or entity of the signature

SignplySDKCommonProperties

  • title: (String): Toolbar title, if null, the name of the document is displayed
  • requestLocation (Bool): If true, ask the user for the location at the time of signing
  • renderDefaultIndexPage (Int): Indicates the page that you want to render directly. Default 0
  • reference (String): External reference for grouping purposes. Default empty

SIGNplySDKWidget

  • widgetType (SignplySDKWidgetType): Type of widget positioning. By default it uses the manual type.
  • widgetFloatText (String): Indicates the string to search within the document where the widget is embedded. Returns the first result obtained. This parameter is case sensitive.
  • widgetFieldFieldName (String): name of the pre-existing field in which the widget is embedded.
  • widgetManualRatio (Float): Widget width to height ratio for manual positioning. By default 2.5. The value must be between 1 and 4. If it is less than 1, it takes value 1 and if it is greater than 4 it takes value 4.
  • widgetFixedPage (Int): Page number in which the widget is embedded. Starts at 1. If the value is 0, sign on all pages If the value is greater than the total number of pages, it is signed on the last page
  • widgetFixedX (Int): Indicates the horizontal offset of the widget position from the bottom left corner of a document page.
  • widgetFixedY (Int): Indicates the vertical offset of the widget position from the bottom left corner of a document page.
  • widgetFloatGapY (Int): Indicates the integer number of offset units (positive or negative) vertically from the bottom to the text
  • widgetFloatGapX (Int): Indicates the integer number of offset units (positive or negative) horizontally from the bottom to the text
  • widgetCustomText ([SignplySDKWidgetCustomText]): Multiline array with the texts to embed in the signature widget
  • widgetWidth (Int): Width of the widget. Minimum value 50. The default value is 150.
  • widgetHeight (Int): Height of the widget. Minimum value 50. The default value 75.
  • signOnAllPages (Boolean): Allows to sign on all pages.

SignplySDKTSP

  • tspActivate (Bool): Time stamp input activation
  • tspURL (String): TSP url
  • tspUser (String): TSP user
  • tspPassword (String): TSP password

SignplySDKExtra

  • autoOpen (Boolean): It allows to display the signature widget automatically when opening the document. (viewLastPage must be false).
  • viewLastPage (Bool): If true, the user is required to view up to the last page in order to sign.
  • signatureColorHex (String): Hexadecimal signature pencil color. By default ("# 000000") black.
  • signatureThickness (Int): Signature pencil thickness. By default 10. It must be between 1 and 50.
  • showReject (Bool): If true, show a reject document button

SignplySDKCertificate

  • signCertP12B64 (String): Base64 signing certificate.
  • signCertPassword (String): Signing certificate password
  • encKeyB64 (String): Public key for encryption of biometric data in base64
  • ltv (Boolean): It allows to make a long signature. If no signing certificate is specified, an internal one is used

SIGNplySDKWidgetType

  • Manual: Manual mode positioning in which the user can move the signature freely
  • Field: Positioning looking for a specific signature field.
  • Fixed: Fixed positioning in the document, it is passed a page number and a relative position within the document. Requires valid widgetFixedPage, widgetWidth, widgetHeight, widgetFixedX and widgetFixedY.
  • Float: Floating positioning in the document based on a text string search. Requires valid widgetFloatText, widgetWidth, widgetHeight, widgetGapX and widgetGapY.

SignplySDKWidgetCustomText

  • fontSize (Int): Text size
  • text (String): Text string

Made with create-react-native-library