mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 12:30:06 +02:00
105 lines
3.6 KiB
TypeScript
105 lines
3.6 KiB
TypeScript
import { useCallback } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import { usePlayer } from '/@/renderer/features/player/context/player-context';
|
|
import { useCurrentServerId, usePlayButtonBehavior } from '/@/renderer/store';
|
|
import { ContextMenu } from '/@/shared/components/context-menu/context-menu';
|
|
import { LibraryItem, Song } from '/@/shared/types/domain-types';
|
|
import { Play } from '/@/shared/types/types';
|
|
|
|
interface PlayActionProps {
|
|
ids: string[];
|
|
itemType: LibraryItem;
|
|
songs?: Song[];
|
|
}
|
|
|
|
export const PlayAction = ({ ids, itemType, songs }: PlayActionProps) => {
|
|
const { t } = useTranslation();
|
|
const player = usePlayer();
|
|
const serverId = useCurrentServerId();
|
|
|
|
const handlePlay = useCallback(
|
|
(playType: Play) => {
|
|
if (ids.length === 0 || !serverId) return;
|
|
|
|
if (
|
|
itemType === LibraryItem.SONG ||
|
|
itemType === LibraryItem.PLAYLIST_SONG ||
|
|
itemType === LibraryItem.QUEUE_SONG
|
|
) {
|
|
player.addToQueueByData(songs || [], playType);
|
|
} else {
|
|
player.addToQueueByFetch(serverId, ids, itemType, playType);
|
|
}
|
|
},
|
|
[ids, itemType, player, serverId, songs],
|
|
);
|
|
|
|
const handlePlayNow = useCallback(() => {
|
|
handlePlay(Play.NOW);
|
|
}, [handlePlay]);
|
|
|
|
const handlePlayNext = useCallback(() => {
|
|
handlePlay(Play.NEXT);
|
|
}, [handlePlay]);
|
|
|
|
const handlePlayLast = useCallback(() => {
|
|
handlePlay(Play.LAST);
|
|
}, [handlePlay]);
|
|
|
|
const handlePlayShuffled = useCallback(() => {
|
|
handlePlay(Play.SHUFFLE);
|
|
}, [handlePlay]);
|
|
|
|
const handlePlayNextShuffled = useCallback(() => {
|
|
handlePlay(Play.NEXT_SHUFFLE);
|
|
}, [handlePlay]);
|
|
|
|
const handlePlayLastShuffled = useCallback(() => {
|
|
handlePlay(Play.LAST_SHUFFLE);
|
|
}, [handlePlay]);
|
|
|
|
const playButtonBehavior = usePlayButtonBehavior();
|
|
|
|
const defaultPlayAction = useCallback(() => {
|
|
handlePlay(playButtonBehavior);
|
|
}, [handlePlay, playButtonBehavior]);
|
|
|
|
if (ids.length === 0) return null;
|
|
|
|
return (
|
|
<ContextMenu.Submenu>
|
|
<ContextMenu.SubmenuTarget>
|
|
<ContextMenu.Item
|
|
leftIcon="mediaPlay"
|
|
onSelect={defaultPlayAction}
|
|
rightIcon="arrowRightS"
|
|
>
|
|
{t('player.play')}
|
|
</ContextMenu.Item>
|
|
</ContextMenu.SubmenuTarget>
|
|
<ContextMenu.SubmenuContent>
|
|
<ContextMenu.Item leftIcon="mediaPlay" onSelect={handlePlayNow}>
|
|
{t('player.play')}
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Item leftIcon="mediaPlayNext" onSelect={handlePlayNext}>
|
|
{t('player.addNext')}
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Item leftIcon="mediaPlayLast" onSelect={handlePlayLast}>
|
|
{t('player.addLast')}
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Divider />
|
|
<ContextMenu.Item leftIcon="mediaShuffle" onSelect={handlePlayShuffled}>
|
|
{t('player.shuffle')}
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Item leftIcon="mediaPlayNext" onSelect={handlePlayNextShuffled}>
|
|
{t('player.addNextShuffled')}
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Item leftIcon="mediaPlayLast" onSelect={handlePlayLastShuffled}>
|
|
{t('player.addLastShuffled')}
|
|
</ContextMenu.Item>
|
|
</ContextMenu.SubmenuContent>
|
|
</ContextMenu.Submenu>
|
|
);
|
|
};
|