koel/resources/assets/js/config/routes.ts

104 lines
1.7 KiB
TypeScript
Raw Normal View History

import { eventBus } from '@/utils'
import { Route } from '@/router'
import { userStore } from '@/stores'
export const routes: Route[] = [
{
path: '/home',
screen: 'Home'
},
{
path: '/404',
screen: '404'
},
{
path: '/queue',
screen: 'Queue'
},
{
path: '/songs',
screen: 'Songs'
},
{
path: '/albums',
screen: 'Albums'
},
{
path: '/artists',
screen: 'Artists'
},
{
path: '/favorites',
screen: 'Favorites'
},
{
path: '/recently-played',
screen: 'RecentlyPlayed'
},
{
path: '/search',
screen: 'Search.Excerpt'
},
{
path: '/search/songs',
screen: 'Search.Songs'
},
{
path: '/upload',
screen: 'Upload',
onBeforeEnter: () => userStore.current.is_admin
},
{
path: '/settings',
screen: 'Settings',
onBeforeEnter: () => userStore.current.is_admin
},
{
path: '/users',
screen: 'Users',
onBeforeEnter: () => userStore.current.is_admin
},
{
path: '/youtube',
screen: 'YouTube'
},
{
path: '/profile',
screen: 'Profile'
},
{
path: 'visualizer',
screen: 'Visualizer'
},
{
path: '/album/(?<id>\\d+)',
screen: 'Album'
},
{
path: '/artist/(?<id>\\d+)',
screen: 'Artist'
},
{
path: '/playlist/(?<id>\\d+)',
screen: 'Playlist'
},
2022-10-21 20:06:43 +00:00
{
path: '/genres',
screen: 'Genres'
},
{
path: '/genres/(?<name>\.+)',
screen: 'Genre'
},
2022-11-06 17:09:06 +00:00
{
path: '/visualizer',
screen: 'Visualizer'
},
{
path: '/song/(?<id>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})',
screen: 'Queue',
redirect: () => 'queue',
onBeforeEnter: params => eventBus.emit('SONG_QUEUED_FROM_ROUTE', params.id)
}
]