mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 19:12:27 +08:00
chore(client/ts): port services/file_watcher
This commit is contained in:
parent
45a652828e
commit
6e8fa6d757
@ -50,6 +50,12 @@ export type TriggerData = {
|
||||
branchIdsToDelete: string[];
|
||||
callback: (value: ResolveOptions) => void;
|
||||
forceDeleteAllClones: boolean;
|
||||
} | {
|
||||
// For "openedFileUpdated"
|
||||
entityType: string;
|
||||
entityId: string;
|
||||
lastModifiedMs: number;
|
||||
filePath: string;
|
||||
}
|
||||
| PromptDialogOptions // For "showPromptDialog"
|
||||
| ConfirmWithMessageOptions // For "showConfirmDialog"
|
||||
|
@ -1,36 +1,45 @@
|
||||
import ws from "./ws.js";
|
||||
import appContext from "../components/app_context.js";
|
||||
|
||||
const fileModificationStatus = {
|
||||
// TODO: Deduplicate
|
||||
interface Message {
|
||||
type: string;
|
||||
entityType: string;
|
||||
entityId: string;
|
||||
lastModifiedMs: number;
|
||||
filePath: string;
|
||||
}
|
||||
|
||||
const fileModificationStatus: Record<string, Record<string, Message>> = {
|
||||
notes: {},
|
||||
attachments: {}
|
||||
};
|
||||
|
||||
function checkType(type) {
|
||||
function checkType(type: string) {
|
||||
if (type !== 'notes' && type !== 'attachments') {
|
||||
throw new Error(`Unrecognized type '${type}', should be 'notes' or 'attachments'`);
|
||||
}
|
||||
}
|
||||
|
||||
function getFileModificationStatus(entityType, entityId) {
|
||||
function getFileModificationStatus(entityType: string, entityId: string) {
|
||||
checkType(entityType);
|
||||
|
||||
return fileModificationStatus[entityType][entityId];
|
||||
}
|
||||
|
||||
function fileModificationUploaded(entityType, entityId) {
|
||||
function fileModificationUploaded(entityType: string, entityId: string) {
|
||||
checkType(entityType);
|
||||
|
||||
delete fileModificationStatus[entityType][entityId];
|
||||
}
|
||||
|
||||
function ignoreModification(entityType, entityId) {
|
||||
function ignoreModification(entityType: string, entityId: string) {
|
||||
checkType(entityType);
|
||||
|
||||
delete fileModificationStatus[entityType][entityId];
|
||||
}
|
||||
|
||||
ws.subscribeToMessages(async message => {
|
||||
ws.subscribeToMessages(async (message: Message) => {
|
||||
if (message.type !== 'openedFileUpdated') {
|
||||
return;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user