feishin/src/renderer/features/sidebar/components/sidebar-playlist-list.tsx

292 lines
10 KiB
TypeScript
Raw Normal View History

import { Box, Flex, Group } from '@mantine/core';
import { useDebouncedValue } from '@mantine/hooks';
import { useCallback, useMemo, useState } from 'react';
import { useTranslation } from 'react-i18next';
2024-08-24 21:09:44 -07:00
import {
RiAddBoxFill,
RiAddCircleFill,
RiArrowDownSLine,
RiArrowUpSLine,
RiPlayFill,
2025-06-09 16:02:03 +07:00
RiShuffleFill,
2024-08-24 21:09:44 -07:00
} from 'react-icons/ri';
import { generatePath } from 'react-router';
import { Link } from 'react-router-dom';
import AutoSizer from 'react-virtualized-auto-sizer';
import { FixedSizeList, ListChildComponentProps } from 'react-window';
import { Button, Text } from '/@/renderer/components';
import { openContextMenu } from '/@/renderer/features/context-menu';
import { PLAYLIST_CONTEXT_MENU_ITEMS } from '/@/renderer/features/context-menu/context-menu-items';
import { usePlayQueueAdd } from '/@/renderer/features/player';
import { usePlaylistList } from '/@/renderer/features/playlists';
import { useHideScrollbar } from '/@/renderer/hooks';
import { AppRoute } from '/@/renderer/router/routes';
2024-08-24 21:09:44 -07:00
import { useCurrentServer, useGeneralSettings, useSettingsStoreActions } from '/@/renderer/store';
2025-05-20 19:23:36 -07:00
import { LibraryItem, Playlist, PlaylistListSort, SortOrder } from '/@/shared/types/domain-types';
import { Play } from '/@/shared/types/types';
const PlaylistRow = ({ data, index, style }: ListChildComponentProps) => {
const { t } = useTranslation();
2024-08-24 21:09:44 -07:00
if (Array.isArray(data?.items[index])) {
const [collapse, setCollapse] = data.items[index];
return (
<div style={{ margin: '0.5rem 0', padding: '0 1.5rem', ...style }}>
<Box
fw="600"
sx={{ fontSize: '1.2rem' }}
>
2024-08-24 21:09:44 -07:00
<Group>
<Text>{t('page.sidebar.shared', { postProcess: 'titleCase' })}</Text>
<Button
compact
onClick={() => setCollapse()}
2024-08-24 21:09:44 -07:00
tooltip={{
label: t(collapse ? 'common.expand' : 'common.collapse', {
postProcess: 'titleCase',
}),
openDelay: 500,
}}
variant="default"
>
{collapse ? (
<RiArrowUpSLine size={20} />
) : (
<RiArrowDownSLine size={20} />
)}
</Button>
</Group>
</Box>
</div>
);
}
const path = data?.items[index].id
2024-09-26 04:23:08 +00:00
? generatePath(AppRoute.PLAYLISTS_DETAIL_SONGS, { playlistId: data.items[index].id })
: undefined;
2023-07-01 19:10:05 -07:00
return (
2024-08-25 22:17:11 -07:00
<div
onContextMenu={(e) => {
e.preventDefault();
e.stopPropagation();
if (!data?.items?.[index].id) return;
openContextMenu({
data: [data?.items?.[index]],
dataNodes: undefined,
menuItems: PLAYLIST_CONTEXT_MENU_ITEMS,
type: LibraryItem.PLAYLIST,
xPos: e.clientX + 15,
yPos: e.clientY + 5,
});
}}
style={{ margin: '0.5rem 0', padding: '0 1.5rem', ...style }}
2024-08-25 22:17:11 -07:00
>
2023-07-01 19:10:05 -07:00
<Group
className="sidebar-playlist-item"
noWrap
2023-07-01 19:10:05 -07:00
pos="relative"
position="apart"
sx={{
'&:hover': {
'.sidebar-playlist-controls': {
display: 'flex',
},
'.sidebar-playlist-name': {
color: 'var(--sidebar-fg-hover) !important',
},
},
}}
>
<Text
className="sidebar-playlist-name"
component={Link}
overflow="hidden"
size="md"
sx={{
color: 'var(--sidebar-fg) !important',
cursor: 'default',
width: '100%',
}}
to={path}
2023-07-01 19:10:05 -07:00
>
{data?.items[index].name}
</Text>
<Group
className="sidebar-playlist-controls"
display="none"
noWrap
2023-07-01 19:10:05 -07:00
pos="absolute"
right="0"
spacing="sm"
>
<Button
compact
onClick={() => {
if (!data?.items?.[index].id) return;
data.handlePlay(data?.items[index].id, Play.NOW);
}}
2023-07-01 19:10:05 -07:00
size="md"
tooltip={{
label: t('player.play', { postProcess: 'sentenceCase' }),
openDelay: 500,
}}
2023-07-01 19:10:05 -07:00
variant="default"
>
<RiPlayFill />
</Button>
2025-06-09 16:02:03 +07:00
<Button
compact
onClick={() => {
if (!data?.items?.[index].id) return;
data.handlePlay(data?.items[index].id, Play.SHUFFLE);
}}
size="md"
tooltip={{
label: t('player.shuffle', { postProcess: 'sentenceCase' }),
openDelay: 500,
}}
variant="default"
>
<RiShuffleFill />
</Button>
2023-07-01 19:10:05 -07:00
<Button
compact
onClick={() => {
if (!data?.items?.[index].id) return;
data.handlePlay(data?.items[index].id, Play.LAST);
}}
2023-07-01 19:10:05 -07:00
size="md"
tooltip={{
label: t('player.addLast', { postProcess: 'sentenceCase' }),
openDelay: 500,
}}
2023-07-01 19:10:05 -07:00
variant="default"
>
<RiAddBoxFill />
</Button>
<Button
compact
onClick={() => {
if (!data?.items?.[index].id) return;
data.handlePlay(data?.items[index].id, Play.NEXT);
}}
2023-07-01 19:10:05 -07:00
size="md"
tooltip={{
label: t('player.addNext', { postProcess: 'sentenceCase' }),
openDelay: 500,
}}
2023-07-01 19:10:05 -07:00
variant="default"
>
<RiAddCircleFill />
</Button>
</Group>
</Group>
</div>
);
2023-03-28 23:59:51 -07:00
};
2024-09-26 04:23:08 +00:00
export const SidebarPlaylistList = () => {
const { hideScrollbarElementProps, isScrollbarHidden } = useHideScrollbar(0);
2023-07-01 19:10:05 -07:00
const handlePlayQueueAdd = usePlayQueueAdd();
2024-09-26 04:23:08 +00:00
const { sidebarCollapseShared } = useGeneralSettings();
2024-08-24 21:09:44 -07:00
const { toggleSidebarCollapseShare } = useSettingsStoreActions();
2024-09-26 04:23:08 +00:00
const server = useCurrentServer();
const playlistsQuery = usePlaylistList({
query: {
sortBy: PlaylistListSort.NAME,
sortOrder: SortOrder.ASC,
startIndex: 0,
},
serverId: server?.id,
});
2023-07-01 19:10:05 -07:00
const [rect, setRect] = useState({
height: 0,
width: 0,
});
2023-07-01 19:10:05 -07:00
const [debounced] = useDebouncedValue(rect, 25);
2023-07-01 19:10:05 -07:00
const handlePlayPlaylist = useCallback(
(id: string, playType: Play) => {
handlePlayQueueAdd?.({
byItemType: {
id: [id],
type: LibraryItem.PLAYLIST,
},
playType,
});
},
2023-07-01 19:10:05 -07:00
[handlePlayQueueAdd],
);
2024-09-26 04:23:08 +00:00
const data = playlistsQuery.data;
2023-07-01 19:10:05 -07:00
const memoizedItemData = useMemo(() => {
2024-09-26 04:23:08 +00:00
const base = { handlePlay: handlePlayPlaylist };
2024-09-26 04:23:08 +00:00
if (!server?.type || !server?.username || !data?.items) {
return { ...base, items: data?.items };
}
const owned: Array<[boolean, () => void] | Playlist> = [];
const shared: Playlist[] = [];
for (const playlist of data.items) {
2024-09-26 04:23:08 +00:00
if (playlist.owner && playlist.owner !== server.username) {
shared.push(playlist);
} else {
owned.push(playlist);
}
}
if (shared.length > 0) {
2024-08-24 21:09:44 -07:00
owned.push([sidebarCollapseShared, toggleSidebarCollapseShare]);
}
2024-08-24 21:09:44 -07:00
const final = sidebarCollapseShared ? owned : owned.concat(shared);
return { ...base, items: final };
}, [
data?.items,
handlePlayPlaylist,
2024-09-26 04:23:08 +00:00
server?.type,
server?.username,
sidebarCollapseShared,
2024-08-24 21:09:44 -07:00
toggleSidebarCollapseShare,
]);
2023-07-01 19:10:05 -07:00
return (
<Flex
h="100%"
{...hideScrollbarElementProps}
>
<AutoSizer onResize={(e) => setRect(e as { height: number; width: number })}>
{() => (
<FixedSizeList
className={
isScrollbarHidden
? 'hide-scrollbar overlay-scrollbar'
: 'overlay-scrollbar'
}
height={debounced.height}
itemCount={memoizedItemData?.items?.length || 0}
2023-07-01 19:10:05 -07:00
itemData={memoizedItemData}
itemSize={25}
overscanCount={20}
width={debounced.width}
>
{PlaylistRow}
</FixedSizeList>
)}
</AutoSizer>
</Flex>
);
};