-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathelectron-edit-demo.ts
43 lines (35 loc) · 1.33 KB
/
electron-edit-demo.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { extractZip, initializeDatabase, startElectron } from "./electron-utils.js";
import { initializeTranslations } from "./src/services/i18n.js";
import debounce from "./src/public/app/services/debounce.js";
import fs from "fs/promises";
const DEMO_ZIP_PATH = "db/demo.zip";
async function main() {
await initializeTranslations();
await initializeDatabase();
await startElectron();
await registerHandlers();
}
async function registerHandlers() {
const events = (await import("./src/services/events.js")).default;
const eraseService = (await import("./src/services/erase.js")).default;
const debouncer = debounce(async () => {
console.log("Exporting data");
eraseService.eraseUnusedAttachmentsNow();
await exportData();
const outputDir = "demo";
await fs.rmdir(outputDir, { recursive: true }).catch(() => {});
await extractZip(DEMO_ZIP_PATH, outputDir);
}, 10_000);
events.subscribe(events.ENTITY_CHANGED, async (e) => {
if (e.entityName === "options") {
return;
}
console.log("Got entity changed ", e);
debouncer();
});
}
async function exportData() {
const { exportToZipFile } = (await import("./src/services/export/zip.js")).default;
await exportToZipFile("root", "html", DEMO_ZIP_PATH);
}
await main();