i'm trying to use pdftron from apryse docx editor i can use the docx editor normally but i keep getting error like the image bellow
these are my code
wordeditor.tsx
"use client";
import { useEffect, useRef } from "react";
import WebViewer from "@pdftron/webviewer";
// const WebViewer = dynamic((): any => import('@pdftron/webviewer'), {ssr: false});
const licenseKey =
"";
const WordEditor = () => {
const viewerDiv = useRef<any>(null);
useEffect(() => {
WebViewer(
{
path: "/webviewer/lib",
licenseKey: licenseKey,
initialDoc:
"https://pdftron.s3.amazonaws.com/downloads/pl/legal-contract.docx",
enableOfficeEditing: true,
},
viewerDiv.current
).then((instance) => {
const { documentViewer } = instance.Core;
// you can now call WebViewer APIs here...
});
}, []);
return (
<div className="webviewer" ref={viewerDiv} style={{ height: "100%" }}></div>
);
};
export default WordEditor;
and then insert it as a component in my page.tsx
import dynamic from 'next/dynamic';
const WebViewer = dynamic((): any => import('./wordeditor'), {ssr: false});
const WordEditor = () => {
return (
<div className='w-full h-full'>
<WebViewer/>
</div>
);
}
export default WordEditor;
can anyone help me with this error? i have tried search in other questions but i still cannot fix this error especially in react typescript next js
as for package i use
- "next": "13.5.4"
- "react": "^18.2.0"
- "@pdftron/webviewer": "^10.5.1"
thanks before.
update. i solved it by change WebViewer promise to Asynchronous and it work here's the code to change it to Asynchronous :
Cheers!