This is the data, based upon the metadata I need to use to highlight the text:
const data = {
text: "The requirements include...",
sourceDocuments: [
{
pageContent:"Functionality requirements, backend functionality\nUser data information\nAbility to collect and sort...",
metadata: { "loc.lines.from": 161, "loc.lines.to": 173 }
},
],
};
This is my react code to open the pdf:
import { Worker, Viewer } from "@react-pdf-viewer/core";
import { defaultLayoutPlugin } from "@react-pdf-viewer/default-layout";
import "@react-pdf-viewer/core/lib/styles/index.css";
import "@react-pdf-viewer/default-layout/lib/styles/index.css";
export default function App() {
const data = {
text: "The requirements include...",
sourceDocuments: [
{
pageContent:"Functionality requirements, backend functionality\nUser data information\nAbility to collect and sort...",
metadata: { "loc.lines.from": 161, "loc.lines.to": 173 }
},
],
};
const defaultLayoutPluginInstance = defaultLayoutPlugin();
return (
<Worker workerUrl="https://unpkg.com/[email protected]/build/pdf.worker.min.js">
<div style={{ height: "720px" }}>
<Viewer fileUrl={"Brief.pdf"} plugins={[defaultLayoutPluginInstance]} />
</div>
</Worker>
);
}
Have you tried using
@react-pdf-viewer/highlight
?Documentation here
I haven't tested this but It goes something like:
This is based on the example shown here. Kindly replace the hardcoded data with the ones that you have on your metadata.