mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 18:21:47 +00:00
87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
import is from 'electron-is';
|
|
|
|
import {BrowserWindow, MenuItem} from 'electron';
|
|
|
|
import { snakeToCamel, ToastStyles, urgencyLevels } from './utils';
|
|
|
|
import config from './config';
|
|
|
|
import type { ConfigType } from '../../config/dynamic';
|
|
|
|
export default (_win: BrowserWindow, options: ConfigType<'notifications'>) => [
|
|
...(is.linux()
|
|
? [
|
|
{
|
|
label: 'Notification Priority',
|
|
submenu: urgencyLevels.map((level) => ({
|
|
label: level.name,
|
|
type: 'radio',
|
|
checked: options.urgency === level.value,
|
|
click: () => config.set('urgency', level.value),
|
|
})),
|
|
},
|
|
]
|
|
: []),
|
|
...(is.windows()
|
|
? [
|
|
{
|
|
label: 'Interactive Notifications',
|
|
type: 'checkbox',
|
|
checked: options.interactive,
|
|
// Doesn't update until restart
|
|
click: (item: MenuItem) => config.setAndMaybeRestart('interactive', item.checked),
|
|
},
|
|
{
|
|
// Submenu with settings for interactive notifications (name shouldn't be too long)
|
|
label: 'Interactive Settings',
|
|
submenu: [
|
|
{
|
|
label: 'Open/Close on tray click',
|
|
type: 'checkbox',
|
|
checked: options.trayControls,
|
|
click: (item: MenuItem) => config.set('trayControls', item.checked),
|
|
},
|
|
{
|
|
label: 'Hide Button Text',
|
|
type: 'checkbox',
|
|
checked: options.hideButtonText,
|
|
click: (item: MenuItem) => config.set('hideButtonText', item.checked),
|
|
},
|
|
{
|
|
label: 'Refresh on Play/Pause',
|
|
type: 'checkbox',
|
|
checked: options.refreshOnPlayPause,
|
|
click: (item: MenuItem) => config.set('refreshOnPlayPause', item.checked),
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'Style',
|
|
submenu: getToastStyleMenuItems(options),
|
|
},
|
|
]
|
|
: []),
|
|
{
|
|
label: 'Show notification on unpause',
|
|
type: 'checkbox',
|
|
checked: options.unpauseNotification,
|
|
click: (item: MenuItem) => config.set('unpauseNotification', item.checked),
|
|
},
|
|
];
|
|
|
|
export function getToastStyleMenuItems(options: ConfigType<'notifications'>) {
|
|
const array = Array.from({ length: Object.keys(ToastStyles).length });
|
|
|
|
// ToastStyles index starts from 1
|
|
for (const [name, index] of Object.entries(ToastStyles)) {
|
|
array[index - 1] = {
|
|
label: snakeToCamel(name),
|
|
type: 'radio',
|
|
checked: options.toastStyle === index,
|
|
click: () => config.set('toastStyle', index),
|
|
};
|
|
}
|
|
|
|
return array;
|
|
}
|