2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { BrowserWindow } from 'electron';
|
|
|
|
import { Menu, clipboard, nativeImage } from 'electron';
|
2021-06-18 17:04:27 +00:00
|
|
|
import { fileURLToPath } from 'url';
|
2023-03-31 22:36:14 +00:00
|
|
|
import * as LocaleMatcher from '@formatjs/intl-localematcher';
|
2020-04-15 20:44:46 +00:00
|
|
|
|
2021-06-18 17:04:27 +00:00
|
|
|
import { maybeParseUrl } from '../ts/util/url';
|
|
|
|
|
2022-06-08 22:00:32 +00:00
|
|
|
import type { MenuListType } from '../ts/types/menu';
|
2023-03-31 22:36:14 +00:00
|
|
|
import type { LocalizerType } from '../ts/types/Util';
|
2023-05-17 17:19:27 +00:00
|
|
|
import { strictAssert } from '../ts/util/assert';
|
|
|
|
|
|
|
|
export const FAKE_DEFAULT_LOCALE = 'en-x-ignore'; // -x- is an extension space for attaching other metadata to the locale
|
|
|
|
|
|
|
|
strictAssert(
|
|
|
|
new Intl.Locale(FAKE_DEFAULT_LOCALE).toString() === FAKE_DEFAULT_LOCALE,
|
|
|
|
"Ensure Intl doesn't change our fake locale ever"
|
|
|
|
);
|
2021-06-18 17:04:27 +00:00
|
|
|
|
|
|
|
export function getLanguages(
|
2023-03-31 22:36:14 +00:00
|
|
|
preferredSystemLocales: ReadonlyArray<string>,
|
|
|
|
availableLocales: ReadonlyArray<string>,
|
|
|
|
defaultLocale: string
|
2021-06-18 17:04:27 +00:00
|
|
|
): Array<string> {
|
2023-03-31 22:36:14 +00:00
|
|
|
const matchedLocales = [];
|
|
|
|
|
|
|
|
preferredSystemLocales.forEach(preferredSystemLocale => {
|
|
|
|
const matchedLocale = LocaleMatcher.match(
|
|
|
|
[preferredSystemLocale],
|
|
|
|
availableLocales as Array<string>, // bad types
|
2023-05-17 17:19:27 +00:00
|
|
|
// We don't want to fallback to the default locale right away in case we might
|
|
|
|
// match some other locales first.
|
|
|
|
//
|
|
|
|
// However, we do want to match the default locale in case the user's locales
|
|
|
|
// actually matches it.
|
|
|
|
//
|
|
|
|
// This fake locale allows us to reliably filter it out within the loop.
|
|
|
|
FAKE_DEFAULT_LOCALE,
|
2023-03-31 22:36:14 +00:00
|
|
|
{ algorithm: 'best fit' }
|
|
|
|
);
|
2023-05-17 17:19:27 +00:00
|
|
|
if (matchedLocale !== FAKE_DEFAULT_LOCALE) {
|
2023-03-31 22:36:14 +00:00
|
|
|
matchedLocales.push(matchedLocale);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (matchedLocales.length === 0) {
|
|
|
|
matchedLocales.push(defaultLocale);
|
2020-04-15 20:44:46 +00:00
|
|
|
}
|
|
|
|
|
2023-03-31 22:36:14 +00:00
|
|
|
return matchedLocales;
|
2020-04-15 20:44:46 +00:00
|
|
|
}
|
2020-03-20 21:00:11 +00:00
|
|
|
|
2021-06-18 17:04:27 +00:00
|
|
|
export const setup = (
|
|
|
|
browserWindow: BrowserWindow,
|
2023-03-31 22:36:14 +00:00
|
|
|
preferredSystemLocales: ReadonlyArray<string>,
|
|
|
|
i18n: LocalizerType
|
2021-06-18 17:04:27 +00:00
|
|
|
): void => {
|
2020-03-20 21:00:11 +00:00
|
|
|
const { session } = browserWindow.webContents;
|
2020-04-15 20:44:46 +00:00
|
|
|
const availableLocales = session.availableSpellCheckerLanguages;
|
2023-03-31 22:36:14 +00:00
|
|
|
const languages = getLanguages(
|
|
|
|
preferredSystemLocales,
|
|
|
|
availableLocales,
|
|
|
|
'en'
|
|
|
|
);
|
|
|
|
console.log('spellcheck: user locales:', preferredSystemLocales);
|
2020-04-15 20:44:46 +00:00
|
|
|
console.log(
|
2023-03-31 22:36:14 +00:00
|
|
|
'spellcheck: available spellchecker languages:',
|
2020-04-15 20:44:46 +00:00
|
|
|
availableLocales
|
|
|
|
);
|
2023-03-31 22:36:14 +00:00
|
|
|
console.log('spellcheck: setting languages to:', languages);
|
2020-03-20 21:00:11 +00:00
|
|
|
session.setSpellCheckerLanguages(languages);
|
|
|
|
|
|
|
|
browserWindow.webContents.on('context-menu', (_event, params) => {
|
|
|
|
const { editFlags } = params;
|
|
|
|
const isMisspelled = Boolean(params.misspelledWord);
|
|
|
|
const isLink = Boolean(params.linkURL);
|
2020-11-03 00:47:46 +00:00
|
|
|
const isImage =
|
|
|
|
params.mediaType === 'image' && params.hasImageContents && params.srcURL;
|
|
|
|
const showMenu =
|
|
|
|
params.isEditable || editFlags.canCopy || isLink || isImage;
|
2020-03-20 21:00:11 +00:00
|
|
|
|
|
|
|
// Popup editor menu
|
|
|
|
if (showMenu) {
|
2021-06-18 17:04:27 +00:00
|
|
|
const template: MenuListType = [];
|
2020-03-20 21:00:11 +00:00
|
|
|
|
|
|
|
if (isMisspelled) {
|
|
|
|
if (params.dictionarySuggestions.length > 0) {
|
|
|
|
template.push(
|
|
|
|
...params.dictionarySuggestions.map(label => ({
|
|
|
|
label,
|
|
|
|
click: () => {
|
|
|
|
browserWindow.webContents.replaceMisspelling(label);
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
template.push({
|
2023-03-30 00:03:25 +00:00
|
|
|
label: i18n('icu:contextMenuNoSuggestions'),
|
2020-03-20 21:00:11 +00:00
|
|
|
enabled: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
template.push({ type: 'separator' });
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params.isEditable) {
|
|
|
|
if (editFlags.canUndo) {
|
2023-03-30 00:03:25 +00:00
|
|
|
template.push({ label: i18n('icu:editMenuUndo'), role: 'undo' });
|
2020-03-20 21:00:11 +00:00
|
|
|
}
|
|
|
|
// This is only ever `true` if undo was triggered via the context menu
|
|
|
|
// (not ctrl/cmd+z)
|
|
|
|
if (editFlags.canRedo) {
|
2023-03-30 00:03:25 +00:00
|
|
|
template.push({ label: i18n('icu:editMenuRedo'), role: 'redo' });
|
2020-03-20 21:00:11 +00:00
|
|
|
}
|
|
|
|
if (editFlags.canUndo || editFlags.canRedo) {
|
|
|
|
template.push({ type: 'separator' });
|
|
|
|
}
|
|
|
|
if (editFlags.canCut) {
|
2023-03-30 00:03:25 +00:00
|
|
|
template.push({ label: i18n('icu:editMenuCut'), role: 'cut' });
|
2020-03-20 21:00:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:47:46 +00:00
|
|
|
if (editFlags.canCopy || isLink || isImage) {
|
|
|
|
let click;
|
|
|
|
let label;
|
|
|
|
|
|
|
|
if (isLink) {
|
|
|
|
click = () => {
|
|
|
|
clipboard.writeText(params.linkURL);
|
|
|
|
};
|
2023-03-30 00:03:25 +00:00
|
|
|
label = i18n('icu:contextMenuCopyLink');
|
2020-11-03 00:47:46 +00:00
|
|
|
} else if (isImage) {
|
2023-04-18 22:46:04 +00:00
|
|
|
const urlIsViewOnce =
|
|
|
|
params.srcURL?.includes('/temp/') ||
|
|
|
|
params.srcURL?.includes('\\temp\\');
|
|
|
|
if (urlIsViewOnce) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:47:46 +00:00
|
|
|
click = () => {
|
2021-05-13 17:18:51 +00:00
|
|
|
const parsedSrcUrl = maybeParseUrl(params.srcURL);
|
|
|
|
if (!parsedSrcUrl || parsedSrcUrl.protocol !== 'file:') {
|
2020-11-03 00:47:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const image = nativeImage.createFromPath(
|
2021-06-18 17:04:27 +00:00
|
|
|
fileURLToPath(params.srcURL)
|
2020-11-03 00:47:46 +00:00
|
|
|
);
|
|
|
|
clipboard.writeImage(image);
|
|
|
|
};
|
2023-03-30 00:03:25 +00:00
|
|
|
label = i18n('icu:contextMenuCopyImage');
|
2020-11-03 00:47:46 +00:00
|
|
|
} else {
|
2023-03-30 00:03:25 +00:00
|
|
|
label = i18n('icu:editMenuCopy');
|
2020-11-03 00:47:46 +00:00
|
|
|
}
|
|
|
|
|
2020-03-20 21:00:11 +00:00
|
|
|
template.push({
|
2020-11-03 00:47:46 +00:00
|
|
|
label,
|
|
|
|
role: isLink || isImage ? undefined : 'copy',
|
|
|
|
click,
|
2020-03-20 21:00:11 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:47:46 +00:00
|
|
|
if (editFlags.canPaste && !isImage) {
|
2023-03-30 00:03:25 +00:00
|
|
|
template.push({ label: i18n('icu:editMenuPaste'), role: 'paste' });
|
2020-03-20 21:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:47:46 +00:00
|
|
|
if (editFlags.canPaste && !isImage) {
|
2020-03-20 21:00:11 +00:00
|
|
|
template.push({
|
2023-03-30 00:03:25 +00:00
|
|
|
label: i18n('icu:editMenuPasteAndMatchStyle'),
|
2020-03-20 21:00:11 +00:00
|
|
|
role: 'pasteAndMatchStyle',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only enable select all in editors because select all in non-editors
|
|
|
|
// results in all the UI being selected
|
|
|
|
if (editFlags.canSelectAll && params.isEditable) {
|
|
|
|
template.push({
|
2023-03-30 00:03:25 +00:00
|
|
|
label: i18n('icu:editMenuSelectAll'),
|
2021-06-18 17:04:27 +00:00
|
|
|
role: 'selectAll',
|
2020-03-20 21:00:11 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const menu = Menu.buildFromTemplate(template);
|
2021-06-18 17:04:27 +00:00
|
|
|
menu.popup({
|
|
|
|
window: browserWindow,
|
|
|
|
});
|
2020-03-20 21:00:11 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|