import clsx from 'clsx'; import { AnimatePresence, motion } from 'motion/react'; import { CSSProperties, MouseEvent, useMemo } from 'react'; import { useTranslation } from 'react-i18next'; import styles from './sidebar.module.css'; import { ContextMenuController } from '/@/renderer/features/context-menu/context-menu-controller'; import { ActionBar } from '/@/renderer/features/sidebar/components/action-bar'; import { ServerSelector } from '/@/renderer/features/sidebar/components/server-selector'; import { SidebarIcon } from '/@/renderer/features/sidebar/components/sidebar-icon'; import { SidebarItem } from '/@/renderer/features/sidebar/components/sidebar-item'; import { SidebarPlaylistList, SidebarSharedPlaylistList, } from '/@/renderer/features/sidebar/components/sidebar-playlist-list'; import { useAppStore, useAppStoreActions, useFullScreenPlayerStore, usePlayerSong, useSetFullScreenPlayerStore, } from '/@/renderer/store'; import { SidebarItemType, useGeneralSettings, useWindowSettings, } from '/@/renderer/store/settings.store'; import { Accordion } from '/@/shared/components/accordion/accordion'; import { ActionIcon } from '/@/shared/components/action-icon/action-icon'; import { Group } from '/@/shared/components/group/group'; import { ImageUnloader } from '/@/shared/components/image/image'; import { ScrollArea } from '/@/shared/components/scroll-area/scroll-area'; import { Text } from '/@/shared/components/text/text'; import { Tooltip } from '/@/shared/components/tooltip/tooltip'; import { LibraryItem } from '/@/shared/types/domain-types'; import { Platform } from '/@/shared/types/types'; export const Sidebar = () => { const { t } = useTranslation(); const { sidebarPlaylistList } = useGeneralSettings(); const translatedSidebarItemMap = useMemo( () => ({ Albums: t('page.sidebar.albums', { postProcess: 'titleCase' }), Artists: t('page.sidebar.albumArtists', { postProcess: 'titleCase' }), 'Artists-all': t('page.sidebar.artists', { postProcess: 'titleCase' }), Favorites: t('page.sidebar.favorites', { postProcess: 'titleCase' }), Folders: t('page.sidebar.folders', { postProcess: 'titleCase' }), Genres: t('page.sidebar.genres', { postProcess: 'titleCase' }), Home: t('page.sidebar.home', { postProcess: 'titleCase' }), 'Now Playing': t('page.sidebar.nowPlaying', { postProcess: 'titleCase' }), Playlists: t('page.sidebar.playlists', { postProcess: 'titleCase' }), Search: t('page.sidebar.search', { postProcess: 'titleCase' }), Settings: t('page.sidebar.settings', { postProcess: 'titleCase' }), Tracks: t('page.sidebar.tracks', { postProcess: 'titleCase' }), }), [t], ); const { sidebarItems } = useGeneralSettings(); const { windowBarStyle } = useWindowSettings(); const showImage = useAppStore((state) => state.sidebar.image); const sidebarItemsWithRoute: SidebarItemType[] = useMemo(() => { if (!sidebarItems) return []; const items = sidebarItems .filter((item) => !item.disabled) .map((item) => ({ ...item, label: translatedSidebarItemMap[item.id as keyof typeof translatedSidebarItemMap] ?? item.label, })); return items; }, [sidebarItems, translatedSidebarItemMap]); const isCustomWindowBar = windowBarStyle === Platform.WINDOWS || windowBarStyle === Platform.MACOS; return ( ); }; const SidebarImage = () => { const { t } = useTranslation(); const leftWidth = useAppStore((state) => state.sidebar.leftWidth); const { setSideBar } = useAppStoreActions(); const currentSong = usePlayerSong(); const upsizedImageUrl = currentSong?.imageUrl ?.replace(/size=\d+/, 'size=450') .replace(/width=\d+/, 'width=450') .replace(/height=\d+/, 'height=450'); const isSongDefined = Boolean(currentSong?.id); const setFullScreenPlayerStore = useSetFullScreenPlayerStore(); const { expanded: isFullScreenPlayerExpanded } = useFullScreenPlayerStore(); const expandFullScreenPlayer = () => { setFullScreenPlayerStore({ expanded: !isFullScreenPlayerExpanded }); }; const handleToggleContextMenu = (e: MouseEvent) => { e.preventDefault(); e.stopPropagation(); if (!currentSong) { return; } if (isSongDefined && !isFullScreenPlayerExpanded) { ContextMenuController.call({ cmd: { items: [currentSong!], type: LibraryItem.SONG }, event: e, }); } }; return ( {upsizedImageUrl ? ( ) : ( )} { e.stopPropagation(); setSideBar({ image: false }); }} opacity={0.8} radius="md" style={{ cursor: 'default', position: 'absolute', right: '1rem', top: '1rem', }} tooltip={{ label: t('common.collapse', { postProcess: 'titleCase', }), openDelay: 500, }} /> ); };