mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 19:16:10 +00:00
01fc5f1a89
* Start splitting networks into their own reducers * Split out nodes and networks into their own reducers * Cleanup file structure * Make selectors for new state * Change custom network typing * re-type repo * Fix up components to use selectors, work on fixing sagas * Provide consistency in naming, fix more sagas * Get non web3 node switching working * Split config rehydration off into a different file for store * Inline auth for custom nodes * Include typing for app state * moar selectors * Get web3 working + cleanup sagas * Cleanup tsc errors * Use forof loop instead of foreach for clearing pruning custom networks * Add reducer tests for new redux state * Export needed variables * Add console error * Remove old comment * Work on saga tests * Get passing existing saga tests * Fix more tests * Remove irrlevant tests * add console error * Get rest of tests passing * Fix merge errors * Remove random text * Fix store saving * Fix selector lib only grabbing from static nodes * Fix custom node removal crashing app * Infer selected network via node * Prune custom networks properly on node removal * Infer network name from chainid from selecting state * Cleanup tsc errors * Remove MEW nodes for main and testnet
83 lines
1.6 KiB
TypeScript
83 lines
1.6 KiB
TypeScript
import { MenuItemConstructorOptions, shell } from 'electron';
|
|
import { APP_TITLE, REPOSITORY } from '../constants';
|
|
|
|
const MENU: MenuItemConstructorOptions[] = [
|
|
{
|
|
label: 'Edit',
|
|
submenu: [
|
|
{ role: 'undo' },
|
|
{ role: 'redo' },
|
|
{ type: 'separator' },
|
|
{ role: 'cut' },
|
|
{ role: 'copy' },
|
|
{ role: 'paste' },
|
|
{ role: 'pasteandmatchstyle' },
|
|
{ role: 'delete' },
|
|
{ role: 'selectall' }
|
|
]
|
|
},
|
|
{
|
|
label: 'View',
|
|
submenu: [
|
|
{ role: 'reload' },
|
|
{ role: 'forcereload' },
|
|
{ type: 'separator' },
|
|
{ role: 'resetzoom' },
|
|
{ role: 'zoomin' },
|
|
{ role: 'zoomout' },
|
|
{ role: 'togglefullscreen' },
|
|
{ type: 'separator' },
|
|
{ role: 'toggledevtools' }
|
|
]
|
|
}
|
|
];
|
|
|
|
const HELP_MENU = {
|
|
role: 'help',
|
|
submenu: [
|
|
{
|
|
label: 'Help / FAQ',
|
|
click() {
|
|
shell.openExternal('https://support.mycrypto.com/');
|
|
}
|
|
},
|
|
{
|
|
label: 'Report a Bug',
|
|
click() {
|
|
shell.openExternal(`${REPOSITORY}/issues/new`);
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
if (process.platform === 'darwin') {
|
|
MENU.unshift({
|
|
label: APP_TITLE,
|
|
submenu: [
|
|
{ role: 'about' },
|
|
{ type: 'separator' },
|
|
{ role: 'hide' },
|
|
{ role: 'hideothers' },
|
|
{ role: 'unhide' },
|
|
{ type: 'separator' },
|
|
{ role: 'quit' }
|
|
]
|
|
});
|
|
|
|
// Modified help menu
|
|
MENU.push({
|
|
...HELP_MENU,
|
|
submenu: [
|
|
...HELP_MENU.submenu,
|
|
{
|
|
label: 'Speech',
|
|
submenu: [{ role: 'startspeaking' }, { role: 'stopspeaking' }]
|
|
}
|
|
]
|
|
});
|
|
} else {
|
|
MENU.push(HELP_MENU);
|
|
}
|
|
|
|
export default MENU;
|