121 lines
3.4 KiB
TypeScript
121 lines
3.4 KiB
TypeScript
import { app, BrowserWindow, globalShortcut, ipcMain, Menu, nativeImage, screen, Tray } from "electron";
|
|
import contextMenu from "electron-context-menu";
|
|
import { join } from "path";
|
|
import initI18n from "./i18n.js";
|
|
import { createMainWindow, createSettingsWindow } from "./createWindow.js";
|
|
import { initDatabase } from "./backend/init.js";
|
|
import { Database } from "better-sqlite3";
|
|
import { startScreenshotLoop } from "./backend/screenshot.js";
|
|
import { __dirname } from "./dirname.js";
|
|
import { hideDock } from "./utils/electron.js";
|
|
import { checkFramesForEncoding, deleteEncodedScreenshots, processEncodingTasks } from "./backend/encoding.js";
|
|
import honoApp from "./server/index.js";
|
|
import { serve } from "@hono/node-server";
|
|
import { findAvailablePort } from "./utils/server.js";
|
|
import cache from "memory-cache";
|
|
import { generate } from '@alikia/random-key';
|
|
|
|
const i18n = initI18n();
|
|
|
|
const t = i18n.t.bind(i18n);
|
|
const port = process.env.PORT || "5173";
|
|
const dev = !app.isPackaged;
|
|
|
|
let tray: null | Tray = null;
|
|
let dbConnection: null | Database = null;
|
|
let screenshotInterval: null | NodeJS.Timeout = null;
|
|
|
|
let mainWindow: BrowserWindow | null;
|
|
let settingsWindow: BrowserWindow | null;
|
|
|
|
function createTray() {
|
|
const pathRoot: string = dev ? "./src/electron/assets/" : join(__dirname, "./assets/");
|
|
const icon = nativeImage.createFromPath(pathRoot + "TrayIconTemplate@2x.png");
|
|
icon.resize({ width: 32, height: 32 });
|
|
tray = new Tray(pathRoot + "TrayIcon.png");
|
|
tray.setImage(icon);
|
|
|
|
const contextMenu = Menu.buildFromTemplate([
|
|
{
|
|
label: t("tray.showMainWindow"),
|
|
click: () => {
|
|
const display = screen.getPrimaryDisplay();
|
|
const { width, height } = display.bounds;
|
|
mainWindow!.show();
|
|
mainWindow!.setAlwaysOnTop(true, "screen-saver");
|
|
mainWindow!.setBounds({ x: 0, y: 0, width, height });
|
|
mainWindow!.focus();
|
|
}
|
|
},
|
|
{
|
|
label: t("tray.showSettingsWindow"),
|
|
click: () => {
|
|
settingsWindow!.show();
|
|
}
|
|
},
|
|
{ type: "separator" },
|
|
{
|
|
label: t("tray.quit"),
|
|
click: () => {
|
|
app.exit();
|
|
}
|
|
}
|
|
]);
|
|
|
|
tray.setContextMenu(contextMenu);
|
|
tray.setToolTip("OpenRewind");
|
|
}
|
|
|
|
contextMenu({
|
|
showLookUpSelection: true,
|
|
showSearchWithGoogle: true,
|
|
showCopyImage: true
|
|
});
|
|
|
|
app.once("ready", () => {
|
|
hideDock();
|
|
});
|
|
app.on("activate", () => {
|
|
});
|
|
|
|
app.on("ready", () => {
|
|
createTray();
|
|
findAvailablePort(12412).then((port) => {
|
|
generate().then((key) => {
|
|
cache.put("server:APIKey",key);
|
|
cache.put("server:port", port);
|
|
if (dev)
|
|
console.log(`API Key: ${key}`);
|
|
serve({ fetch: honoApp.fetch, port: port });
|
|
console.log(`App server running on port ${port}`);
|
|
});
|
|
})
|
|
initDatabase().then((db) => {
|
|
screenshotInterval = startScreenshotLoop(db);
|
|
setInterval(checkFramesForEncoding, 5000, db);
|
|
setInterval(processEncodingTasks, 10000, db);
|
|
setInterval(deleteEncodedScreenshots, 5000, db);
|
|
dbConnection = db;
|
|
cache.put("server:dbConnection", dbConnection);
|
|
});
|
|
mainWindow = createMainWindow(port, () => (mainWindow = null));
|
|
settingsWindow = createSettingsWindow(port, () => (settingsWindow = null));
|
|
globalShortcut.register("Escape", () => {
|
|
if (!mainWindow || !mainWindow.isVisible()) return;
|
|
mainWindow.hide();
|
|
});
|
|
});
|
|
|
|
app.on("will-quit", () => {
|
|
dbConnection?.close();
|
|
if (screenshotInterval)
|
|
clearInterval(screenshotInterval);
|
|
});
|
|
|
|
// app.on("window-all-closed", () => {
|
|
// if (process.platform !== "darwin") app.quit();
|
|
// });
|
|
|
|
ipcMain.on("close-settings", () => {
|
|
settingsWindow?.hide();
|
|
}); |