mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { extractZip, importData, initializeDatabase, startElectron } from "./utils.js";
 | 
						|
import { initializeTranslations } from "@triliumnext/server/src/services/i18n.js";
 | 
						|
import debounce from "@triliumnext/client/src/services/debounce.js";
 | 
						|
import fs from "fs/promises";
 | 
						|
import { join } from "path";
 | 
						|
import cls from "@triliumnext/server/src/services/cls.js";
 | 
						|
 | 
						|
// Paths are relative to apps/edit-docs/dist.
 | 
						|
const DEMO_ZIP_PATH = join(__dirname, "../../server/src/assets/db/demo.zip");
 | 
						|
const DEMO_ZIP_DIR_PATH = join(__dirname, "../demo");
 | 
						|
 | 
						|
async function main() {
 | 
						|
    const initializedPromise = startElectron(() => {
 | 
						|
        // Wait for the import to be finished and the application to be loaded before we listen to changes.
 | 
						|
        setTimeout(() => registerHandlers(), 10_000);
 | 
						|
    });
 | 
						|
 | 
						|
    await initializeTranslations();
 | 
						|
    await initializeDatabase(true);
 | 
						|
    cls.init(async () => {
 | 
						|
        await importData(DEMO_ZIP_DIR_PATH);
 | 
						|
        setOptions();
 | 
						|
        initializedPromise.resolve();
 | 
						|
    });
 | 
						|
 | 
						|
    initializedPromise.resolve();
 | 
						|
}
 | 
						|
 | 
						|
async function setOptions() {
 | 
						|
    const optionsService = (await import("@triliumnext/server/src/services/options.js")).default;
 | 
						|
    optionsService.setOption("eraseUnusedAttachmentsAfterSeconds", 10);
 | 
						|
    optionsService.setOption("eraseUnusedAttachmentsAfterTimeScale", 60);
 | 
						|
    optionsService.setOption("compressImages", "false");
 | 
						|
}
 | 
						|
 | 
						|
async function registerHandlers() {
 | 
						|
    const events = (await import("@triliumnext/server/src/services/events.js")).default;
 | 
						|
    const eraseService = (await import("@triliumnext/server/src/services/erase.js")).default;
 | 
						|
    const debouncer = debounce(async () => {
 | 
						|
        console.log("Exporting data");
 | 
						|
        eraseService.eraseUnusedAttachmentsNow();
 | 
						|
        await exportData();
 | 
						|
 | 
						|
        await fs.rmdir(DEMO_ZIP_DIR_PATH, { recursive: true }).catch(() => {});
 | 
						|
        await extractZip(DEMO_ZIP_PATH, DEMO_ZIP_DIR_PATH);
 | 
						|
    }, 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("@triliumnext/server/src/services/export/zip.js")).default;
 | 
						|
    await exportToZipFile("root", "html", DEMO_ZIP_PATH);
 | 
						|
}
 | 
						|
 | 
						|
main();
 |