mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 20:20:21 +01:00
188 lines
4.6 KiB
TypeScript
188 lines
4.6 KiB
TypeScript
/*
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
Copyright (C) 2023 Streetwriters (Private) Limited
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { strings } from "@notesnook/intl";
|
|
import { Menu, MenuItem, clipboard, shell } from "electron";
|
|
|
|
function setupMenu() {
|
|
if (!globalThis.window) return;
|
|
|
|
globalThis.window.webContents.on("context-menu", (_event, params) => {
|
|
const menu = new Menu();
|
|
|
|
// Add each spelling suggestion
|
|
for (const suggestion of params.dictionarySuggestions) {
|
|
menu.append(
|
|
new MenuItem({
|
|
label: suggestion,
|
|
click: () =>
|
|
globalThis.window?.webContents.replaceMisspelling(suggestion)
|
|
})
|
|
);
|
|
}
|
|
|
|
// Allow users to add the misspelled word to the dictionary
|
|
if (params.misspelledWord) {
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.addToDictionary(),
|
|
click: () =>
|
|
globalThis.window?.webContents.session.addWordToSpellCheckerDictionary(
|
|
params.misspelledWord
|
|
)
|
|
})
|
|
);
|
|
}
|
|
|
|
if (menu.items.length > 0)
|
|
menu.append(
|
|
new MenuItem({
|
|
type: "separator"
|
|
})
|
|
);
|
|
|
|
if (params.linkURL.length) {
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.openInBrowser(),
|
|
click: () => shell.openExternal(params.linkURL)
|
|
})
|
|
);
|
|
}
|
|
|
|
if (params.isEditable) {
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.undo(),
|
|
role: "undo",
|
|
enabled: params.isEditable,
|
|
accelerator: "CommandOrControl+Z"
|
|
})
|
|
);
|
|
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.redo(),
|
|
role: "redo",
|
|
enabled: params.isEditable,
|
|
accelerator: "CommandOrControl+Y"
|
|
})
|
|
);
|
|
|
|
menu.append(
|
|
new MenuItem({
|
|
type: "separator"
|
|
})
|
|
);
|
|
}
|
|
|
|
if (params.isEditable)
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.cut(),
|
|
role: "cut",
|
|
enabled: params.selectionText.length > 0,
|
|
accelerator: "CommandOrControl+X"
|
|
})
|
|
);
|
|
|
|
if (params.linkURL?.length) {
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.copyLink(),
|
|
click() {
|
|
clipboard.writeText(params.linkURL);
|
|
}
|
|
})
|
|
);
|
|
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.copyLinkText(),
|
|
click() {
|
|
clipboard.writeText(params.linkText);
|
|
}
|
|
})
|
|
);
|
|
}
|
|
|
|
if (params.selectionText.length) {
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.copy(),
|
|
role: "copy",
|
|
accelerator: "CommandOrControl+C"
|
|
})
|
|
);
|
|
}
|
|
|
|
if (params.mediaType === "image")
|
|
menu.append(
|
|
new MenuItem({
|
|
id: "copy-image",
|
|
label: strings.copyImage(),
|
|
click() {
|
|
globalThis.window?.webContents.copyImageAt(params.x, params.y);
|
|
}
|
|
})
|
|
);
|
|
|
|
if (params.isEditable) {
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.paste(),
|
|
role: "paste",
|
|
enabled: clipboard.readText("clipboard").length > 0,
|
|
accelerator: "CommandOrControl+V"
|
|
})
|
|
);
|
|
|
|
menu.append(
|
|
new MenuItem({
|
|
label:
|
|
process.platform === "darwin"
|
|
? strings.pasteAndMatchStyle()
|
|
: strings.pasteWithoutFormatting(),
|
|
role: "pasteAndMatchStyle",
|
|
enabled: clipboard.readText("clipboard").length > 0,
|
|
accelerator:
|
|
process.platform === "darwin"
|
|
? "Option+Shift+Command+V"
|
|
: "Shift+CommandOrControl+V"
|
|
})
|
|
);
|
|
|
|
menu.append(
|
|
new MenuItem({
|
|
type: "separator"
|
|
})
|
|
);
|
|
menu.append(
|
|
new MenuItem({
|
|
label: strings.spellCheck(),
|
|
role: "toggleSpellChecker"
|
|
})
|
|
);
|
|
}
|
|
|
|
if (menu.items.length > 0) menu.popup();
|
|
});
|
|
}
|
|
export { setupMenu };
|