Skip to content

Commit c7f9026

Browse files
committed
Add Nuxt.js example for PSPDFKit integration
- Created a new Nuxt.js example project demonstrating the integration of PSPDFKit for Web. - Added essential files including package.json, README.md, and configuration files for Nuxt.js setup. - Implemented a basic layout with a PDF viewer using PSPDFKit, including file upload functionality. - Included scripts for building and running the application, along with a post-install script to copy necessary PSPDFKit files. - Added sample assets including a PDF document and favicon for demonstration. - Introduced .gitignore to exclude unnecessary files and directories. - Provided detailed instructions in the README for getting started and running the example.
1 parent 573342d commit c7f9026

12 files changed

+9767
-0
lines changed

examples/nuxtjs/.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

examples/nuxtjs/.gitignore

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Node template
3+
# Logs
4+
/logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# Bower dependency directory (https://bower.io/)
29+
bower_components
30+
31+
# node-waf configuration
32+
.lock-wscript
33+
34+
# Compiled binary addons (https://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# TypeScript v1 declaration files
42+
typings/
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# dotenv environment variables file
60+
.env
61+
62+
# parcel-bundler cache (https://parceljs.org/)
63+
.cache
64+
65+
# next.js build output
66+
.next
67+
68+
# nuxt.js build output
69+
.nuxt
70+
71+
# Nuxt generate
72+
dist
73+
74+
# vuepress build output
75+
.vuepress/dist
76+
77+
# Serverless directories
78+
.serverless
79+
80+
# IDE / Editor
81+
.idea
82+
83+
# Service worker
84+
sw.*
85+
86+
# macOS
87+
.DS_Store
88+
89+
# Vim swap files
90+
*.swp
91+
92+
public/js/pspdfkit.js
93+
public/js/pspdfkit-lib/*.*
94+
95+
.output
96+
.tool-versions

examples/nuxtjs/README.md

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Nutrient Web SDK Example – Nuxt.js
2+
3+
This example shows how to integrate [Nutrient Web SDK](https://www.nutrient.io/web/) into a Nuxt.js app.
4+
5+
## Prerequisites
6+
7+
- [Node.js](http://nodejs.org/) version 18.12.0 or higher.
8+
- Nutrient Web SDK (get your free trial [here](https://www.nutrient.io/try/))
9+
10+
## Getting Started
11+
12+
Clone the repo:
13+
14+
```bash
15+
git clone https://github.com/PSPDFKit/pspdfkit-web-example-nuxtjs.git
16+
cd pspdfkit-web-example-nuxtjs
17+
```
18+
19+
Install the project dependencies with `npm`:
20+
21+
```bash
22+
npm install
23+
```
24+
25+
## Nuxt.js Component
26+
27+
The Nuxt.js component which implements the Nutrient Web SDK integration is included at `pages/index.vue` with the rest of the example.
28+
29+
In order to make the Nutrient Web SDK's library available for building, we have to copy the `pspdfkit-lib/` directory from `node_modules/pspdfkit/dist/` into the `public/js/` directory. This is done in the `package.json` `postinstall` script.
30+
31+
## Running the Example
32+
33+
We are ready to launch the app! 🎉
34+
35+
```bash
36+
# serve with hot reload at localhost:3000
37+
npm run dev
38+
39+
# build for production and launch server
40+
npm run build
41+
npm start
42+
43+
# generate static project
44+
npm run generate
45+
```
46+
47+
You can now open http://localhost:3000 in your browser and enjoy!
48+
49+
## Support, Issues and License Questions
50+
51+
PSPDFKit offers support for customers with an active SDK license via https://www.nutrient.io/support/request/
52+
53+
Are you [evaluating our SDK](https://www.nutrient.io/try/)? That's great, we're happy to help out! To make sure this is fast, please use a work email and have someone from your company fill out our sales form: https://www.nutrient.io/sales/
54+
55+
## License
56+
57+
This software is licensed under a [modified BSD license](LICENSE).
58+
59+
## Contributing
60+
61+
Please ensure
62+
[you have signed our CLA](https://www.nutrient.io/guides/web/current/miscellaneous/contributing/) so that we can
63+
accept your contributions.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<template>
2+
<div class="pdf-container"></div>
3+
</template>
4+
5+
<script>
6+
/**
7+
* Nutrient Web SDK example component.
8+
*/
9+
export default {
10+
name: "PSPDFKit",
11+
/**
12+
* The component receives `pdfFile` as a prop, which is type of `String` and is required.
13+
*/
14+
props: {
15+
pdfFile: {
16+
type: String,
17+
required: true,
18+
},
19+
},
20+
PSPDFKit: null,
21+
/**
22+
* We wait until the template has been rendered to load the document into the library.
23+
*/
24+
mounted() {
25+
this.loadPSPDFKit().then((instance) => {
26+
this.$emit("loaded", instance);
27+
});
28+
},
29+
/**
30+
* We watch for `pdfFile` prop changes and trigger unloading and loading when there's a new document to load.
31+
*/
32+
watch: {
33+
pdfFile(val) {
34+
if (val) {
35+
this.loadPSPDFKit();
36+
}
37+
},
38+
},
39+
/**
40+
* Our component has the `loadPSPDFKit` method. This unloads and cleans up the component and triggers document loading.
41+
*/
42+
methods: {
43+
async loadPSPDFKit() {
44+
import("pspdfkit")
45+
.then((PSPDFKit) => {
46+
this.PSPDFKit = PSPDFKit;
47+
PSPDFKit.unload(".pdf-container");
48+
return PSPDFKit.load({
49+
document: this.pdfFile,
50+
container: ".pdf-container",
51+
baseUrl: "http://localhost:3000/js/",
52+
});
53+
})
54+
.catch((error) => {
55+
console.error(error);
56+
});
57+
},
58+
},
59+
};
60+
</script>
61+
62+
<style scoped>
63+
.pdf-container {
64+
height: 100vh;
65+
}
66+
</style>

examples/nuxtjs/nuxt.config.js

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
export default defineNuxtConfig({
2+
// Global page headers: https://go.nuxtjs.dev/config-head
3+
head: {
4+
title: "pspdfkit-nuxt-example",
5+
htmlAttrs: {
6+
lang: "en",
7+
},
8+
meta: [
9+
{ charset: "utf-8" },
10+
{ name: "viewport", content: "width=device-width, initial-scale=1" },
11+
{ hid: "description", name: "description", content: "" },
12+
{ name: "format-detection", content: "telephone=no" },
13+
],
14+
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
15+
},
16+
17+
// Global CSS: https://go.nuxtjs.dev/config-css
18+
css: [],
19+
20+
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
21+
plugins: [],
22+
23+
// Auto import components: https://go.nuxtjs.dev/config-components
24+
components: true,
25+
26+
// Modules: https://go.nuxtjs.dev/config-modules
27+
modules: [],
28+
29+
// Build Configuration: https://go.nuxtjs.dev/config-build
30+
build: {},
31+
32+
// Target Configuration: https://go.nuxtjs.dev/config-target
33+
target: "public",
34+
});

0 commit comments

Comments
 (0)