@annotorious/react-manifold 0.8.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/annotorious-react-manifold.es10.js +8 -599
- package/dist/annotorious-react-manifold.es10.js.map +1 -1
- package/dist/annotorious-react-manifold.es11.js +8 -2
- package/dist/annotorious-react-manifold.es11.js.map +1 -1
- package/dist/annotorious-react-manifold.es12.js +16 -2
- package/dist/annotorious-react-manifold.es12.js.map +1 -1
- package/dist/annotorious-react-manifold.es13.js +5 -0
- package/dist/annotorious-react-manifold.es13.js.map +1 -0
- package/dist/annotorious-react-manifold.es14.js +33 -0
- package/dist/annotorious-react-manifold.es14.js.map +1 -0
- package/dist/annotorious-react-manifold.es15.js +602 -0
- package/dist/annotorious-react-manifold.es15.js.map +1 -0
- package/dist/annotorious-react-manifold.es16.js +5 -0
- package/dist/annotorious-react-manifold.es16.js.map +1 -0
- package/dist/annotorious-react-manifold.es17.js +5 -0
- package/dist/annotorious-react-manifold.es17.js.map +1 -0
- package/dist/annotorious-react-manifold.es18.js +7 -0
- package/dist/annotorious-react-manifold.es18.js.map +1 -0
- package/dist/annotorious-react-manifold.es19.js +9 -0
- package/dist/annotorious-react-manifold.es19.js.map +1 -0
- package/dist/annotorious-react-manifold.es2.js +7 -6
- package/dist/annotorious-react-manifold.es2.js.map +1 -1
- package/dist/annotorious-react-manifold.es20.js +5 -0
- package/dist/annotorious-react-manifold.es20.js.map +1 -0
- package/dist/annotorious-react-manifold.es21.js +33 -0
- package/dist/annotorious-react-manifold.es21.js.map +1 -0
- package/dist/annotorious-react-manifold.es22.js +602 -0
- package/dist/annotorious-react-manifold.es22.js.map +1 -0
- package/dist/annotorious-react-manifold.es23.js +5 -0
- package/dist/annotorious-react-manifold.es23.js.map +1 -0
- package/dist/annotorious-react-manifold.es24.js +5 -0
- package/dist/annotorious-react-manifold.es24.js.map +1 -0
- package/dist/annotorious-react-manifold.es4.js +4 -3
- package/dist/annotorious-react-manifold.es4.js.map +1 -1
- package/dist/annotorious-react-manifold.es5.js +16 -14
- package/dist/annotorious-react-manifold.es5.js.map +1 -1
- package/dist/annotorious-react-manifold.es7.js +3 -3
- package/dist/annotorious-react-manifold.es8.js +46 -2
- package/dist/annotorious-react-manifold.es8.js.map +1 -1
- package/dist/annotorious-react-manifold.es9.js +1116 -29
- package/dist/annotorious-react-manifold.es9.js.map +1 -1
- package/dist/synchronizeInstances.d.ts +1 -1
- package/dist/synchronizeInstances.d.ts.map +1 -1
- package/package.json +7 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"annotorious-react-manifold.es23.js","sources":["../node_modules/@annotorious/react/dist/annotorious-react.es21.js"],"sourcesContent":["var r = {};\nexport {\n r as __exports\n};\n//# sourceMappingURL=annotorious-react.es21.js.map\n"],"names":[],"mappings":"AAAG,IAAC,IAAI,CAAA;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"annotorious-react-manifold.es24.js","sources":["../node_modules/@annotorious/react/dist/annotorious-react.es22.js"],"sourcesContent":["var e = {};\nexport {\n e as __exports\n};\n//# sourceMappingURL=annotorious-react.es22.js.map\n"],"names":[],"mappings":"AAAG,IAAC,IAAI,CAAA;","x_google_ignoreList":[0]}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { Origin as c } from "
|
|
2
|
-
|
|
1
|
+
import { Origin as c } from "./annotorious-react-manifold.es10.js";
|
|
2
|
+
import "./annotorious-react-manifold.es9.js";
|
|
3
|
+
const C = (r) => {
|
|
3
4
|
const e = (t) => Array.from(r.entries()).reduce((o, [n, s]) => {
|
|
4
5
|
if (o)
|
|
5
6
|
return o;
|
|
@@ -47,6 +48,6 @@ const B = (r) => {
|
|
|
47
48
|
};
|
|
48
49
|
};
|
|
49
50
|
export {
|
|
50
|
-
|
|
51
|
+
C as createManifoldInstance
|
|
51
52
|
};
|
|
52
53
|
//# sourceMappingURL=annotorious-react-manifold.es4.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotorious-react-manifold.es4.js","sources":["../src/AnnotoriousManifoldInstance.ts"],"sourcesContent":["import { Origin } from '@annotorious/react';\nimport type {\n Annotation, \n AnnotationBody, \n Annotator\n} from '@annotorious/react';\n\nexport interface AnnotoriousManifoldInstance<I extends Annotation = Annotation, E extends { id: string } = Annotation> {\n\n annotators: Annotator<I, E>[];\n\n sources: string[];\n\n addBody(body: AnnotationBody, origin?: Origin): void;\n\n clear(origin: Origin): void;\n\n deleteAnnotation(id: string, origin?: Origin): I | undefined;\n\n deleteBody(body: AnnotationBody, origin?: Origin): void;\n\n destroy(): void;\n\n findAnnotator(annotationId: string): Annotator<I, E> | undefined;\n\n findSource(annotationId: string): string | undefined;\n\n getAnnotation(id: string): I | undefined;\n \n getAnnotations(): I[];\n\n getAnnotator(id: string): Annotator<I, E> | undefined;\n \n setSelected(annotationId: string): void;\n\n updateAnnotation(arg1: string | I, arg2?: I | Origin, arg3?: Origin): void;\n\n}\n\nexport const createManifoldInstance = <I extends Annotation = Annotation, E extends { id: string } = Annotation>(\n annotators: Map<string, Annotator<I, E>>\n): AnnotoriousManifoldInstance<I, E> => {\n\n const find = (annotationId: string): { annotation?: I, source?: string, annotator?: Annotator<I, E> } =>\n Array.from(annotators.entries()).reduce((found, [source, annotator]) => {\n if (found)\n return found;\n\n const annotation = annotator.state.store.getAnnotation(annotationId);\n if (annotation) \n return { annotation, annotator, source };\n }, undefined as { annotation: I, annotator: Annotator<I, E> } | undefined ) || \n\n { annotation: undefined, annotator: undefined, source: undefined };\n\n /*********/\n /** API **/\n /*********/\n\n const addBody = (body: AnnotationBody, origin = Origin.LOCAL) => {\n const { annotator } = find(body.annotation);\n if (annotator)\n annotator.state.store.addBody(body, origin);\n }\n\n const clear = (origin = Origin.LOCAL) =>\n Array.from(annotators.values()).forEach(a => a.state.store.clear(origin));\n\n const deleteAnnotation = (id: string, origin = Origin.LOCAL) => {\n const { annotation, annotator } = find(id);\n\n if (annotator) {\n annotator.state.store.deleteAnnotation(id, origin);\n return annotation;\n }\n }\n\n const deleteBody = (body: AnnotationBody, origin = Origin.LOCAL) => {\n const { annotator } = find(body.annotation);\n if (annotator)\n annotator.state.store.deleteBody(body, origin);\n }\n\n const destroy = () =>\n Array.from(annotators.values()).forEach(a => a.destroy());\n\n const findAnnotator = (annotationId: string) => {\n const { annotator } = find(annotationId);\n return annotator;\n }\n\n const findSource = (annotationId: string) => {\n const { source } = find(annotationId);\n return source;\n }\n\n const getAnnotation = (annotationId: string) => \n find(annotationId).annotation;\n\n const getAnnotations = () => \n Array.from(annotators.values()).reduce((all, annotator) =>\n [...all, ...annotator.state.store.all()], [] as I[]);\n\n const getAnnotator = (id: string) => annotators.get(id);\n\n const updateAnnotation = (arg1: string | I, arg2?: I | Origin, arg3?: Origin) => {\n const oldId: string = typeof arg1 === 'string' ? arg1 : arg1.id;\n\n const { annotator } = find(oldId);\n if (annotator)\n annotator.state.store.updateAnnotation(arg1, arg2, arg3);\n }\n\n const setSelected = (id: string) => {\n const { annotator } = find(id);\n if (annotator)\n annotator.setSelected(id);\n }\n\n return {\n annotators: [...annotators.values()],\n sources: [...annotators.keys()],\n addBody,\n clear,\n deleteAnnotation,\n deleteBody,\n destroy,\n findAnnotator,\n findSource,\n getAnnotation,\n getAnnotations,\n getAnnotator,\n setSelected,\n updateAnnotation\n }\n\n}"],"names":["createManifoldInstance","annotators","find","annotationId","found","source","annotator","annotation","addBody","body","origin","Origin","clear","a","deleteAnnotation","id","deleteBody","destroy","findAnnotator","findSource","getAnnotation","getAnnotations","all","getAnnotator","updateAnnotation","arg1","arg2","arg3","oldId","setSelected"],"mappings":"
|
|
1
|
+
{"version":3,"file":"annotorious-react-manifold.es4.js","sources":["../src/AnnotoriousManifoldInstance.ts"],"sourcesContent":["import { Origin } from '@annotorious/react';\nimport type {\n Annotation, \n AnnotationBody, \n Annotator\n} from '@annotorious/react';\n\nexport interface AnnotoriousManifoldInstance<I extends Annotation = Annotation, E extends { id: string } = Annotation> {\n\n annotators: Annotator<I, E>[];\n\n sources: string[];\n\n addBody(body: AnnotationBody, origin?: Origin): void;\n\n clear(origin: Origin): void;\n\n deleteAnnotation(id: string, origin?: Origin): I | undefined;\n\n deleteBody(body: AnnotationBody, origin?: Origin): void;\n\n destroy(): void;\n\n findAnnotator(annotationId: string): Annotator<I, E> | undefined;\n\n findSource(annotationId: string): string | undefined;\n\n getAnnotation(id: string): I | undefined;\n \n getAnnotations(): I[];\n\n getAnnotator(id: string): Annotator<I, E> | undefined;\n \n setSelected(annotationId: string): void;\n\n updateAnnotation(arg1: string | I, arg2?: I | Origin, arg3?: Origin): void;\n\n}\n\nexport const createManifoldInstance = <I extends Annotation = Annotation, E extends { id: string } = Annotation>(\n annotators: Map<string, Annotator<I, E>>\n): AnnotoriousManifoldInstance<I, E> => {\n\n const find = (annotationId: string): { annotation?: I, source?: string, annotator?: Annotator<I, E> } =>\n Array.from(annotators.entries()).reduce((found, [source, annotator]) => {\n if (found)\n return found;\n\n const annotation = annotator.state.store.getAnnotation(annotationId);\n if (annotation) \n return { annotation, annotator, source };\n }, undefined as { annotation: I, annotator: Annotator<I, E> } | undefined ) || \n\n { annotation: undefined, annotator: undefined, source: undefined };\n\n /*********/\n /** API **/\n /*********/\n\n const addBody = (body: AnnotationBody, origin = Origin.LOCAL) => {\n const { annotator } = find(body.annotation);\n if (annotator)\n annotator.state.store.addBody(body, origin);\n }\n\n const clear = (origin = Origin.LOCAL) =>\n Array.from(annotators.values()).forEach(a => a.state.store.clear(origin));\n\n const deleteAnnotation = (id: string, origin = Origin.LOCAL) => {\n const { annotation, annotator } = find(id);\n\n if (annotator) {\n annotator.state.store.deleteAnnotation(id, origin);\n return annotation;\n }\n }\n\n const deleteBody = (body: AnnotationBody, origin = Origin.LOCAL) => {\n const { annotator } = find(body.annotation);\n if (annotator)\n annotator.state.store.deleteBody(body, origin);\n }\n\n const destroy = () =>\n Array.from(annotators.values()).forEach(a => a.destroy());\n\n const findAnnotator = (annotationId: string) => {\n const { annotator } = find(annotationId);\n return annotator;\n }\n\n const findSource = (annotationId: string) => {\n const { source } = find(annotationId);\n return source;\n }\n\n const getAnnotation = (annotationId: string) => \n find(annotationId).annotation;\n\n const getAnnotations = () => \n Array.from(annotators.values()).reduce((all, annotator) =>\n [...all, ...annotator.state.store.all()], [] as I[]);\n\n const getAnnotator = (id: string) => annotators.get(id);\n\n const updateAnnotation = (arg1: string | I, arg2?: I | Origin, arg3?: Origin) => {\n const oldId: string = typeof arg1 === 'string' ? arg1 : arg1.id;\n\n const { annotator } = find(oldId);\n if (annotator)\n annotator.state.store.updateAnnotation(arg1, arg2, arg3);\n }\n\n const setSelected = (id: string) => {\n const { annotator } = find(id);\n if (annotator)\n annotator.setSelected(id);\n }\n\n return {\n annotators: [...annotators.values()],\n sources: [...annotators.keys()],\n addBody,\n clear,\n deleteAnnotation,\n deleteBody,\n destroy,\n findAnnotator,\n findSource,\n getAnnotation,\n getAnnotations,\n getAnnotator,\n setSelected,\n updateAnnotation\n }\n\n}"],"names":["createManifoldInstance","annotators","find","annotationId","found","source","annotator","annotation","addBody","body","origin","Origin","clear","a","deleteAnnotation","id","deleteBody","destroy","findAnnotator","findSource","getAnnotation","getAnnotations","all","getAnnotator","updateAnnotation","arg1","arg2","arg3","oldId","setSelected"],"mappings":";;AAuCa,MAAAA,IAAyB,CACpCC,MACsC;AAEtC,QAAMC,IAAO,CAACC,MACZ,MAAM,KAAKF,EAAW,SAAS,EAAE,OAAO,CAACG,GAAO,CAACC,GAAQC,CAAS,MAAM;AAClE,QAAAF;AACK,aAAAA;AAET,UAAMG,IAAaD,EAAU,MAAM,MAAM,cAAcH,CAAY;AAC/D,QAAAI;AACK,aAAA,EAAE,YAAAA,GAAY,WAAAD,GAAW,QAAAD;EACpC,GAAG,MAAuE,KAE1E,EAAE,YAAY,QAAW,WAAW,QAAW,QAAQ,OAAU,GAM7DG,IAAU,CAACC,GAAsBC,IAASC,EAAO,UAAU;AAC/D,UAAM,EAAE,WAAAL,EAAc,IAAAJ,EAAKO,EAAK,UAAU;AACtC,IAAAH,KACFA,EAAU,MAAM,MAAM,QAAQG,GAAMC,CAAM;AAAA,EAAA,GAGxCE,IAAQ,CAACF,IAASC,EAAO,UAC7B,MAAM,KAAKV,EAAW,OAAA,CAAQ,EAAE,QAAQ,CAAKY,MAAAA,EAAE,MAAM,MAAM,MAAMH,CAAM,CAAC,GAEpEI,IAAmB,CAACC,GAAYL,IAASC,EAAO,UAAU;AAC9D,UAAM,EAAE,YAAAJ,GAAY,WAAAD,EAAU,IAAIJ,EAAKa,CAAE;AAEzC,QAAIT;AACF,aAAAA,EAAU,MAAM,MAAM,iBAAiBS,GAAIL,CAAM,GAC1CH;AAAA,EACT,GAGIS,IAAa,CAACP,GAAsBC,IAASC,EAAO,UAAU;AAClE,UAAM,EAAE,WAAAL,EAAc,IAAAJ,EAAKO,EAAK,UAAU;AACtC,IAAAH,KACFA,EAAU,MAAM,MAAM,WAAWG,GAAMC,CAAM;AAAA,EAAA,GAG3CO,IAAU,MACd,MAAM,KAAKhB,EAAW,OAAA,CAAQ,EAAE,QAAQ,CAAAY,MAAKA,EAAE,QAAS,CAAA,GAEpDK,IAAgB,CAACf,MAAyB;AAC9C,UAAM,EAAE,WAAAG,EAAA,IAAcJ,EAAKC,CAAY;AAChC,WAAAG;AAAA,EAAA,GAGHa,IAAa,CAAChB,MAAyB;AAC3C,UAAM,EAAE,QAAAE,EAAA,IAAWH,EAAKC,CAAY;AAC7B,WAAAE;AAAA,EAAA,GAGHe,IAAgB,CAACjB,MACrBD,EAAKC,CAAY,EAAE,YAEfkB,IAAiB,MACrB,MAAM,KAAKpB,EAAW,OAAQ,CAAA,EAAE,OAAO,CAACqB,GAAKhB,MAC3C,CAAC,GAAGgB,GAAK,GAAGhB,EAAU,MAAM,MAAM,IAAI,CAAC,GAAG,CAAA,CAAS,GAEjDiB,IAAe,CAACR,MAAed,EAAW,IAAIc,CAAE,GAEhDS,IAAmB,CAACC,GAAkBC,GAAmBC,MAAkB;AAC/E,UAAMC,IAAgB,OAAOH,KAAS,WAAWA,IAAOA,EAAK,IAEvD,EAAE,WAAAnB,EAAA,IAAcJ,EAAK0B,CAAK;AAC5B,IAAAtB,KACFA,EAAU,MAAM,MAAM,iBAAiBmB,GAAMC,GAAMC,CAAI;AAAA,EAAA,GAGrDE,IAAc,CAACd,MAAe;AAClC,UAAM,EAAE,WAAAT,EAAA,IAAcJ,EAAKa,CAAE;AACzB,IAAAT,KACFA,EAAU,YAAYS,CAAE;AAAA,EAAA;AAGrB,SAAA;AAAA,IACL,YAAY,CAAC,GAAGd,EAAW,QAAQ;AAAA,IACnC,SAAS,CAAC,GAAGA,EAAW,MAAM;AAAA,IAC9B,SAAAO;AAAA,IACA,OAAAI;AAAA,IACA,kBAAAE;AAAA,IACA,YAAAE;AAAA,IACA,SAAAC;AAAA,IACA,eAAAC;AAAA,IACA,YAAAC;AAAA,IACA,eAAAC;AAAA,IACA,gBAAAC;AAAA,IACA,cAAAE;AAAA,IACA,aAAAM;AAAA,IACA,kBAAAL;AAAA,EAAA;AAGJ;"}
|
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
import { j as r } from "./annotorious-react-manifold.es7.js";
|
|
2
|
-
import { useContext as s, useEffect as
|
|
3
|
-
import { OSDViewerContext as
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
import { useContext as s, useEffect as m } from "react";
|
|
3
|
+
import { OSDViewerContext as a } from "./annotorious-react-manifold.es6.js";
|
|
4
|
+
import "./annotorious-react-manifold.es9.js";
|
|
5
|
+
import { useViewer as f } from "./annotorious-react-manifold.es11.js";
|
|
6
|
+
import { OpenSeadragonViewer as p } from "./annotorious-react-manifold.es12.js";
|
|
7
|
+
const w = (e) => {
|
|
8
|
+
const t = f(), { setViewers: i } = s(a);
|
|
9
|
+
return m(() => {
|
|
10
|
+
if (t)
|
|
11
|
+
return i((n) => new Map(n.entries()).set(e.id, t)), () => {
|
|
12
|
+
i((n) => new Map(Array.from(n.entries()).filter(([o, d]) => o !== e.id)));
|
|
11
13
|
};
|
|
12
|
-
}, [
|
|
13
|
-
},
|
|
14
|
-
/* @__PURE__ */ r.jsx(
|
|
15
|
-
/* @__PURE__ */ r.jsx(
|
|
14
|
+
}, [t]), null;
|
|
15
|
+
}, O = (e) => /* @__PURE__ */ r.jsxs(r.Fragment, { children: [
|
|
16
|
+
/* @__PURE__ */ r.jsx(p, { ...e }),
|
|
17
|
+
/* @__PURE__ */ r.jsx(w, { id: e.id })
|
|
16
18
|
] });
|
|
17
19
|
export {
|
|
18
|
-
|
|
20
|
+
O as OpenSeadragonViewer
|
|
19
21
|
};
|
|
20
22
|
//# sourceMappingURL=annotorious-react-manifold.es5.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotorious-react-manifold.es5.js","sources":["../src/openseadragon/OpenSeadragonViewer.tsx"],"sourcesContent":["import { useContext, useEffect } from 'react';\nimport { OSDViewerContext } from './OpenSeadragonViewerManifold';\nimport { \n OpenSeadragonViewer as OpenSeadragonViewerInstance, \n OpenSeadragonViewerProps as OpenSeadragonViewerInstanceProps, \n useViewer \n} from '@annotorious/react';\n\n/** Passes the OSD viewer instance upwards to the manifold **/\nconst OpenSeadragonViewerInstanceShim = (props: { id: string }) => {\n\n const viewer = useViewer();\n\n const { setViewers } = useContext(OSDViewerContext);\n\n useEffect(() => {\n if (viewer) {\n setViewers(m => new Map(m.entries()).set(props.id, viewer));\n\n return () => {\n setViewers(m => new Map(Array.from(m.entries()).filter(([key, _]) => key !== props.id)));\n }\n }\n }, [viewer]);\n\n return null;\n\n}\n\ntype OpenSeadragonViewerProps = OpenSeadragonViewerInstanceProps & {\n\n id: string\n\n};\n\n/**\n * An alternative <OpenSeadragonViewer /> component that mimicks the original\n * from @annotorious/react, but injects a shim component that connects\n * the Viewer to the ViewerManifold.\n */\nexport const OpenSeadragonViewer = (props: OpenSeadragonViewerProps) => {\n\n return (\n <>\n <OpenSeadragonViewerInstance {...props} />\n <OpenSeadragonViewerInstanceShim id={props.id} />\n </>\n )\n\n}"],"names":["OpenSeadragonViewerInstanceShim","props","viewer","useViewer","setViewers","useContext","OSDViewerContext","useEffect","m","key","_","OpenSeadragonViewer","jsxs","Fragment","jsx","OpenSeadragonViewerInstance"],"mappings":"
|
|
1
|
+
{"version":3,"file":"annotorious-react-manifold.es5.js","sources":["../src/openseadragon/OpenSeadragonViewer.tsx"],"sourcesContent":["import { useContext, useEffect } from 'react';\nimport { OSDViewerContext } from './OpenSeadragonViewerManifold';\nimport { \n OpenSeadragonViewer as OpenSeadragonViewerInstance, \n OpenSeadragonViewerProps as OpenSeadragonViewerInstanceProps, \n useViewer \n} from '@annotorious/react';\n\n/** Passes the OSD viewer instance upwards to the manifold **/\nconst OpenSeadragonViewerInstanceShim = (props: { id: string }) => {\n\n const viewer = useViewer();\n\n const { setViewers } = useContext(OSDViewerContext);\n\n useEffect(() => {\n if (viewer) {\n setViewers(m => new Map(m.entries()).set(props.id, viewer));\n\n return () => {\n setViewers(m => new Map(Array.from(m.entries()).filter(([key, _]) => key !== props.id)));\n }\n }\n }, [viewer]);\n\n return null;\n\n}\n\ntype OpenSeadragonViewerProps = OpenSeadragonViewerInstanceProps & {\n\n id: string\n\n};\n\n/**\n * An alternative <OpenSeadragonViewer /> component that mimicks the original\n * from @annotorious/react, but injects a shim component that connects\n * the Viewer to the ViewerManifold.\n */\nexport const OpenSeadragonViewer = (props: OpenSeadragonViewerProps) => {\n\n return (\n <>\n <OpenSeadragonViewerInstance {...props} />\n <OpenSeadragonViewerInstanceShim id={props.id} />\n </>\n )\n\n}"],"names":["OpenSeadragonViewerInstanceShim","props","viewer","useViewer","setViewers","useContext","OSDViewerContext","useEffect","m","key","_","OpenSeadragonViewer","jsxs","Fragment","jsx","OpenSeadragonViewerInstance"],"mappings":";;;;;;AASA,MAAMA,IAAkC,CAACC,MAA0B;AAEjE,QAAMC,IAASC,KAET,EAAE,YAAAC,EAAA,IAAeC,EAAWC,CAAgB;AAElD,SAAAC,EAAU,MAAM;AACd,QAAIL;AACS,aAAAE,EAAA,CAAAI,MAAK,IAAI,IAAIA,EAAE,SAAS,EAAE,IAAIP,EAAM,IAAIC,CAAM,CAAC,GAEnD,MAAM;AACX,QAAAE,EAAW,OAAK,IAAI,IAAI,MAAM,KAAKI,EAAE,QAAS,CAAA,EAAE,OAAO,CAAC,CAACC,GAAKC,CAAC,MAAMD,MAAQR,EAAM,EAAE,CAAC,CAAC;AAAA,MAAA;AAAA,EAE3F,GACC,CAACC,CAAM,CAAC,GAEJ;AAET,GAaaS,IAAsB,CAACV,MAI9BW,gBAAAA,EAAA,KAAAC,YAAA,EAAA,UAAA;AAAA,EAACC,gBAAAA,EAAAA,IAAAC,GAAA,EAA6B,GAAGd,GAAO;AAAA,EACvCa,gBAAAA,EAAAA,IAAAd,GAAA,EAAgC,IAAIC,EAAM,GAAI,CAAA;AACjD,EAAA,CAAA;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { __module as e } from "./annotorious-react-manifold.
|
|
2
|
-
import { __require as r } from "./annotorious-react-manifold.
|
|
3
|
-
import { __require as o } from "./annotorious-react-manifold.
|
|
1
|
+
import { __module as e } from "./annotorious-react-manifold.es13.js";
|
|
2
|
+
import { __require as r } from "./annotorious-react-manifold.es14.js";
|
|
3
|
+
import { __require as o } from "./annotorious-react-manifold.es15.js";
|
|
4
4
|
process.env.NODE_ENV === "production" ? e.exports = r() : e.exports = o();
|
|
5
5
|
var m = e.exports;
|
|
6
6
|
export {
|
|
@@ -1,5 +1,49 @@
|
|
|
1
|
-
|
|
1
|
+
import { jsx as j } from "./annotorious-react-manifold.es18.js";
|
|
2
|
+
import { createContext as B, forwardRef as D, useState as r, useImperativeHandle as G, useEffect as H, useContext as I } from "react";
|
|
3
|
+
const p = B({
|
|
4
|
+
anno: void 0,
|
|
5
|
+
setAnno: void 0,
|
|
6
|
+
annotations: [],
|
|
7
|
+
selection: { selected: [] }
|
|
8
|
+
}), V = D((a, m) => {
|
|
9
|
+
const [t, f] = r(null), [A, l] = r([]), [x, d] = r({ selected: [] });
|
|
10
|
+
return G(m, () => t), H(() => {
|
|
11
|
+
if (t) {
|
|
12
|
+
const { selection: h, store: e } = t.state;
|
|
13
|
+
e.all().length > 0 && l(e.all());
|
|
14
|
+
const c = (s) => l(() => e.all());
|
|
15
|
+
e.observe(c);
|
|
16
|
+
let o;
|
|
17
|
+
const C = h.subscribe(({ selected: s, pointerEvent: E }) => {
|
|
18
|
+
o && e.unobserve(o);
|
|
19
|
+
const g = (s || []).map(({ id: n, editable: i }) => ({ annotation: e.getAnnotation(n), editable: i }));
|
|
20
|
+
d({ selected: g, pointerEvent: E }), o = (n) => {
|
|
21
|
+
const { updated: i } = n.changes;
|
|
22
|
+
d(({ selected: w }) => ({
|
|
23
|
+
selected: w.map(({ annotation: u, editable: b }) => {
|
|
24
|
+
const v = i.find((S) => S.oldValue.id === u.id);
|
|
25
|
+
return v ? { annotation: v.newValue, editable: b } : { annotation: u, editable: b };
|
|
26
|
+
})
|
|
27
|
+
}));
|
|
28
|
+
}, e.observe(o, { annotations: s.map(({ id: n }) => n) });
|
|
29
|
+
});
|
|
30
|
+
return () => {
|
|
31
|
+
e.unobserve(c), C();
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
}, [t]), /* @__PURE__ */ j(p.Provider, { value: {
|
|
35
|
+
anno: t,
|
|
36
|
+
setAnno: f,
|
|
37
|
+
annotations: A,
|
|
38
|
+
selection: x
|
|
39
|
+
}, children: a.children });
|
|
40
|
+
}), k = () => {
|
|
41
|
+
const { anno: a } = I(p);
|
|
42
|
+
return a;
|
|
43
|
+
};
|
|
2
44
|
export {
|
|
3
|
-
|
|
45
|
+
V as Annotorious,
|
|
46
|
+
p as AnnotoriousContext,
|
|
47
|
+
k as useAnnotator
|
|
4
48
|
};
|
|
5
49
|
//# sourceMappingURL=annotorious-react-manifold.es8.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotorious-react-manifold.es8.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
1
|
+
{"version":3,"file":"annotorious-react-manifold.es8.js","sources":["../node_modules/@annotorious/react/dist/annotorious-react.es2.js"],"sourcesContent":["import { jsx as U } from \"./annotorious-react.es12.js\";\nimport { createContext as j, forwardRef as E, useState as f, useImperativeHandle as H, useEffect as h, useContext as s } from \"react\";\nimport { useDebounce as C } from \"./annotorious-react.es13.js\";\nconst n = j({\n anno: void 0,\n setAnno: void 0,\n annotations: [],\n selection: { selected: [] }\n}), B = E((t, r) => {\n const [o, u] = f(null), [p, c] = f([]), [A, l] = f({ selected: [] });\n return H(r, () => o), h(() => {\n if (o) {\n const { selection: m, store: e } = o.state;\n e.all().length > 0 && c(e.all());\n const v = (a) => c(() => e.all());\n e.observe(v);\n let i;\n const b = m.subscribe(({ selected: a, pointerEvent: w }) => {\n i && e.unobserve(i);\n const D = (a || []).map(({ id: d, editable: S }) => ({ annotation: e.getAnnotation(d), editable: S }));\n l({ selected: D, pointerEvent: w }), i = (d) => {\n const { updated: S } = d.changes;\n l(({ selected: I }) => ({\n selected: I.map(({ annotation: V, editable: g }) => {\n const x = S.find((O) => O.oldValue.id === V.id);\n return x ? { annotation: x.newValue, editable: g } : { annotation: V, editable: g };\n })\n }));\n }, e.observe(i, { annotations: a.map(({ id: d }) => d) });\n });\n return () => {\n e.unobserve(v), b();\n };\n }\n }, [o]), /* @__PURE__ */ U(n.Provider, { value: {\n anno: o,\n setAnno: u,\n annotations: p,\n selection: A\n }, children: t.children });\n}), F = () => s(n), G = () => {\n const { anno: t } = s(n);\n return t;\n}, J = () => {\n const { anno: t } = s(n);\n return t == null ? void 0 : t.state.store;\n}, P = () => {\n const { annotations: t } = s(n);\n return t;\n}, R = (t) => {\n const { annotations: r } = s(n);\n return C(r, t);\n}, K = (t) => t ? R(t) : P(), L = () => {\n const { selection: t } = s(n);\n return t;\n}, M = () => {\n const { anno: t } = s(n);\n return t == null ? void 0 : t.getUser();\n}, _ = () => {\n const { anno: t } = s(n), [r, o] = f([]);\n return h(() => {\n if (t) {\n const { store: u, viewport: p } = t.state;\n if (!p)\n return;\n let c;\n const A = p.subscribe((l) => {\n c && u.unobserve(c);\n const m = l.map((e) => u.getAnnotation(e));\n o(m), c = (e) => {\n const { updated: v } = e.changes;\n o((i) => i.map((b) => {\n const a = v.find((w) => w.oldValue.id === b.id);\n return a ? a.newValue : b;\n }));\n }, u.observe(c, { annotations: l });\n });\n return () => {\n A();\n };\n }\n }, [t]), r;\n}, k = (t) => {\n const r = _();\n return C(r, t);\n}, N = (t) => t ? k(t) : _();\nexport {\n B as Annotorious,\n n as AnnotoriousContext,\n J as useAnnotationStore,\n K as useAnnotations,\n G as useAnnotator,\n F as useAnnotatorState,\n M as useAnnotatorUser,\n L as useSelection,\n N as useViewportState\n};\n//# sourceMappingURL=annotorious-react.es2.js.map\n"],"names":["n","j","B","E","t","r","o","u","f","p","c","A","l","H","h","m","v","a","i","b","w","D","d","S","I","V","g","x","O","U","G","s"],"mappings":";;AAGK,MAACA,IAAIC,EAAE;AAAA,EACV,MAAM;AAAA,EACN,SAAS;AAAA,EACT,aAAa,CAAE;AAAA,EACf,WAAW,EAAE,UAAU,GAAI;AAC7B,CAAC,GAAGC,IAAIC,EAAE,CAACC,GAAGC,MAAM;AAClB,QAAM,CAACC,GAAGC,CAAC,IAAIC,EAAE,IAAI,GAAG,CAACC,GAAGC,CAAC,IAAIF,EAAE,EAAE,GAAG,CAACG,GAAGC,CAAC,IAAIJ,EAAE,EAAE,UAAU,CAAE,EAAA,CAAE;AACnE,SAAOK,EAAER,GAAG,MAAMC,CAAC,GAAGQ,EAAE,MAAM;AAC5B,QAAIR,GAAG;AACL,YAAM,EAAE,WAAWS,GAAG,OAAO,EAAG,IAAGT,EAAE;AACrC,QAAE,IAAK,EAAC,SAAS,KAAKI,EAAE,EAAE,IAAG,CAAE;AAC/B,YAAMM,IAAI,CAACC,MAAMP,EAAE,MAAM,EAAE,IAAG,CAAE;AAChC,QAAE,QAAQM,CAAC;AACX,UAAIE;AACJ,YAAMC,IAAIJ,EAAE,UAAU,CAAC,EAAE,UAAUE,GAAG,cAAcG,QAAQ;AAC1D,QAAAF,KAAK,EAAE,UAAUA,CAAC;AAClB,cAAMG,KAAKJ,KAAK,CAAE,GAAE,IAAI,CAAC,EAAE,IAAIK,GAAG,UAAUC,EAAC,OAAQ,EAAE,YAAY,EAAE,cAAcD,CAAC,GAAG,UAAUC,EAAG,EAAC;AACrG,QAAAX,EAAE,EAAE,UAAUS,GAAG,cAAcD,GAAG,GAAGF,IAAI,CAACI,MAAM;AAC9C,gBAAM,EAAE,SAASC,MAAMD,EAAE;AACzB,UAAAV,EAAE,CAAC,EAAE,UAAUY,SAAS;AAAA,YACtB,UAAUA,EAAE,IAAI,CAAC,EAAE,YAAYC,GAAG,UAAUC,QAAQ;AAClD,oBAAMC,IAAIJ,EAAE,KAAK,CAACK,MAAMA,EAAE,SAAS,OAAOH,EAAE,EAAE;AAC9C,qBAAOE,IAAI,EAAE,YAAYA,EAAE,UAAU,UAAUD,EAAG,IAAG,EAAE,YAAYD,GAAG,UAAUC,EAAC;AAAA,YAC/F,CAAa;AAAA,UACF,EAAC;AAAA,QACH,GAAE,EAAE,QAAQR,GAAG,EAAE,aAAaD,EAAE,IAAI,CAAC,EAAE,IAAIK,EAAG,MAAKA,CAAC,EAAG,CAAA;AAAA,MAChE,CAAO;AACD,aAAO,MAAM;AACX,UAAE,UAAUN,CAAC,GAAGG,EAAC;AAAA,MACzB;AAAA,IACK;AAAA,EACL,GAAK,CAACb,CAAC,CAAC,GAAmBuB,gBAAAA,EAAE7B,EAAE,UAAU,EAAE,OAAO;AAAA,IAC9C,MAAMM;AAAA,IACN,SAASC;AAAA,IACT,aAAaE;AAAA,IACb,WAAWE;AAAA,EACZ,GAAE,UAAUP,EAAE,SAAQ,CAAE;AAC3B,CAAC,GAAmB0B,IAAI,MAAM;AAC5B,QAAM,EAAE,MAAM1B,EAAG,IAAG2B,EAAE/B,CAAC;AACvB,SAAOI;AACT;","x_google_ignoreList":[0]}
|