How to View, Edit, Annotate and Redact Salesforce Record Attachment Files in a Lightning Web Component
This repository is a ready-to-deploy Salesforce implementation of Apryse SDK's WebViewer. This LWC Component will have the ability to enable client-side viewing, editing, annotation and redaction and much more in your Salesforce environment using Salesforce files or external files.
Required tools: VS Code + Salesforce Extension
- Clone the repository to your local and open it in VS Code with the Salesforce Extension installed.
- Authenticate your environment (you can follow this example)
- Right-click on the
force-app
folder and selectSFDX: Deploy Source To Org
or usesf project deploy start
in your terminal - Once deployed, navigate to a Lightning page, click Setup >
Edit Page
and drag and drop thepdftronWebviewerContainer
into the desired location of your Lightning page
Please note that maximum deployment size is capped to ~39MB - in some cases the WebViewer worker files stored in /staticresources/
exceed that file size limit. If you are facing this error, please split up your deployments in multiple parts to adhere to this size limit.
Your /staticresources/
exceeds the 39MB limit - please deploy worker files one by one.
Your /staticresources/
do not exceed the 39MB limit, but your total project is above the limit - you can deploy staticresources first, then deploy the other metadata types like so:
-
Deploy only StaticResource type
sf project deploy start -m StaticResource
-
Deploy other Metadata types
sf project deploy start -m AuraDefinitionBundle ApexClass LightningComponentBundle LightningMessageChannel
This repository serves as the code-along sample for this guide.
The Apryse SDK WebViewer integrates with Salesforce by using WebViewer's source files in Salesforce's /staticresources/
- we leverage LWC to contain WebViewer UI inside of an iframe. We can use your browser's postMessage API and leverage the main LWC component to communicate with other LWC components and use Apex to retrieve files, user information and other data from Salesforce to build a fully custom document workflow.
You can find WebViewer's Salesforce-specific documentation here. For technical inquiries reach out to [email protected] - for information on licensing you can contact [email protected]