Add "Songs" page to sidebar

This commit is contained in:
jeffvli
2022-01-13 15:04:24 -08:00
committed by Jeff
parent 15275ae62d
commit d80fec7fdb

View File

@@ -51,7 +51,7 @@ const Sidebar = ({
<SidebarNavItem
tabIndex={0}
eventKey="nowplaying"
icon={<Icon icon="music" />}
icon={<Icon icon="headphones" />}
onSelect={handleSidebarSelect}
disabled={disableSidebar}
onKeyDown={(e: any) => {
@@ -90,6 +90,20 @@ const Sidebar = ({
>
Favorites
</SidebarNavItem>
<SidebarNavItem
tabIndex={0}
eventKey="songs"
icon={<Icon icon="music" />}
onSelect={handleSidebarSelect}
disabled={disableSidebar}
onKeyDown={(e: any) => {
if (e.key === ' ' || e.key === 'Enter') {
history.push('/library/song');
}
}}
>
Songs
</SidebarNavItem>
<SidebarNavItem
tabIndex={0}
eventKey="albums"