|
| 1 | +# PSPDFKit for Salesforce Integration |
| 2 | + |
| 3 | +## Integrate into a New Salesforce Project as a Lightning Web Component |
| 4 | + |
| 5 | +PSPDFKit for Salesforce enables you to open PDF, JPG, PNG, and TIFF files inside Salesforce. This unlocks the full functionality of PSPDFKit in Salesforce, including PDF generation, redaction, and signatures. |
| 6 | + |
| 7 | +This README explains how to integrate PSPDFKit into a new Salesforce project. The integration works as a [Lightning web component (LWC)][lwc] that you can add to any Salesforce organization. |
| 8 | + |
| 9 | +For more information on integrating PSPDFKit into an existing Salesforce project, see the [PSPDFKit for Salesforce documentation][salesforce docs]. |
| 10 | + |
| 11 | +PSPDFKit for Salesforce shares the same APIs as Nutrient Web SDK Standalone. For more information on customizing your Salesforce application, see the [Nutrient Web SDK Standalone documentation][web docs]. |
| 12 | + |
| 13 | +## Requirements |
| 14 | + |
| 15 | +Before continuing, perform all of the following actions: |
| 16 | + |
| 17 | +- Set up a [Salesforce Developer Edition account][developer]. |
| 18 | +- Install the [Salesforce CLI][]. |
| 19 | +- Install the [latest stable version of Node.js][node.js]. |
| 20 | +- Install a package manager compatible with [npm][about-npm]. This README contains usage examples for the [npm client][npm-client], which is installed with Node.js by default. |
| 21 | + |
| 22 | +## Deploying the Package |
| 23 | + |
| 24 | +To deploy the PSPDFKit package to your Salesforce organization, follow these steps. |
| 25 | + |
| 26 | +1. Download the [PSPDFKit for Salesforce project][zip] from GitHub, and then unpack the ZIP file. |
| 27 | + |
| 28 | + Alternatively, run the following terminal command to clone the [PSPDFKit for Salesforce repository][repo] from GitHub: |
| 29 | + |
| 30 | + ```bash |
| 31 | + git clone https://github.com/PSPDFKit/salesforce.git |
| 32 | + ``` |
| 33 | + |
| 34 | +2. In the terminal, go to the PSPDFKit for Salesforce project folder and run the following command to install the PSPDFKit npm module. |
| 35 | + |
| 36 | + Use the following code for npm: |
| 37 | + |
| 38 | + ```npm |
| 39 | + npm install |
| 40 | + ``` |
| 41 | + |
| 42 | + Use the following code for Yarn: |
| 43 | + |
| 44 | + ```yarn |
| 45 | + yarn install |
| 46 | + ``` |
| 47 | + |
| 48 | +3. The PSPDFKit for Salesforce integration example now makes use of the PSPDFKit version available from our CDN at https://cdn.cloud.www.nutrient.io/pspdfkit-web, which means it's no longer limited by Salesforce's upload assets size 5MB limit. |
| 49 | + |
| 50 | +In order to set the PSPDFKit version you want to use, open `./force-app/main/default/pages/PSPDFKit_InitPSPDFKit.page` and edit the line 7 to reflect the PSPDFKit version. For example, in order to use version 2024.4.0, you should change the URL pointing to the CDN to: |
| 51 | + |
| 52 | + ```html |
| 53 | + <script src="https://cdn.cloud.www.nutrient.io/[email protected]/pspdfkit.js" type="text/javascript"></script> |
| 54 | + ``` |
| 55 | + |
| 56 | + You can find the latest version of Nutrient Web SDK in the [PSPDFKit changelog](https://www.nutrient.io/changelog/web/). |
| 57 | + |
| 58 | +4. Run the following command in the terminal to start the Salesforce authentication process: |
| 59 | + |
| 60 | + ```bash |
| 61 | + sfdx force:auth:web:login --setalias mySalesforceOrg --instanceurl https://login.salesforce.com --setdefaultusername |
| 62 | + ``` |
| 63 | + |
| 64 | +5. In the browser window that opens, log in to your Salesforce organization and authorize the Salesforce CLI. |
| 65 | + |
| 66 | +6. In the terminal, run the following command from the PSPDFKit for Salesforce project’s root folder: |
| 67 | + |
| 68 | + ```bash |
| 69 | + sfdx force:source:deploy -x manifest/package.xml |
| 70 | + ``` |
| 71 | + |
| 72 | +## Enabling Users to Use PSPDFKit |
| 73 | + |
| 74 | +To enable users of your Salesforce organization to use PSPDFKit, follow these steps. |
| 75 | + |
| 76 | +1. In Salesforce, go to **Users** > **Permission Sets**. |
| 77 | + |
| 78 | +2. Find **PSPDFKit Admin Access** in the list and click it. |
| 79 | + |
| 80 | +3. Click **Manage Assignments**. |
| 81 | + |
| 82 | +4. Click **Add Assignment**. |
| 83 | + |
| 84 | +5. Select the users you want to authorize to use PSPDFKit. |
| 85 | + |
| 86 | +6. Click **Next**, and then click **Assign**. |
| 87 | + |
| 88 | +## Changing the Security Settings |
| 89 | + |
| 90 | +PSPDFKit for Salesforce requires Lightning Locker to protect Lightning web components, but Salesforce uses Lightning Web Security by default. To change the default security settings, follow these steps. |
| 91 | + |
| 92 | +1. In Salesforce, go to **Security** > **Session Settings**. |
| 93 | + |
| 94 | +2. Deselect **Use Lightning Web Security for Lightning web components**. |
| 95 | + |
| 96 | +3. Scroll down and click **Save**. |
| 97 | + |
| 98 | +## Using the PSPDFKit for Salesforce Integration |
| 99 | + |
| 100 | +To use PSPDFKit in your Salesforce organization, follow these steps. |
| 101 | + |
| 102 | +1. Ensure you’re logged in as a user authorized to use PSPDFKit. |
| 103 | + |
| 104 | +2. In the top-right corner, open the App Launcher. |
| 105 | + |
| 106 | +3. Search for and select **PSPDFKit**. |
| 107 | + |
| 108 | +4. Click **browse** to upload local PDF files, or open a file from Salesforce. |
| 109 | + |
| 110 | +## Next Steps |
| 111 | + |
| 112 | +- [Open documents from Salesforce][] |
| 113 | +- [Save files back to Salesforce][] |
| 114 | + |
| 115 | +[web docs]: https://www.nutrient.io/guides/web/ |
| 116 | +[salesforce docs]: https://www.nutrient.io/getting-started/web-integrations/?product=salesforce&project=existing-project |
| 117 | +[lwc]: https://developer.salesforce.com/docs/component-library/documentation/en/lwc |
| 118 | +[developer]: https://developer.salesforce.com/signup |
| 119 | +[salesforce cli]: https://developer.salesforce.com/tools/sfdxcli |
| 120 | +[node.js]: https://nodejs.org/en/download/ |
| 121 | +[about-npm]: https://docs.npmjs.com/about-npm |
| 122 | +[npm-client]: https://docs.npmjs.com/cli/v7/commands/npm |
| 123 | +[open documents from salesforce]: https://www.nutrient.io/guides/web/open-a-document/from-salesforce/ |
| 124 | +[save files back to salesforce]: https://www.nutrient.io/guides/web/save-a-document/to-salesforce/ |
| 125 | +[zip]: https://github.com/PSPDFKit/salesforce/archive/refs/heads/master.zip |
| 126 | +[repo]: https://github.com/PSPDFKit/salesforce/ |
0 commit comments