1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add detail view buttons

This commit is contained in:
grafixeyehero 2024-09-08 20:15:20 +03:00
parent f7fcf44f94
commit 690b1fbed5
11 changed files with 692 additions and 4 deletions

View file

@ -0,0 +1,29 @@
import React, { FC, useCallback } from 'react';
import { IconButton } from '@mui/material';
import ShuffleIcon from '@mui/icons-material/Shuffle';
import { playbackManager } from 'components/playback/playbackmanager';
import globalize from 'lib/globalize';
import type { ItemDto } from 'types/base/models/item-dto';
interface ShuffleButtonProps {
item: ItemDto;
}
const ShuffleButton: FC<ShuffleButtonProps> = ({ item }) => {
const shuffle = useCallback(() => {
playbackManager.shuffle(item);
}, [item]);
return (
<IconButton
title={globalize.translate('Shuffle')}
className='paper-icon-button-light btnShuffle autoSize'
onClick={shuffle}
>
<ShuffleIcon />
</IconButton>
);
};
export default ShuffleButton;