Skip to content

Commit c80286b

Browse files
ammarahm-edthecodrr
authored andcommitted
mobile: tab history
1 parent e85f8b6 commit c80286b

25 files changed

+1261
-469
lines changed

apps/mobile/app/components/sheets/editor-tabs/index.tsx

+1-7
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,6 @@ const TabItemComponent = (props: {
9797
}
9898
props.close?.();
9999
}}
100-
onLongPress={() => {
101-
useTabStore.getState().updateTab(props.tab.id, {
102-
previewTab: false
103-
});
104-
}}
105100
>
106101
<View
107102
style={{
@@ -157,8 +152,7 @@ const TabItemComponent = (props: {
157152
color={props.tab.pinned ? colors.primary.accent : colors.primary.icon}
158153
onPress={() => {
159154
useTabStore.getState().updateTab(props.tab.id, {
160-
pinned: !props.tab.pinned,
161-
previewTab: false
155+
pinned: !props.tab.pinned
162156
});
163157
}}
164158
top={0}

apps/mobile/app/components/sheets/link-note/index.tsx

+5-7
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,22 @@ import {
2222
VirtualizedGrouping,
2323
createInternalLink
2424
} from "@notesnook/core";
25+
import type { LinkAttributes } from "@notesnook/editor";
26+
import { NativeEvents } from "@notesnook/editor-mobile/src/utils/native-events";
27+
import { strings } from "@notesnook/intl";
2528
import { useThemeColors } from "@notesnook/theme";
2629
import React, { useEffect, useRef, useState } from "react";
2730
import { TextInput, View } from "react-native";
2831
import { FlatList } from "react-native-actions-sheet";
2932
import { db } from "../../../common/database";
3033
import { useDBItem } from "../../../hooks/use-db-item";
34+
import { editorController } from "../../../screens/editor/tiptap/utils";
3135
import { presentSheet } from "../../../services/event-manager";
3236
import { SIZE } from "../../../utils/size";
3337
import { Button } from "../../ui/button";
3438
import Input from "../../ui/input";
3539
import { Pressable } from "../../ui/pressable";
3640
import Paragraph from "../../ui/typography/paragraph";
37-
import type { LinkAttributes } from "@notesnook/editor";
38-
import {
39-
EditorEvents,
40-
editorController
41-
} from "../../../screens/editor/tiptap/utils";
42-
import { strings } from "@notesnook/intl";
4341

4442
const ListNoteItem = ({
4543
id,
@@ -194,7 +192,7 @@ export default function LinkNote(props: {
194192
}
195193
: undefined
196194
);
197-
editorController.current?.postMessage(EditorEvents.resolve, {
195+
editorController.current?.postMessage(NativeEvents.resolve, {
198196
data: {
199197
href: link,
200198
title: selectedNote.title

apps/mobile/app/screens/editor/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ const useLockedNoteHandler = () => {
221221
biometryAvailable: !!biometry,
222222
biometryEnrolled: !!fingerprint
223223
});
224-
syncTabs();
224+
syncTabs("biometry");
225225
})();
226226
}, [tab?.id]);
227227

apps/mobile/app/screens/editor/readonly-editor.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ import WebView from "react-native-webview";
2727
import { useRef } from "react";
2828
import { EDITOR_URI } from "./source";
2929
import { EditorMessage } from "./tiptap/types";
30-
import { EventTypes } from "./tiptap/editor-events";
30+
import { EditorEvents } from "@notesnook/editor-mobile/src/utils/editor-events";
3131
import { Attachment } from "@notesnook/editor";
3232
import downloadAttachment from "../../common/filesystem/download-attachment";
33-
import { EditorEvents } from "./tiptap/utils";
33+
import { NativeEvents } from "@notesnook/editor-mobile/src/utils/native-events";
3434
import { useThemeColors } from "@notesnook/theme";
3535
import useGlobalSafeAreaInsets from "../../hooks/use-global-safe-area-insets";
3636
import { db } from "../../common/database";
@@ -69,11 +69,11 @@ export function ReadonlyEditor(props: {
6969
const data = event.nativeEvent.data;
7070
const editorMessage = JSON.parse(data) as EditorMessage<any>;
7171

72-
if (editorMessage.type === EventTypes.logger) {
72+
if (editorMessage.type === EditorEvents.logger) {
7373
logger.info("[READONLY EDITOR LOG]", editorMessage.value);
7474
}
7575

76-
if (editorMessage.type === EventTypes.readonlyEditorLoaded) {
76+
if (editorMessage.type === EditorEvents.readonlyEditorLoaded) {
7777
props.onLoad?.((content: { data: string; id: string }) => {
7878
setTimeout(() => {
7979
noteId.current = content.id;
@@ -86,7 +86,7 @@ export function ReadonlyEditor(props: {
8686
setLoading(false);
8787
}, 300);
8888
});
89-
} else if (editorMessage.type === EventTypes.getAttachmentData) {
89+
} else if (editorMessage.type === EditorEvents.getAttachmentData) {
9090
const attachment = (editorMessage.value as any).attachment as Attachment;
9191

9292
downloadAttachment(attachment.hash, true, {
@@ -104,7 +104,7 @@ export function ReadonlyEditor(props: {
104104
);
105105
editorRef.current?.postMessage(
106106
JSON.stringify({
107-
type: EditorEvents.attachmentData,
107+
type: NativeEvents.attachmentData,
108108
value: {
109109
resolverId: (editorMessage.value as any).resolverId,
110110
data
@@ -115,7 +115,7 @@ export function ReadonlyEditor(props: {
115115
.catch(() => {
116116
editorRef.current?.postMessage(
117117
JSON.stringify({
118-
type: EditorEvents.attachmentData,
118+
type: NativeEvents.attachmentData,
119119
data: {
120120
resolverId: (editorMessage.value as any).resolverId,
121121
data: undefined

apps/mobile/app/screens/editor/tiptap/commands.ts

+43-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import { sleep } from "../../../utils/time";
3030
import { Settings } from "./types";
3131
import { useTabStore } from "./use-tab-store";
3232
import { getResponse, randId, textInput } from "./utils";
33+
import { EditorSessionItem } from "./tab-history";
3334

3435
type Action = { job: string; id: string };
3536

@@ -167,9 +168,10 @@ if (typeof statusBar !== "undefined") {
167168
setLoading = async (loading?: boolean, tabId?: number) => {
168169
await this.doAsync(`
169170
const editorController = editorControllers[${
170-
tabId || useTabStore.getState().currentTab
171+
tabId === undefined ? useTabStore.getState().currentTab : tabId
171172
}];
172173
editorController.setLoading(${loading})
174+
logger("info", editorController.setLoading);
173175
`);
174176
};
175177

@@ -353,7 +355,46 @@ editor && editor.commands.insertImage({
353355
response = editorControllers[${tabId}]?.scrollIntoView("${id}") || [];
354356
`);
355357
};
356-
//todo add replace image function
358+
359+
newSession = async (sessionId: string, tabId: number, noteId: string) => {
360+
return this.doAsync(`
361+
globalThis.sessions.newSession("${sessionId}", ${tabId}, "${noteId}");
362+
`);
363+
};
364+
365+
getSession = async (id: string): Promise<EditorSessionItem | false> => {
366+
return this.doAsync(`
367+
response = globalThis.sessions.get("${id}");
368+
`);
369+
};
370+
371+
deleteSession = async (id: string) => {
372+
return this.doAsync(`
373+
globalThis.sessions.delete("${id}");
374+
`);
375+
};
376+
377+
deleteSessionsForTabId = async (tabId: number) => {
378+
return this.doAsync(`
379+
globalThis.sessions.deleteForTabId(${tabId});
380+
`);
381+
};
382+
383+
updateSession = async (
384+
id: string,
385+
session: {
386+
tabId: number;
387+
noteId: string;
388+
scrollTop: number;
389+
from: number;
390+
to: number;
391+
sessionId: string;
392+
}
393+
) => {
394+
return this.doAsync(`
395+
globalThis.sessions.updateSession("${id}", ${JSON.stringify(session)});
396+
`);
397+
};
357398
}
358399

359400
export default Commands;

0 commit comments

Comments
 (0)