@@ -27,10 +27,10 @@ import WebView from "react-native-webview";
27
27
import { useRef } from "react" ;
28
28
import { EDITOR_URI } from "./source" ;
29
29
import { EditorMessage } from "./tiptap/types" ;
30
- import { EventTypes } from "./tiptap /editor-events" ;
30
+ import { EditorEvents } from "@notesnook/editor-mobile/src/utils /editor-events" ;
31
31
import { Attachment } from "@notesnook/editor" ;
32
32
import downloadAttachment from "../../common/filesystem/download-attachment" ;
33
- import { EditorEvents } from "./tiptap/ utils" ;
33
+ import { NativeEvents } from "@notesnook/editor-mobile/src/ utils/native-events " ;
34
34
import { useThemeColors } from "@notesnook/theme" ;
35
35
import useGlobalSafeAreaInsets from "../../hooks/use-global-safe-area-insets" ;
36
36
import { db } from "../../common/database" ;
@@ -69,11 +69,11 @@ export function ReadonlyEditor(props: {
69
69
const data = event . nativeEvent . data ;
70
70
const editorMessage = JSON . parse ( data ) as EditorMessage < any > ;
71
71
72
- if ( editorMessage . type === EventTypes . logger ) {
72
+ if ( editorMessage . type === EditorEvents . logger ) {
73
73
logger . info ( "[READONLY EDITOR LOG]" , editorMessage . value ) ;
74
74
}
75
75
76
- if ( editorMessage . type === EventTypes . readonlyEditorLoaded ) {
76
+ if ( editorMessage . type === EditorEvents . readonlyEditorLoaded ) {
77
77
props . onLoad ?.( ( content : { data : string ; id : string } ) => {
78
78
setTimeout ( ( ) => {
79
79
noteId . current = content . id ;
@@ -86,7 +86,7 @@ export function ReadonlyEditor(props: {
86
86
setLoading ( false ) ;
87
87
} , 300 ) ;
88
88
} ) ;
89
- } else if ( editorMessage . type === EventTypes . getAttachmentData ) {
89
+ } else if ( editorMessage . type === EditorEvents . getAttachmentData ) {
90
90
const attachment = ( editorMessage . value as any ) . attachment as Attachment ;
91
91
92
92
downloadAttachment ( attachment . hash , true , {
@@ -104,7 +104,7 @@ export function ReadonlyEditor(props: {
104
104
) ;
105
105
editorRef . current ?. postMessage (
106
106
JSON . stringify ( {
107
- type : EditorEvents . attachmentData ,
107
+ type : NativeEvents . attachmentData ,
108
108
value : {
109
109
resolverId : ( editorMessage . value as any ) . resolverId ,
110
110
data
@@ -115,7 +115,7 @@ export function ReadonlyEditor(props: {
115
115
. catch ( ( ) => {
116
116
editorRef . current ?. postMessage (
117
117
JSON . stringify ( {
118
- type : EditorEvents . attachmentData ,
118
+ type : NativeEvents . attachmentData ,
119
119
data : {
120
120
resolverId : ( editorMessage . value as any ) . resolverId ,
121
121
data : undefined
0 commit comments