2020-05-02 17:41:07 +02:00
|
|
|
import { useState, useEffect, useCallback } from 'react';
|
|
|
|
import { FormNote, defaultFormNote, ResourceInfos } from './types';
|
|
|
|
import { clearResourceCache, attachedResources } from './resourceHandling';
|
2020-11-07 17:59:37 +02:00
|
|
|
import AsyncActionQueue from '@joplin/lib/AsyncActionQueue';
|
2020-05-02 17:41:07 +02:00
|
|
|
import { handleResourceDownloadMode } from './resourceHandling';
|
2020-11-20 18:04:47 +02:00
|
|
|
import HtmlToHtml from '@joplin/renderer/HtmlToHtml';
|
|
|
|
import Setting from '@joplin/lib/models/Setting';
|
|
|
|
import usePrevious from '../../hooks/usePrevious';
|
|
|
|
import ResourceEditWatcher from '@joplin/lib/services/ResourceEditWatcher/index';
|
|
|
|
|
2020-11-07 17:59:37 +02:00
|
|
|
const { MarkupToHtml } = require('@joplin/renderer');
|
2021-01-22 19:41:11 +02:00
|
|
|
import Note from '@joplin/lib/models/Note';
|
2021-01-29 20:45:11 +02:00
|
|
|
import { reg } from '@joplin/lib/registry';
|
2021-01-23 17:51:19 +02:00
|
|
|
import ResourceFetcher from '@joplin/lib/services/ResourceFetcher';
|
|
|
|
import DecryptionWorker from '@joplin/lib/services/DecryptionWorker';
|
2020-05-02 17:41:07 +02:00
|
|
|
|
|
|
|
export interface OnLoadEvent {
|
2020-11-12 21:29:22 +02:00
|
|
|
formNote: FormNote;
|
2020-05-02 17:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface HookDependencies {
|
2020-11-12 21:29:22 +02:00
|
|
|
syncStarted: boolean;
|
|
|
|
noteId: string;
|
|
|
|
isProvisional: boolean;
|
|
|
|
titleInputRef: any;
|
|
|
|
editorRef: any;
|
|
|
|
onBeforeLoad(event: OnLoadEvent): void;
|
|
|
|
onAfterLoad(event: OnLoadEvent): void;
|
2020-05-02 17:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function installResourceChangeHandler(onResourceChangeHandler: Function) {
|
|
|
|
ResourceFetcher.instance().on('downloadComplete', onResourceChangeHandler);
|
|
|
|
ResourceFetcher.instance().on('downloadStarted', onResourceChangeHandler);
|
|
|
|
DecryptionWorker.instance().on('resourceDecrypted', onResourceChangeHandler);
|
2020-05-30 14:25:05 +02:00
|
|
|
ResourceEditWatcher.instance().on('resourceChange', onResourceChangeHandler);
|
2020-05-02 17:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function uninstallResourceChangeHandler(onResourceChangeHandler: Function) {
|
|
|
|
ResourceFetcher.instance().off('downloadComplete', onResourceChangeHandler);
|
|
|
|
ResourceFetcher.instance().off('downloadStarted', onResourceChangeHandler);
|
|
|
|
DecryptionWorker.instance().off('resourceDecrypted', onResourceChangeHandler);
|
2020-05-30 14:25:05 +02:00
|
|
|
ResourceEditWatcher.instance().off('resourceChange', onResourceChangeHandler);
|
2020-05-02 17:41:07 +02:00
|
|
|
}
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
function resourceInfosChanged(a: ResourceInfos, b: ResourceInfos): boolean {
|
2020-06-07 12:01:33 +02:00
|
|
|
if (Object.keys(a).length !== Object.keys(b).length) return true;
|
|
|
|
|
|
|
|
for (const id in a) {
|
|
|
|
const r1 = a[id];
|
|
|
|
const r2 = b[id];
|
|
|
|
if (!r2) return true;
|
|
|
|
if (r1.item.updated_time !== r2.item.updated_time) return true;
|
|
|
|
if (r1.item.encryption_applied !== r2.item.encryption_applied) return true;
|
|
|
|
if (r1.item.is_shared !== r2.item.is_shared) return true;
|
|
|
|
if (r1.localState.fetch_status !== r2.localState.fetch_status) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export default function useFormNote(dependencies: HookDependencies) {
|
2020-05-02 17:41:07 +02:00
|
|
|
const { syncStarted, noteId, isProvisional, titleInputRef, editorRef, onBeforeLoad, onAfterLoad } = dependencies;
|
|
|
|
|
|
|
|
const [formNote, setFormNote] = useState<FormNote>(defaultFormNote());
|
|
|
|
const [isNewNote, setIsNewNote] = useState(false);
|
|
|
|
const prevSyncStarted = usePrevious(syncStarted);
|
|
|
|
const previousNoteId = usePrevious(formNote.id);
|
|
|
|
const [resourceInfos, setResourceInfos] = useState<ResourceInfos>({});
|
|
|
|
|
|
|
|
async function initNoteState(n: any) {
|
|
|
|
let originalCss = '';
|
|
|
|
|
|
|
|
if (n.markup_language === MarkupToHtml.MARKUP_LANGUAGE_HTML) {
|
|
|
|
const htmlToHtml = new HtmlToHtml();
|
|
|
|
const splitted = htmlToHtml.splitHtml(n.body);
|
|
|
|
originalCss = splitted.css;
|
|
|
|
}
|
|
|
|
|
|
|
|
const newFormNote = {
|
|
|
|
id: n.id,
|
|
|
|
title: n.title,
|
|
|
|
body: n.body,
|
|
|
|
is_todo: n.is_todo,
|
|
|
|
parent_id: n.parent_id,
|
|
|
|
bodyWillChangeId: 0,
|
|
|
|
bodyChangeId: 0,
|
|
|
|
markup_language: n.markup_language,
|
|
|
|
saveActionQueue: new AsyncActionQueue(300),
|
|
|
|
originalCss: originalCss,
|
|
|
|
hasChanged: false,
|
|
|
|
user_updated_time: n.user_updated_time,
|
|
|
|
encryption_applied: n.encryption_applied,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Note that for performance reason,the call to setResourceInfos should
|
|
|
|
// be first because it loads the resource infos in an async way. If we
|
|
|
|
// swap them, the formNote will be updated first and rendered, then the
|
|
|
|
// the resources will load, and the note will be re-rendered.
|
|
|
|
setResourceInfos(await attachedResources(n.body));
|
|
|
|
setFormNote(newFormNote);
|
|
|
|
|
|
|
|
await handleResourceDownloadMode(n.body);
|
|
|
|
|
|
|
|
return newFormNote;
|
|
|
|
}
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
// Check that synchronisation has just finished - and
|
|
|
|
// if the note has never been changed, we reload it.
|
|
|
|
// If the note has already been changed, it's a conflict
|
|
|
|
// that's already been handled by the synchronizer.
|
|
|
|
|
|
|
|
if (!prevSyncStarted) return () => {};
|
|
|
|
if (syncStarted) return () => {};
|
|
|
|
if (formNote.hasChanged) return () => {};
|
|
|
|
|
2022-07-11 10:59:48 +02:00
|
|
|
reg.logger().info('Sync has finished and note has never been changed - reloading it');
|
2020-05-02 17:41:07 +02:00
|
|
|
|
|
|
|
let cancelled = false;
|
|
|
|
|
|
|
|
const loadNote = async () => {
|
|
|
|
const n = await Note.load(noteId);
|
|
|
|
if (cancelled) return;
|
|
|
|
|
|
|
|
// Normally should not happened because if the note has been deleted via sync
|
|
|
|
// it would not have been loaded in the editor (due to note selection changing
|
|
|
|
// on delete)
|
|
|
|
if (!n) {
|
|
|
|
reg.logger().warn('Trying to reload note that has been deleted:', noteId);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await initNoteState(n);
|
|
|
|
};
|
|
|
|
|
2020-11-25 16:40:25 +02:00
|
|
|
void loadNote();
|
2020-05-02 17:41:07 +02:00
|
|
|
|
|
|
|
return () => {
|
|
|
|
cancelled = true;
|
|
|
|
};
|
|
|
|
}, [prevSyncStarted, syncStarted, formNote]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
2020-11-16 19:11:31 +02:00
|
|
|
if (!noteId) {
|
|
|
|
if (formNote.id) setFormNote(defaultFormNote());
|
|
|
|
return () => {};
|
|
|
|
}
|
2020-05-02 17:41:07 +02:00
|
|
|
|
|
|
|
if (formNote.id === noteId) return () => {};
|
|
|
|
|
|
|
|
let cancelled = false;
|
|
|
|
|
|
|
|
reg.logger().debug('Loading existing note', noteId);
|
|
|
|
|
|
|
|
function handleAutoFocus(noteIsTodo: boolean) {
|
|
|
|
if (!isProvisional) return;
|
|
|
|
|
|
|
|
const focusSettingName = noteIsTodo ? 'newTodoFocus' : 'newNoteFocus';
|
|
|
|
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
if (Setting.value(focusSettingName) === 'title') {
|
|
|
|
if (titleInputRef.current) titleInputRef.current.focus();
|
|
|
|
} else {
|
2020-12-02 12:36:00 +02:00
|
|
|
if (editorRef.current) editorRef.current.execCommand({ name: 'editor.focus' });
|
2020-05-02 17:41:07 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function loadNote() {
|
|
|
|
const n = await Note.load(noteId);
|
|
|
|
if (cancelled) return;
|
|
|
|
if (!n) throw new Error(`Cannot find note with ID: ${noteId}`);
|
|
|
|
reg.logger().debug('Loaded note:', n);
|
|
|
|
|
|
|
|
await onBeforeLoad({ formNote });
|
|
|
|
|
|
|
|
const newFormNote = await initNoteState(n);
|
|
|
|
|
|
|
|
setIsNewNote(isProvisional);
|
|
|
|
|
|
|
|
await onAfterLoad({ formNote: newFormNote });
|
|
|
|
|
|
|
|
handleAutoFocus(!!n.is_todo);
|
|
|
|
}
|
|
|
|
|
2020-11-25 16:40:25 +02:00
|
|
|
void loadNote();
|
2020-05-02 17:41:07 +02:00
|
|
|
|
|
|
|
return () => {
|
|
|
|
cancelled = true;
|
|
|
|
};
|
|
|
|
}, [noteId, isProvisional, formNote]);
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
const onResourceChange = useCallback(async function(event: any = null) {
|
2020-05-02 17:41:07 +02:00
|
|
|
const resourceIds = await Note.linkedResourceIds(formNote.body);
|
|
|
|
if (!event || resourceIds.indexOf(event.id) >= 0) {
|
|
|
|
clearResourceCache();
|
|
|
|
setResourceInfos(await attachedResources(formNote.body));
|
|
|
|
}
|
|
|
|
}, [formNote.body]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
installResourceChangeHandler(onResourceChange);
|
|
|
|
return () => {
|
|
|
|
uninstallResourceChangeHandler(onResourceChange);
|
|
|
|
};
|
|
|
|
}, [onResourceChange]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (previousNoteId !== formNote.id) {
|
2020-11-25 16:40:25 +02:00
|
|
|
void onResourceChange();
|
2020-05-02 17:41:07 +02:00
|
|
|
}
|
|
|
|
}, [previousNoteId, formNote.id, onResourceChange]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
let cancelled = false;
|
|
|
|
|
|
|
|
async function runEffect() {
|
|
|
|
const r = await attachedResources(formNote.body);
|
|
|
|
if (cancelled) return;
|
2020-11-12 21:13:28 +02:00
|
|
|
setResourceInfos((previous: ResourceInfos) => {
|
2020-06-07 12:01:33 +02:00
|
|
|
return resourceInfosChanged(previous, r) ? r : previous;
|
|
|
|
});
|
2020-05-02 17:41:07 +02:00
|
|
|
}
|
|
|
|
|
2020-11-25 16:40:25 +02:00
|
|
|
void runEffect();
|
2020-05-02 17:41:07 +02:00
|
|
|
|
|
|
|
return () => {
|
|
|
|
cancelled = true;
|
|
|
|
};
|
|
|
|
}, [formNote.body]);
|
|
|
|
|
|
|
|
return { isNewNote, formNote, setFormNote, resourceInfos };
|
|
|
|
}
|