Skip to content
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

Merged
merged 4 commits into from
Feb 11, 2025
Merged

vue: add composition api example #4

merged 4 commits into from
Feb 11, 2025

Conversation

divyanshu013
Copy link
Member

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.

This adds a new vue example based on the new composition API.
@divyanshu013 divyanshu013 requested a review from a team February 3, 2025 14:00
@divyanshu013 divyanshu013 self-assigned this Feb 3, 2025
Copy link

@iperzic iperzic left a 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?

@divyanshu013
Copy link
Member Author

Yes App.vue is the main module that can be reviewed

@divyanshu013 divyanshu013 merged commit c11673d into main Feb 11, 2025
3 checks passed
@divyanshu013 divyanshu013 deleted the div/vue branch February 11, 2025 12:29
Copy link
Contributor

@miguelcalderon miguelcalderon left a 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",
Copy link
Contributor

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?:

Suggested change
"pspdfkit": "^2024.8.1",
"@nutrient-sdk/viewer": "^1.0.0",

let PSPDFKit: typeof import("pspdfkit").default | undefined;

onMounted(async () => {
PSPDFKit = (await import("pspdfkit")).default;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public/pspdfkit-lib/
public/nutrient-viewer-lib/

@divyanshu013
Copy link
Member Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants