mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-14 04:48:40 -09:00
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import type {BrowserWindow, MenuItemConstructorOptions} from 'electron';
|
|
|
|
const viewMenu = (
|
|
commandKeys: Record<string, string>,
|
|
execCommand: (command: string, focusedWindow?: BrowserWindow) => void
|
|
): MenuItemConstructorOptions => {
|
|
return {
|
|
label: 'View',
|
|
submenu: [
|
|
{
|
|
label: 'Reload',
|
|
accelerator: commandKeys['window:reload'],
|
|
click(item, focusedWindow) {
|
|
execCommand('window:reload', focusedWindow);
|
|
}
|
|
},
|
|
{
|
|
label: 'Full Reload',
|
|
accelerator: commandKeys['window:reloadFull'],
|
|
click(item, focusedWindow) {
|
|
execCommand('window:reloadFull', focusedWindow);
|
|
}
|
|
},
|
|
{
|
|
label: 'Developer Tools',
|
|
accelerator: commandKeys['window:devtools'],
|
|
click: (item, focusedWindow) => {
|
|
execCommand('window:devtools', focusedWindow);
|
|
}
|
|
},
|
|
{
|
|
type: 'separator'
|
|
},
|
|
{
|
|
label: 'Reset Zoom Level',
|
|
accelerator: commandKeys['zoom:reset'],
|
|
click(item, focusedWindow) {
|
|
execCommand('zoom:reset', focusedWindow);
|
|
}
|
|
},
|
|
{
|
|
label: 'Zoom In',
|
|
accelerator: commandKeys['zoom:in'],
|
|
click(item, focusedWindow) {
|
|
execCommand('zoom:in', focusedWindow);
|
|
}
|
|
},
|
|
{
|
|
label: 'Zoom Out',
|
|
accelerator: commandKeys['zoom:out'],
|
|
click(item, focusedWindow) {
|
|
execCommand('zoom:out', focusedWindow);
|
|
}
|
|
}
|
|
]
|
|
};
|
|
};
|
|
|
|
export default viewMenu;
|