266 lines
7.8 KiB
JavaScript
266 lines
7.8 KiB
JavaScript
import "dotenv/config";
|
|
import { electronApp, optimizer, is } from "@electron-toolkit/utils";
|
|
import { app, ipcMain, BrowserWindow, shell } from "electron";
|
|
import filesystemPlugin from "@takerofnotes/plugin-filesystem";
|
|
import supabasePlugin from "@takerofnotes/plugin-supabase";
|
|
import fs from "fs/promises";
|
|
import path, { join } from "path";
|
|
import { Index } from "flexsearch";
|
|
import crypto from "crypto";
|
|
import __cjs_mod__ from "node:module";
|
|
const __filename = import.meta.filename;
|
|
const __dirname = import.meta.dirname;
|
|
const require2 = __cjs_mod__.createRequire(import.meta.url);
|
|
class PluginRegistry {
|
|
constructor() {
|
|
this.plugins = /* @__PURE__ */ new Map();
|
|
}
|
|
register(plugin) {
|
|
if (!plugin.id) {
|
|
throw new Error("Plugin must have an id");
|
|
}
|
|
this.plugins.set(plugin.id, plugin);
|
|
}
|
|
get(id) {
|
|
return this.plugins.get(id);
|
|
}
|
|
list() {
|
|
return Array.from(this.plugins.values());
|
|
}
|
|
}
|
|
const USER_DATA_STRING = "__DEFAULT_USER_DATA__";
|
|
class PluginConfig {
|
|
constructor(defaultPlugin) {
|
|
this.defaultPlugin = defaultPlugin;
|
|
this.configPath = path.join(app.getPath("userData"), "config.json");
|
|
}
|
|
// Helper to replace placeholders with dynamic values, recursively
|
|
_resolveDefaults(config) {
|
|
if (Array.isArray(config)) {
|
|
return config.map((item) => this._resolveDefaults(item));
|
|
} else if (config && typeof config === "object") {
|
|
const resolved = {};
|
|
for (const [key, value] of Object.entries(config)) {
|
|
resolved[key] = this._resolveDefaults(value);
|
|
}
|
|
return resolved;
|
|
} else if (typeof config === "string" && config.includes(USER_DATA_STRING)) {
|
|
return config.replace(USER_DATA_STRING, app.getPath("userData"));
|
|
} else {
|
|
return config;
|
|
}
|
|
}
|
|
async load() {
|
|
let parsed;
|
|
try {
|
|
const raw = await fs.readFile(this.configPath, "utf8");
|
|
parsed = JSON.parse(raw);
|
|
} catch (err) {
|
|
parsed = null;
|
|
}
|
|
if (!parsed || !parsed.activeAdapter) {
|
|
const defaultConfig = {};
|
|
for (const field of this.defaultPlugin.configSchema) {
|
|
defaultConfig[field.key] = field.default ?? null;
|
|
}
|
|
parsed = {
|
|
activeAdapter: this.defaultPlugin.id,
|
|
adapterConfig: defaultConfig
|
|
};
|
|
await this.write(parsed);
|
|
} else {
|
|
parsed.adapterConfig = this._resolveDefaults(parsed.adapterConfig);
|
|
}
|
|
return parsed;
|
|
}
|
|
async write(configObject) {
|
|
const dir = path.dirname(this.configPath);
|
|
await fs.mkdir(dir, { recursive: true });
|
|
const resolvedConfig = {
|
|
...configObject,
|
|
adapterConfig: this._resolveDefaults(configObject.adapterConfig)
|
|
};
|
|
await fs.writeFile(
|
|
this.configPath,
|
|
JSON.stringify(resolvedConfig, null, 2),
|
|
"utf8"
|
|
);
|
|
}
|
|
}
|
|
class NotesAPI {
|
|
constructor(adapter) {
|
|
if (!adapter) {
|
|
throw new Error("NotesAPI requires a storage adapter");
|
|
}
|
|
this.adapter = adapter;
|
|
this.notesCache = /* @__PURE__ */ new Map();
|
|
this.index = new Index({
|
|
tokenize: "tolerant",
|
|
resolution: 9
|
|
});
|
|
}
|
|
async init() {
|
|
await this.adapter.init();
|
|
const notes = await this.adapter.getAll();
|
|
for (const note of notes) {
|
|
this.notesCache.set(note.id, note);
|
|
this.index.add(note.id, note.title + "\n" + note.content);
|
|
}
|
|
}
|
|
/* -----------------------
|
|
Public API
|
|
------------------------*/
|
|
getCategories() {
|
|
const categories = /* @__PURE__ */ new Set();
|
|
for (const note of this.notesCache.values()) {
|
|
if (note.category) {
|
|
categories.add(note.category);
|
|
}
|
|
}
|
|
return Array.from(categories).sort();
|
|
}
|
|
getCategoryNotes(categoryName) {
|
|
return Array.from(this.notesCache.values()).filter((n) => n.category === categoryName).sort((a, b) => new Date(b.updatedAt) - new Date(a.updatedAt));
|
|
}
|
|
getNote(id) {
|
|
return this.notesCache.get(id) ?? null;
|
|
}
|
|
async createNote(metadata = {}, content = "") {
|
|
const id = crypto.randomUUID();
|
|
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
const note = {
|
|
id,
|
|
title: metadata.title || "Untitled",
|
|
category: metadata.category || null,
|
|
createdAt: now,
|
|
updatedAt: now,
|
|
content
|
|
};
|
|
this.notesCache.set(id, note);
|
|
this.index.add(id, note.title + "\n" + content);
|
|
await this.adapter.create(note);
|
|
return note;
|
|
}
|
|
async deleteNote(id) {
|
|
await this.adapter.delete(id);
|
|
this.notesCache.delete(id);
|
|
this.index.remove(id);
|
|
}
|
|
async updateNote(id, content) {
|
|
const note = this.notesCache.get(id);
|
|
if (!note) throw new Error("Note not found");
|
|
note.content = content;
|
|
note.updatedAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
this.index.update(id, note.title + "\n" + content);
|
|
await this.adapter.update(note);
|
|
return note;
|
|
}
|
|
async updateNoteMetadata(id, updates = {}) {
|
|
const note = this.notesCache.get(id);
|
|
if (!note) throw new Error("Note not found");
|
|
const allowedFields = ["title", "category"];
|
|
for (const key of Object.keys(updates)) {
|
|
if (!allowedFields.includes(key)) {
|
|
throw new Error(`Invalid metadata field: ${key}`);
|
|
}
|
|
}
|
|
if (updates.title !== void 0) {
|
|
note.title = updates.title;
|
|
}
|
|
if (updates.category !== void 0) {
|
|
note.category = updates.category;
|
|
}
|
|
note.updatedAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
this.index.update(id, note.title + "\n" + note.content);
|
|
await this.adapter.update(note);
|
|
return note;
|
|
}
|
|
search(query) {
|
|
const ids = this.index.search(query);
|
|
return ids.map((id) => this.notesCache.get(id));
|
|
}
|
|
}
|
|
const preloadPath = join(__dirname, "../preload/index.mjs");
|
|
const rendererPath = join(__dirname, "../renderer/index.html");
|
|
function createWindow() {
|
|
const mainWindow2 = new BrowserWindow({
|
|
width: 354,
|
|
height: 549,
|
|
show: false,
|
|
autoHideMenuBar: true,
|
|
webPreferences: {
|
|
preload: preloadPath,
|
|
sandbox: false
|
|
}
|
|
});
|
|
mainWindow2.on("ready-to-show", () => {
|
|
mainWindow2.show();
|
|
});
|
|
mainWindow2.webContents.setWindowOpenHandler((details) => {
|
|
shell.openExternal(details.url);
|
|
return { action: "deny" };
|
|
});
|
|
if (is.dev && process.env["ELECTRON_RENDERER_URL"]) {
|
|
mainWindow2.loadURL(process.env["ELECTRON_RENDERER_URL"]);
|
|
} else {
|
|
mainWindow2.loadFile(rendererPath);
|
|
}
|
|
}
|
|
function createNoteWindow(noteId) {
|
|
const noteWindow = new BrowserWindow({
|
|
width: 354,
|
|
height: 549,
|
|
autoHideMenuBar: true,
|
|
webPreferences: {
|
|
preload: preloadPath,
|
|
contextIsolation: true,
|
|
nodeIntegration: false,
|
|
sandbox: false
|
|
}
|
|
});
|
|
if (is.dev && process.env["ELECTRON_RENDERER_URL"]) {
|
|
noteWindow.loadURL(
|
|
`${process.env["ELECTRON_RENDERER_URL"]}/note/${noteId}`
|
|
);
|
|
} else {
|
|
mainWindow.loadFile(rendererPath, {
|
|
path: `/notes/${noteId}`
|
|
});
|
|
}
|
|
}
|
|
app.whenReady().then(async () => {
|
|
ipcMain.on("open-note-window", (_, noteId) => {
|
|
createNoteWindow(noteId);
|
|
});
|
|
const registry = new PluginRegistry();
|
|
registry.register(filesystemPlugin);
|
|
registry.register(supabasePlugin);
|
|
await new PluginConfig(filesystemPlugin).load();
|
|
const plugin = registry.get(supabasePlugin.id);
|
|
const adapter = plugin.createAdapter({
|
|
supabaseKey: process.env.SUPABASE_KEY,
|
|
supabaseUrl: process.env.SUPABASE_URL
|
|
});
|
|
const notesAPI = new NotesAPI(adapter);
|
|
await notesAPI.init();
|
|
ipcMain.handle("notesAPI:call", (_, method, args) => {
|
|
if (!notesAPI[method]) {
|
|
throw new Error("Invalid method");
|
|
}
|
|
return notesAPI[method](...args);
|
|
});
|
|
electronApp.setAppUserModelId("com.electron");
|
|
app.on("browser-window-created", (_, window) => {
|
|
optimizer.watchWindowShortcuts(window);
|
|
});
|
|
createWindow();
|
|
app.on("activate", function() {
|
|
if (BrowserWindow.getAllWindows().length === 0) createWindow();
|
|
});
|
|
});
|
|
app.on("window-all-closed", () => {
|
|
if (process.platform !== "darwin") {
|
|
app.quit();
|
|
}
|
|
});
|