feishin/src/renderer/features/search/components/home-commands.tsx

81 lines
2.6 KiB
TypeScript
Raw Normal View History

2023-05-18 02:10:34 -07:00
import { openModal, closeAllModals } from '@mantine/modals';
2023-05-19 22:24:15 -07:00
import { nanoid } from 'nanoid/non-secure';
2023-05-18 02:10:34 -07:00
import { Dispatch, useCallback } from 'react';
2023-05-19 22:24:15 -07:00
import { generatePath, useNavigate } from 'react-router';
import { createSearchParams } from 'react-router-dom';
import { LibraryItem } from '/@/renderer/api/types';
2023-05-18 02:10:34 -07:00
import { CreatePlaylistForm } from '/@/renderer/features/playlists';
import { Command, CommandPalettePages } from '/@/renderer/features/search/components/command';
import { AppRoute } from '/@/renderer/router/routes';
import { useCurrentServer } from '/@/renderer/store';
import { ServerType } from '/@/renderer/types';
interface HomeCommandsProps {
2023-07-01 19:10:05 -07:00
handleClose: () => void;
pages: CommandPalettePages[];
query: string;
setPages: Dispatch<CommandPalettePages[]>;
setQuery: Dispatch<string>;
2023-05-18 02:10:34 -07:00
}
export const HomeCommands = ({
2023-07-01 19:10:05 -07:00
query,
setQuery,
pages,
setPages,
handleClose,
2023-05-18 02:10:34 -07:00
}: HomeCommandsProps) => {
2023-07-01 19:10:05 -07:00
const navigate = useNavigate();
const server = useCurrentServer();
2023-05-18 02:10:34 -07:00
2023-07-01 19:10:05 -07:00
const handleCreatePlaylistModal = useCallback(() => {
handleClose();
2023-05-18 02:10:34 -07:00
2023-07-01 19:10:05 -07:00
openModal({
children: <CreatePlaylistForm onCancel={() => closeAllModals()} />,
size: server?.type === ServerType?.NAVIDROME ? 'xl' : 'sm',
title: 'Create Playlist',
});
}, [handleClose, server?.type]);
2023-05-18 02:10:34 -07:00
2023-07-01 19:10:05 -07:00
const handleSearch = () => {
navigate(
{
pathname: generatePath(AppRoute.SEARCH, { itemType: LibraryItem.SONG }),
search: createSearchParams({
query,
}).toString(),
},
{
state: {
navigationId: nanoid(),
},
},
);
handleClose();
setQuery('');
};
2023-05-18 02:10:34 -07:00
2023-07-01 19:10:05 -07:00
return (
<>
<Command.Group heading="Commands">
<Command.Item
value="Search"
onSelect={handleSearch}
>
{query ? `Search for "${query}"...` : 'Search...'}
</Command.Item>
<Command.Item onSelect={handleCreatePlaylistModal}>Create playlist...</Command.Item>
<Command.Item onSelect={() => setPages([...pages, CommandPalettePages.GO_TO])}>
Go to page...
</Command.Item>
<Command.Item
onSelect={() => setPages([...pages, CommandPalettePages.MANAGE_SERVERS])}
>
Server commands...
</Command.Item>
</Command.Group>
</>
);
2023-05-18 02:10:34 -07:00
};