mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { http } from '@/services'
|
|
import { songStore } from '@/stores/song'
|
|
import { albumStore } from '@/stores/album'
|
|
import { artistStore } from '@/stores/artist'
|
|
import { reactive } from 'vue'
|
|
|
|
interface ExcerptSearchResult {
|
|
songs: Array<string>
|
|
albums: Array<number>
|
|
artists: Array<number>
|
|
}
|
|
|
|
interface SongSearchResult {
|
|
songs: Array<string>
|
|
}
|
|
|
|
export const searchStore = {
|
|
state: reactive({
|
|
excerpt: {
|
|
songs: [] as Song[],
|
|
albums: [] as Album[],
|
|
artists: [] as Artist[]
|
|
},
|
|
songs: [] as Song[]
|
|
}),
|
|
|
|
async excerptSearch (q: string) {
|
|
const { results } = await http.get<{ [key: string]: ExcerptSearchResult }>(`search?q=${q}`)
|
|
this.state.excerpt.songs = songStore.byIds(results.songs)
|
|
this.state.excerpt.albums = albumStore.byIds(results.albums)
|
|
this.state.excerpt.artists = artistStore.byIds(results.artists)
|
|
},
|
|
|
|
async songSearch (q: string) {
|
|
const { songs } = await http.get<SongSearchResult>(`search/songs?q=${q}`)
|
|
this.state.songs = this.state.songs.concat(songStore.byIds(songs))
|
|
},
|
|
|
|
resetSongResultState () {
|
|
this.state.songs = []
|
|
}
|
|
}
|