import { Box, Center, Divider, Group, Stack } from '@mantine/core'; import { closeAllModals, openModal } from '@mantine/modals'; import { AnimatePresence, motion } from 'framer-motion'; import { MouseEvent, useMemo } from 'react'; import { RiAddFill, RiArrowDownSLine, RiDiscLine, RiListUnordered } from 'react-icons/ri'; import { Link, useLocation } from 'react-router-dom'; import styled from 'styled-components'; import { SidebarItemType, useGeneralSettings, useWindowSettings, } from '../../../store/settings.store'; import { PlaylistListSort, ServerType, SortOrder } from '/@/renderer/api/types'; import { Button, MotionStack, Spinner, Tooltip } from '/@/renderer/components'; import { CreatePlaylistForm, usePlaylistList } from '/@/renderer/features/playlists'; import { ActionBar } from '/@/renderer/features/sidebar/components/action-bar'; import { SidebarIcon } from '/@/renderer/features/sidebar/components/sidebar-icon'; import { SidebarItem } from '/@/renderer/features/sidebar/components/sidebar-item'; import { SidebarPlaylistList } from '/@/renderer/features/sidebar/components/sidebar-playlist-list'; import { useContainerQuery } from '/@/renderer/hooks'; import { AppRoute } from '/@/renderer/router/routes'; import { useAppStoreActions, useCurrentServer, useCurrentSong, useFullScreenPlayerStore, useSetFullScreenPlayerStore, useSidebarStore, } from '/@/renderer/store'; import { fadeIn } from '/@/renderer/styles'; import { Platform } from '/@/renderer/types'; const SidebarContainer = styled.div<{ $windowBarStyle: Platform }>` height: 100%; max-height: ${ (props) => props.$windowBarStyle === Platform.WEB || props.$windowBarStyle === Platform.LINUX ? 'calc(100vh - 160px)' // Playerbar (90px) & ActionBar (70px) : 'calc(100vh - 190px)' // plus windowbar (30px) if the windowBarStyle is Windows/Mac // We use the height of the SidebarContainer to keep the Stack below the ActionBar at the correct height // ActionBar uses height: 100%; so it has the full height of its parent }; user-select: none; `; const ImageContainer = styled(motion.div)<{ height: string }>` position: relative; height: ${(props) => props.height}; cursor: pointer; ${fadeIn}; animation: fadein 0.2s ease-in-out; button { display: none; } &:hover button { display: block; } `; const SidebarImage = styled.img` width: 100%; height: 100%; object-fit: cover; background: var(--placeholder-bg); `; export const Sidebar = () => { const location = useLocation(); const sidebar = useSidebarStore(); const { setSideBar } = useAppStoreActions(); const { windowBarStyle } = useWindowSettings(); const { sidebarPlaylistList } = useGeneralSettings(); const imageUrl = useCurrentSong()?.imageUrl; const server = useCurrentServer(); const upsizedImageUrl = imageUrl ?.replace(/size=\d+/, 'size=300') .replace(/width=\d+/, 'width=300') .replace(/height=\d+/, 'height=300'); const showImage = sidebar.image; const handleCreatePlaylistModal = (e: MouseEvent) => { e.stopPropagation(); openModal({ children: closeAllModals()} />, size: server?.type === ServerType?.NAVIDROME ? 'xl' : 'sm', title: 'Create Playlist', }); }; const playlistsQuery = usePlaylistList({ query: { sortBy: PlaylistListSort.NAME, sortOrder: SortOrder.ASC, startIndex: 0, }, serverId: server?.id, }); const setFullScreenPlayerStore = useSetFullScreenPlayerStore(); const { expanded: isFullScreenPlayerExpanded } = useFullScreenPlayerStore(); const expandFullScreenPlayer = () => { setFullScreenPlayerStore({ expanded: !isFullScreenPlayerExpanded }); }; const cq = useContainerQuery({ sm: 300 }); const { sidebarItems } = useGeneralSettings(); const sidebarItemsWithRoute: SidebarItemType[] = useMemo(() => { if (!sidebarItems) return []; const items = sidebarItems .filter((item) => !item.disabled) .map((item) => ({ ...item, })); return items; }, [sidebarItems]); return ( {sidebarItemsWithRoute.map((item) => { return ( {item.label} ); })} {sidebarPlaylistList && ( <> Playlists {playlistsQuery.isLoading && } )} {showImage && ( {upsizedImageUrl ? ( ) : (
)}
)}
); };