mirror of
https://github.com/koel/koel
synced 2024-11-15 16:57:56 +00:00
86 lines
2.8 KiB
TypeScript
86 lines
2.8 KiB
TypeScript
import isMobile from 'ismobilejs'
|
|
import { loadMainView, use } from '@/utils'
|
|
import { albumStore, artistStore, playlistStore, queueStore, songStore, userStore } from '@/stores'
|
|
import { playbackService } from '@/services'
|
|
|
|
class Router {
|
|
routes: Record<string, Closure>
|
|
|
|
constructor () {
|
|
this.routes = {
|
|
'/home': () => loadMainView('Home'),
|
|
'/queue': () => loadMainView('Queue'),
|
|
'/songs': () => loadMainView('Songs'),
|
|
'/albums': () => loadMainView('Albums'),
|
|
'/artists': () => loadMainView('Artists'),
|
|
'/favorites': () => loadMainView('Favorites'),
|
|
'/recently-played': () => loadMainView('RecentlyPlayed'),
|
|
'/search': () => loadMainView('Search.Excerpt'),
|
|
'/search/songs/(.+)': (q: string) => loadMainView('Search.Songs', q),
|
|
'/upload': () => userStore.current.is_admin && loadMainView('Upload'),
|
|
'/settings': () => userStore.current.is_admin && loadMainView('Settings'),
|
|
'/users': () => userStore.current.is_admin && loadMainView('Users'),
|
|
'/youtube': () => loadMainView('YouTube'),
|
|
'/visualizer': () => loadMainView('Visualizer'),
|
|
'/profile': () => loadMainView('Profile'),
|
|
'/album/(\\d+)': async (id: number) => loadMainView('Album', await albumStore.resolve(id)),
|
|
'/artist/(\\d+)': async (id: number) => loadMainView('Artist', await artistStore.resolve(id)),
|
|
'/playlist/(\\d+)': (id: number) => use(playlistStore.byId(~~id), playlist => loadMainView('Playlist', playlist)),
|
|
'/song/([a-z0-9]{32})': async (id: string) => {
|
|
const song = await songStore.resolve(id)
|
|
if (!song) {
|
|
this.go('home')
|
|
return
|
|
}
|
|
|
|
if (isMobile.apple.device) {
|
|
// Mobile Safari doesn't allow autoplay, so we just queue.
|
|
queueStore.queue(song)
|
|
loadMainView('Queue')
|
|
} else {
|
|
await playbackService.queueAndPlay([song])
|
|
}
|
|
}
|
|
}
|
|
|
|
window.addEventListener('popstate', () => this.resolveRoute(), true)
|
|
}
|
|
|
|
public resolveRoute () {
|
|
if (!window.location.hash) {
|
|
return this.go('home')
|
|
}
|
|
|
|
Object.keys(this.routes).forEach(route => {
|
|
const matches = window.location.hash.match(new RegExp(`^#!${route}$`))
|
|
|
|
if (matches) {
|
|
const [, ...params] = matches
|
|
this.routes[route](...params)
|
|
}
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Navigate to a (relative, hash-bang'ed) path.
|
|
*/
|
|
public go (path: string | number) {
|
|
if (typeof path === 'number') {
|
|
window.history.go(path)
|
|
return
|
|
}
|
|
|
|
if (!path.startsWith('/')) {
|
|
path = `/${path}`
|
|
}
|
|
|
|
if (!path.startsWith('/#!')) {
|
|
path = `/#!${path}`
|
|
}
|
|
|
|
path = path.substring(1, path.length)
|
|
document.location.href = `${document.location.origin}${document.location.pathname}${path}`
|
|
}
|
|
}
|
|
|
|
export default new Router()
|