mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 10:03:33 +00:00
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
|
|
import { useRef } from 'react';
|
||
|
|
import type { AgGridReact as AgGridReactType } from '@ag-grid-community/react/lib/agGridReact';
|
||
|
|
import { Stack } from '@mantine/core';
|
||
|
|
import { NowPlayingHeader } from '/@/renderer/features/now-playing/components/now-playing-header';
|
||
|
|
import { PlayQueue } from '/@/renderer/features/now-playing/components/play-queue';
|
||
|
|
import { PlayQueueListControls } from '/@/renderer/features/now-playing/components/play-queue-list-controls';
|
||
|
|
import type { Song } from '/@/renderer/api/types';
|
||
|
|
import { AnimatedPage } from '/@/renderer/features/shared';
|
||
|
|
|
||
|
|
const NowPlayingRoute = () => {
|
||
|
|
const queueRef = useRef<{ grid: AgGridReactType<Song> } | null>(null);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<AnimatedPage>
|
||
|
|
<Stack
|
||
|
|
pb="1rem"
|
||
|
|
spacing={0}
|
||
|
|
sx={{ height: '100%' }}
|
||
|
|
>
|
||
|
|
<NowPlayingHeader />
|
||
|
|
<PlayQueue
|
||
|
|
ref={queueRef}
|
||
|
|
type="nowPlaying"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<PlayQueueListControls
|
||
|
|
tableRef={queueRef}
|
||
|
|
type="nowPlaying"
|
||
|
|
/>
|
||
|
|
</Stack>
|
||
|
|
</AnimatedPage>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default NowPlayingRoute;
|