mirror of
https://github.com/koel/koel
synced 2024-12-13 06:02:27 +00:00
38 lines
952 B
TypeScript
38 lines
952 B
TypeScript
import { reactive } from 'vue'
|
|
import { http } from '@/services'
|
|
import { albumStore, artistStore, songStore } from '@/stores'
|
|
|
|
type ExcerptState = {
|
|
songs: Song[],
|
|
albums: Album[],
|
|
artists: Artist[]
|
|
}
|
|
|
|
export type ExcerptSearchResult = ExcerptState
|
|
|
|
export const searchStore = {
|
|
state: reactive({
|
|
excerpt: {
|
|
songs: [],
|
|
albums: [],
|
|
artists: []
|
|
} as ExcerptState,
|
|
songs: [] as Song[]
|
|
}),
|
|
|
|
async excerptSearch (q: string) {
|
|
const result = await http.get<ExcerptSearchResult>(`search?q=${q}`)
|
|
|
|
this.state.excerpt.songs = songStore.syncWithVault(result.songs)
|
|
this.state.excerpt.albums = albumStore.syncWithVault(result.albums)
|
|
this.state.excerpt.artists = artistStore.syncWithVault(result.artists)
|
|
},
|
|
|
|
async songSearch (q: string) {
|
|
this.state.songs = songStore.syncWithVault(await http.get<Song[]>(`search/songs?q=${q}`))
|
|
},
|
|
|
|
resetSongResultState () {
|
|
this.state.songs = []
|
|
}
|
|
}
|