chore(client/ts): port services/file_watcher

This commit is contained in:
Elian Doran 2024-12-21 17:42:48 +02:00
parent 45a652828e
commit 6e8fa6d757
No known key found for this signature in database
2 changed files with 21 additions and 6 deletions

View File

@ -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"

View File

@ -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;
}