We will walk through the steps to build a document analysis web application using Nuxt 3 and Azure Document Intelligence. This application allows users to -
Features will include -
- 🔍 Create/pass a template in HTML and placeholders for values
- 🕶️ Real-time document analysis status
- 💾 Download merged content as PDF
Here’s a quick demo.
While the demo showcases invoice generation, the same program can be extended to any document type - filled application forms, documents, etc.
Technology stack -
- NuxtJS
- Tailwind CSS
- PDFJS
- CKEditor
Why Client-Side PDF Generation?
Generating PDFs on the client-side offers several benefits:
- Performance: Offloading PDF generation to the client’s device reduces server load and leads to faster response times.
- User Experience: Users can preview changes in real-time, adjust their inputs, and generate PDFs without a trip to the server.
- Cost-Effective: Avoid additional server infrastructure by leveraging modern browsers and their capabilities.
- Flexibility: Easily integrate rich text editing and custom templates to create personalized documents.
Who is this post for?
- You are trying to roll-out a PDF generator for invoices or filled applications
- You are using an external service to generate PDFs
- You are not satisfied with server-side PDF generators
Setting Up the Project
Before we start, make sure you have Node.js 18.x or later installed in your computer.
Create a blank Nuxt app.
|
|
A key component of our PDF generator is a rich text editor to create templates. We will use CKEditor to achieve just that. We will also use a JSON editor to enable editing JSON data.
|
|
We will use pdfjs to preview and generate PDF, and DomPurify to make sure we are rendering things safer. Also, install types while at it.
|
|
Add styling and icons.
|
|
Develop the app
Rich Text Editor
Rich text editor is one of the main components that enables users to edit templates.
You will not need the rich text editor if you don’t plan to edit templates within the app (the template is plain HTML anyway.)
|
|
JSON Editor
Create the JSON editor that is used to edit JSON data.
|
|
Create PDF Viewer
PDF viewer shows the PDF after merging data in template.
|
|
Include this in a DocumentPreview.vue
component that can toggle between PDF viewer and a rich text viewer - if needed, of course.
Layout and Page
Update layout -
|
|
… and the page.
|
|
Run the app!
|
|
This should populate some default template and data, and show you a nice preview of the merged content.
Conclusion
Generating PDF on client is not hard and keeps your server load low.
While generating PDFs client-side can certainly help in most use cases (especially for enterprise customers), it may not be a pleasant experience for mobile users. Also, features like emailing PDF, supporting non-PDF formats, etc. are hard to achieve.
See complete code on GitHub.