mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
"use strict";
|
|
|
|
import sqlInit from "../services/sql_init.js";
|
|
import setupService from "../services/setup.js";
|
|
import utils from "../services/utils.js";
|
|
import assetPath from "../services/asset_path.js";
|
|
import appPath from "../services/app_path.js";
|
|
import { Request, Response } from 'express';
|
|
|
|
function setupPage(req: Request, res: Response) {
|
|
if (sqlInit.isDbInitialized()) {
|
|
if (utils.isElectron()) {
|
|
handleElectronRedirect();
|
|
} else {
|
|
res.redirect('.');
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
// we got here because DB is not completely initialized, so if schema exists,
|
|
// it means we're in "sync in progress" state.
|
|
const syncInProgress = sqlInit.schemaExists();
|
|
|
|
if (syncInProgress) {
|
|
// trigger sync if it's not already running
|
|
setupService.triggerSync();
|
|
}
|
|
|
|
res.render('setup', {
|
|
syncInProgress: syncInProgress,
|
|
assetPath: assetPath,
|
|
appPath: appPath
|
|
});
|
|
}
|
|
|
|
async function handleElectronRedirect() {
|
|
const windowService = (await import("../services/window.js")).default;
|
|
const { app } = await import("electron");
|
|
windowService.createMainWindow(app);
|
|
windowService.closeSetupWindow();
|
|
}
|
|
|
|
export default {
|
|
setupPage
|
|
};
|