feat(edit-docs): periodic export

This commit is contained in:
Elian Doran 2025-03-10 19:34:10 +02:00
parent 841bc54f78
commit 7a4b1b41b4
No known key found for this signature in database
2 changed files with 15 additions and 2 deletions

View File

@ -7,6 +7,7 @@ import cls from "./src/services/cls.js";
import { initializeTranslations } from "./src/services/i18n.js";
import archiver, { type Archiver } from "archiver";
import type { WriteStream } from "fs";
import debounce from "./src/public/app/services/debounce.js";
const NOTE_ID_USER_GUIDE = "help_user_guide";
const destRootPath = path.join("src", "public", "app", "doc_notes", "en", "User Guide");
@ -24,7 +25,17 @@ async function main() {
});
await startElectron();
// await exportData();
const events = (await import("./src/services/events.js")).default;
const debouncer = debounce(() => {
console.log("Exporting data");
exportData();
}, 10_000);;
events.subscribe(events.ENTITY_CHANGED, async () => {
console.log("Got entity changed");
debouncer();
});
}
async function initializeDatabase() {

View File

@ -17,7 +17,9 @@ if (isDev) {
const debounce = (await import("debounce")).default;
const debouncedReloadFrontend = debounce(() => reloadFrontend("source code change"), 200);
chokidar
.watch("src/public")
.watch("src/public", {
ignored: "src/public/app/doc_notes/en/User Guide"
})
.on("add", debouncedReloadFrontend)
.on("change", debouncedReloadFrontend)
.on("unlink", debouncedReloadFrontend);