mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-01-11 20:10:20 +00:00
138 lines
3.4 KiB
TypeScript
138 lines
3.4 KiB
TypeScript
import { Box, Button, Menu, MenuItem, Typography } from '@mui/material';
|
|
import React from 'react';
|
|
import { messageChannelContext } from '../../provider/MessageChannel';
|
|
import useStore from '../../hooks/useStore';
|
|
import { StoreState } from '../../provider/Store';
|
|
|
|
const MenuBar: React.FC = () => {
|
|
const [openMenu, setMenuOpen] = React.useState<'settings' | 'help' | undefined>();
|
|
const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null);
|
|
const [store, dispatch] = useStore();
|
|
|
|
const messageChannel = React.useContext(messageChannelContext);
|
|
|
|
React.useEffect(() => {
|
|
(async () => {
|
|
if (!messageChannel || store.version !== '') return;
|
|
dispatch({
|
|
type: 'version',
|
|
payload: await messageChannel.version()
|
|
});
|
|
})();
|
|
}, [messageChannel]);
|
|
|
|
const transformService = (service: StoreState['service']) => {
|
|
switch (service) {
|
|
case 'crunchy':
|
|
return 'Crunchyroll';
|
|
case 'hidive':
|
|
return 'Hidive';
|
|
case 'ao':
|
|
return 'AnimeOnegai';
|
|
case 'adn':
|
|
return 'AnimationDigitalNetwork';
|
|
}
|
|
};
|
|
|
|
const msg = React.useContext(messageChannelContext);
|
|
|
|
const handleClick = (event: React.MouseEvent<HTMLElement>, n: 'settings' | 'help') => {
|
|
setAnchorEl(event.currentTarget);
|
|
setMenuOpen(n);
|
|
};
|
|
const handleClose = () => {
|
|
setAnchorEl(null);
|
|
setMenuOpen(undefined);
|
|
};
|
|
|
|
if (!msg) return <></>;
|
|
|
|
return (
|
|
<Box sx={{ display: 'flex', marginBottom: '1rem', width: '100%', alignItems: 'center' }}>
|
|
<Box sx={{ position: 'relative', left: '0%', width: '50%' }}>
|
|
<Button onClick={(e) => handleClick(e, 'settings')}>Settings</Button>
|
|
<Button onClick={(e) => handleClick(e, 'help')}>Help</Button>
|
|
</Box>
|
|
<Menu open={openMenu === 'settings'} anchorEl={anchorEl} onClose={handleClose}>
|
|
<MenuItem
|
|
onClick={() => {
|
|
msg.openFolder('config');
|
|
handleClose();
|
|
}}
|
|
>
|
|
Open settings folder
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => {
|
|
msg.openFile(['config', 'bin-path.yml']);
|
|
handleClose();
|
|
}}
|
|
>
|
|
Open FFmpeg/Mkvmerge file
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => {
|
|
msg.openFile(['config', 'cli-defaults.yml']);
|
|
handleClose();
|
|
}}
|
|
>
|
|
Open advanced options
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => {
|
|
msg.openFolder('content');
|
|
handleClose();
|
|
}}
|
|
>
|
|
Open output path
|
|
</MenuItem>
|
|
</Menu>
|
|
<Menu open={openMenu === 'help'} anchorEl={anchorEl} onClose={handleClose}>
|
|
<MenuItem
|
|
onClick={() => {
|
|
msg.openURL('https://github.com/anidl/multi-downloader-nx');
|
|
handleClose();
|
|
}}
|
|
>
|
|
GitHub
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => {
|
|
msg.openURL('https://github.com/anidl/multi-downloader-nx/issues/new?assignees=AnimeDL,AnidlSupport&labels=bug&template=bug.yml&title=BUG');
|
|
handleClose();
|
|
}}
|
|
>
|
|
Report a bug
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => {
|
|
msg.openURL('https://github.com/anidl/multi-downloader-nx/graphs/contributors');
|
|
handleClose();
|
|
}}
|
|
>
|
|
Contributors
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => {
|
|
msg.openURL('https://discord.gg/qEpbWen5vq');
|
|
handleClose();
|
|
}}
|
|
>
|
|
Discord
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => {
|
|
handleClose();
|
|
}}
|
|
>
|
|
Version: {store.version}
|
|
</MenuItem>
|
|
</Menu>
|
|
<Typography variant="h5" color="text.primary">
|
|
{transformService(store.service)}
|
|
</Typography>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default MenuBar;
|