mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
38 lines
944 B
TypeScript
38 lines
944 B
TypeScript
import { reactive } from 'vue'
|
|
import { http } from '@/services'
|
|
|
|
export const podcastStore = {
|
|
state: reactive({
|
|
podcasts: [] as Podcast[]
|
|
}),
|
|
|
|
byId (id: string) {
|
|
return this.state.podcasts.find(podcast => podcast.id === id)
|
|
},
|
|
|
|
async resolve (id: string) {
|
|
return this.byId(id) ?? await this.fetchOne(id)
|
|
},
|
|
|
|
async store (url: string) {
|
|
const podcast = await http.post<Podcast>('podcasts', { url })
|
|
this.state.podcasts.push(podcast)
|
|
|
|
return podcast
|
|
},
|
|
|
|
async fetchAll () {
|
|
this.state.podcasts = await http.get<Podcast[]>('podcasts')
|
|
return this.state.podcasts
|
|
},
|
|
|
|
async fetchOne (id: string) {
|
|
this.state.podcasts.push(await http.get<Podcast>(`podcasts/${id}`))
|
|
return this.byId(id)!
|
|
},
|
|
|
|
async unsubscribe (podcast: Podcast) {
|
|
await http.delete(`podcasts/${podcast.id}/subscriptions`)
|
|
this.state.podcasts = this.state.podcasts.filter(p => p.id !== podcast.id)
|
|
},
|
|
}
|