mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-10-18 04:21:32 +08:00
feat(edit-docs): periodic export
This commit is contained in:
parent
841bc54f78
commit
7a4b1b41b4
@ -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() {
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user