mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 21:12:15 -07:00
87 lines
2.6 KiB
TypeScript
87 lines
2.6 KiB
TypeScript
import React, { useCallback } from 'react';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import AppState from 'App/State/AppState';
|
|
import Icon from 'Components/Icon';
|
|
import Menu from 'Components/Menu/Menu';
|
|
import MenuButton from 'Components/Menu/MenuButton';
|
|
import MenuContent from 'Components/Menu/MenuContent';
|
|
import MenuItem from 'Components/Menu/MenuItem';
|
|
import MenuItemSeparator from 'Components/Menu/MenuItemSeparator';
|
|
import { align, icons, kinds } from 'Helpers/Props';
|
|
import { restart, shutdown } from 'Store/Actions/systemActions';
|
|
import translate from 'Utilities/String/translate';
|
|
import styles from './PageHeaderActionsMenu.css';
|
|
|
|
interface PageHeaderActionsMenuProps {
|
|
onKeyboardShortcutsPress(): void;
|
|
}
|
|
|
|
function PageHeaderActionsMenu(props: PageHeaderActionsMenuProps) {
|
|
const { onKeyboardShortcutsPress } = props;
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
const { authentication, isDocker } = useSelector(
|
|
(state: AppState) => state.system.status.item
|
|
);
|
|
|
|
const formsAuth = authentication === 'forms';
|
|
|
|
const handleRestartPress = useCallback(() => {
|
|
dispatch(restart());
|
|
}, [dispatch]);
|
|
|
|
const handleShutdownPress = useCallback(() => {
|
|
dispatch(shutdown());
|
|
}, [dispatch]);
|
|
|
|
return (
|
|
<div>
|
|
<Menu alignMenu={align.RIGHT}>
|
|
<MenuButton className={styles.menuButton} aria-label="Menu Button">
|
|
<Icon name={icons.INTERACTIVE} title={translate('Menu')} />
|
|
</MenuButton>
|
|
|
|
<MenuContent>
|
|
<MenuItem onPress={onKeyboardShortcutsPress}>
|
|
<Icon className={styles.itemIcon} name={icons.KEYBOARD} />
|
|
{translate('KeyboardShortcuts')}
|
|
</MenuItem>
|
|
|
|
{isDocker ? null : (
|
|
<>
|
|
<MenuItemSeparator />
|
|
|
|
<MenuItem onPress={handleRestartPress}>
|
|
<Icon className={styles.itemIcon} name={icons.RESTART} />
|
|
{translate('Restart')}
|
|
</MenuItem>
|
|
|
|
<MenuItem onPress={handleShutdownPress}>
|
|
<Icon
|
|
className={styles.itemIcon}
|
|
name={icons.SHUTDOWN}
|
|
kind={kinds.DANGER}
|
|
/>
|
|
{translate('Shutdown')}
|
|
</MenuItem>
|
|
</>
|
|
)}
|
|
|
|
{formsAuth ? (
|
|
<>
|
|
<MenuItemSeparator />
|
|
|
|
<MenuItem to={`${window.Lidarr.urlBase}/logout`} noRouter={true}>
|
|
<Icon className={styles.itemIcon} name={icons.LOGOUT} />
|
|
{translate('Logout')}
|
|
</MenuItem>
|
|
</>
|
|
) : null}
|
|
</MenuContent>
|
|
</Menu>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default PageHeaderActionsMenu;
|