-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vue: add composition api example #4
Conversation
This adds a new vue example based on the new composition API.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I presume that this is mostly auto-generated code, from Vite, right?
Yes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works great and fast! I'd suggest updating the package used here, I've left some comments pointing to the places where changes need to be done. You can also rename the PSPDFKit
global to Nutrient
while at it, what do you think?
💯
"type-check": "vue-tsc --build" | ||
}, | ||
"dependencies": { | ||
"pspdfkit": "^2024.8.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use the new package instead, please?:
"pspdfkit": "^2024.8.1", | |
"@nutrient-sdk/viewer": "^1.0.0", |
let PSPDFKit: typeof import("pspdfkit").default | undefined; | ||
|
||
onMounted(async () => { | ||
PSPDFKit = (await import("pspdfkit")).default; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PSPDFKit = (await import("pspdfkit")).default; | |
PSPDFKit = (await import("@nutrient-sdk/viewer")).default; |
import { onMounted, onUnmounted, useTemplateRef } from "vue"; | ||
|
||
const containerRef = useTemplateRef("container"); | ||
let PSPDFKit: typeof import("pspdfkit").default | undefined; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let PSPDFKit: typeof import("pspdfkit").default | undefined; | |
let PSPDFKit: typeof import("@nutrient-sdk/viewer").default | undefined; |
copy({ | ||
targets: [ | ||
{ | ||
src: "node_modules/pspdfkit/dist/pspdfkit-lib", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src: "node_modules/pspdfkit/dist/pspdfkit-lib", | |
src: "node_modules/@nutrient-sdk/viewer/dist/nutrient-viewer-lib", |
*.tsbuildinfo | ||
|
||
# Web SDK static files | ||
public/pspdfkit-lib/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public/pspdfkit-lib/ | |
public/nutrient-viewer-lib/ |
Oops, thanks for the review @miguelcalderon I merged this before I saw your review but I'm working to nutrify all three migrated examples in a separate PR |
This adds a new vue example based on the new composition API. Added this as a new directory since previous example is written in the old options API and likely used as reference in various places.