You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
240 lines
4.8 KiB
TypeScript
240 lines
4.8 KiB
TypeScript
3 years ago
|
import { LocaleMessagesType } from './locale';
|
||
|
|
||
|
import { isString } from 'lodash';
|
||
|
|
||
|
// tslint:disable-next-line: max-func-body-length
|
||
|
export const createTemplate = (
|
||
|
options: {
|
||
|
openReleaseNotes: () => void;
|
||
|
openSupportPage: () => void;
|
||
|
platform: () => void;
|
||
|
showAbout: () => void;
|
||
|
showDebugLog: () => void;
|
||
|
showWindow: () => void;
|
||
|
},
|
||
|
messages: LocaleMessagesType
|
||
|
) => {
|
||
7 years ago
|
if (!isString(options.platform)) {
|
||
|
throw new TypeError('`options.platform` must be a string');
|
||
|
}
|
||
|
|
||
7 years ago
|
const {
|
||
7 years ago
|
openReleaseNotes,
|
||
7 years ago
|
openSupportPage,
|
||
7 years ago
|
platform,
|
||
7 years ago
|
showAbout,
|
||
|
showDebugLog,
|
||
3 years ago
|
showWindow,
|
||
7 years ago
|
} = options;
|
||
8 years ago
|
|
||
7 years ago
|
const template = [
|
||
|
{
|
||
4 years ago
|
label: messages.mainMenuFile,
|
||
7 years ago
|
submenu: [
|
||
|
{
|
||
|
type: 'separator',
|
||
|
},
|
||
|
{
|
||
|
role: 'quit',
|
||
4 years ago
|
label: messages.appMenuQuit,
|
||
7 years ago
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.mainMenuEdit,
|
||
7 years ago
|
submenu: [
|
||
|
{
|
||
|
role: 'undo',
|
||
4 years ago
|
label: messages.editMenuUndo,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
role: 'redo',
|
||
4 years ago
|
label: messages.editMenuRedo,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
type: 'separator',
|
||
|
},
|
||
|
{
|
||
|
role: 'cut',
|
||
4 years ago
|
label: messages.editMenuCut,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
role: 'copy',
|
||
4 years ago
|
label: messages.editMenuCopy,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
role: 'paste',
|
||
4 years ago
|
label: messages.editMenuPaste,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
role: 'delete',
|
||
3 years ago
|
label: messages.delete,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
role: 'selectall',
|
||
4 years ago
|
label: messages.editMenuSelectAll,
|
||
7 years ago
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.mainMenuView,
|
||
7 years ago
|
submenu: [
|
||
|
{
|
||
|
role: 'resetzoom',
|
||
4 years ago
|
label: messages.viewMenuResetZoom,
|
||
7 years ago
|
},
|
||
|
{
|
||
6 years ago
|
accelerator: platform === 'darwin' ? 'Command+=' : 'Control+Plus',
|
||
7 years ago
|
role: 'zoomin',
|
||
4 years ago
|
label: messages.viewMenuZoomIn,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
role: 'zoomout',
|
||
4 years ago
|
label: messages.viewMenuZoomOut,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
type: 'separator',
|
||
|
},
|
||
|
{
|
||
|
role: 'togglefullscreen',
|
||
4 years ago
|
label: messages.viewMenuToggleFullScreen,
|
||
7 years ago
|
},
|
||
|
{
|
||
|
type: 'separator',
|
||
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.debugLog,
|
||
7 years ago
|
click: showDebugLog,
|
||
|
},
|
||
|
{
|
||
|
type: 'separator',
|
||
|
},
|
||
|
{
|
||
|
role: 'toggledevtools',
|
||
4 years ago
|
label: messages.viewMenuToggleDevTools,
|
||
7 years ago
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.mainMenuWindow,
|
||
7 years ago
|
role: 'window',
|
||
|
submenu: [
|
||
|
{
|
||
|
role: 'minimize',
|
||
4 years ago
|
label: messages.windowMenuMinimize,
|
||
7 years ago
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.mainMenuHelp,
|
||
7 years ago
|
role: 'help',
|
||
|
submenu: [
|
||
|
{
|
||
4 years ago
|
label: messages.goToReleaseNotes,
|
||
7 years ago
|
click: openReleaseNotes,
|
||
|
},
|
||
|
{
|
||
|
type: 'separator',
|
||
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.goToSupportPage,
|
||
7 years ago
|
click: openSupportPage,
|
||
|
},
|
||
|
{
|
||
|
type: 'separator',
|
||
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.about,
|
||
7 years ago
|
click: showAbout,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|
||
8 years ago
|
|
||
7 years ago
|
if (platform === 'darwin') {
|
||
3 years ago
|
return updateForMac(template, messages, {
|
||
|
showAbout: showAbout,
|
||
|
showWindow: showWindow,
|
||
|
});
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
return template;
|
||
7 years ago
|
};
|
||
8 years ago
|
|
||
3 years ago
|
function updateForMac(
|
||
|
template: any,
|
||
|
messages: LocaleMessagesType,
|
||
|
options: { showAbout: () => void; showWindow: () => void }
|
||
|
) {
|
||
|
const { showAbout, showWindow } = options;
|
||
8 years ago
|
|
||
|
// Remove About item and separator from Help menu, since it's on the first menu
|
||
|
template[4].submenu.pop();
|
||
|
template[4].submenu.pop();
|
||
|
|
||
7 years ago
|
// Remove File menu
|
||
8 years ago
|
template.shift();
|
||
7 years ago
|
|
||
|
// Add the OSX-specific Signal Desktop menu at the far left
|
||
8 years ago
|
template.unshift({
|
||
4 years ago
|
label: messages.sessionMessenger,
|
||
8 years ago
|
submenu: [
|
||
|
{
|
||
4 years ago
|
label: messages.about,
|
||
8 years ago
|
click: showAbout,
|
||
8 years ago
|
},
|
||
|
{
|
||
8 years ago
|
type: 'separator',
|
||
8 years ago
|
},
|
||
7 years ago
|
{
|
||
|
type: 'separator',
|
||
|
},
|
||
8 years ago
|
{
|
||
4 years ago
|
label: messages.appMenuHide,
|
||
8 years ago
|
role: 'hide',
|
||
8 years ago
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.appMenuHideOthers,
|
||
8 years ago
|
role: 'hideothers',
|
||
8 years ago
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.appMenuUnhide,
|
||
8 years ago
|
role: 'unhide',
|
||
8 years ago
|
},
|
||
|
{
|
||
8 years ago
|
type: 'separator',
|
||
8 years ago
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.appMenuQuit,
|
||
8 years ago
|
role: 'quit',
|
||
|
},
|
||
7 years ago
|
],
|
||
8 years ago
|
});
|
||
|
|
||
7 years ago
|
// Replace Window menu
|
||
3 years ago
|
const windowMenuTemplateIndex = 3;
|
||
7 years ago
|
// eslint-disable-next-line no-param-reassign
|
||
7 years ago
|
template[windowMenuTemplateIndex].submenu = [
|
||
8 years ago
|
{
|
||
4 years ago
|
label: messages.windowMenuClose,
|
||
8 years ago
|
accelerator: 'CmdOrCtrl+W',
|
||
8 years ago
|
role: 'close',
|
||
8 years ago
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.windowMenuMinimize,
|
||
8 years ago
|
accelerator: 'CmdOrCtrl+M',
|
||
8 years ago
|
role: 'minimize',
|
||
8 years ago
|
},
|
||
|
{
|
||
4 years ago
|
label: messages.windowMenuZoom,
|
||
8 years ago
|
role: 'zoom',
|
||
8 years ago
|
},
|
||
8 years ago
|
{
|
||
4 years ago
|
label: messages.show,
|
||
8 years ago
|
click: showWindow,
|
||
8 years ago
|
},
|
||
8 years ago
|
];
|
||
|
|
||
|
return template;
|
||
8 years ago
|
}
|