koel/resources/assets/js/stores/favoriteStore.ts
2022-07-04 10:36:39 +02:00

54 lines
1.6 KiB
TypeScript

import { reactive } from 'vue'
import { difference, union } from 'lodash'
import { httpService } from '@/services'
import { arrayify } from '@/utils'
import { songStore } from '@/stores'
export const favoriteStore = {
state: reactive({
songs: [] as Song[],
length: 0,
fmtLength: ''
}),
async toggleOne (song: Song) {
// Don't wait for the HTTP response to update the status, just toggle right away.
// This may cause a minor problem if the request fails somehow, but do we care?
song.liked = !song.liked
song.liked ? this.add(song) : this.remove(song)
await httpService.post<Song>('interaction/like', { song: song.id })
},
add (songs: Song | Song[]) {
this.state.songs = union(this.state.songs, arrayify(songs))
},
remove (songs: Song | Song[]) {
this.state.songs = difference(this.state.songs, arrayify(songs))
},
clear () {
this.state.songs = []
},
async like (songs: Song[]) {
// Don't wait for the HTTP response to update the status, just set them to Liked right away.
// This may cause a minor problem if the request fails somehow, but do we care?
songs.forEach(song => (song.liked = true))
this.add(songs)
await httpService.post('interaction/batch/like', { songs: songs.map(song => song.id) })
},
async unlike (songs: Song[]) {
songs.forEach(song => (song.liked = false))
this.remove(songs)
await httpService.post('interaction/batch/unlike', { songs: songs.map(song => song.id) })
},
async fetch () {
this.state.songs = songStore.syncWithVault(await httpService.get<Song[]>('favorites'))
}
}