koel/resources/assets/js/stores/overviewStore.ts

51 lines
1.8 KiB
TypeScript
Raw Normal View History

2024-06-03 07:16:29 +00:00
import { reactive } from 'vue'
import { http } from '@/services'
2022-06-10 10:47:46 +00:00
import { songStore } from '@/stores/songStore'
import { albumStore } from '@/stores/albumStore'
import { artistStore } from '@/stores/artistStore'
import { recentlyPlayedStore } from '@/stores'
2024-06-03 07:16:29 +00:00
import { isSong } from '@/utils'
2022-06-10 10:47:46 +00:00
export const overviewStore = {
state: reactive({
recentlyPlayed: [] as Playable[],
recentlyAddedSongs: [] as Song[],
recentlyAddedAlbums: [] as Album[],
mostPlayedSongs: [] as Playable[],
mostPlayedAlbums: [] as Album[],
mostPlayedArtists: [] as Artist[]
2022-06-10 10:47:46 +00:00
}),
async fetch () {
const resource = await http.get<{
most_played_songs: Playable[],
2022-06-10 10:47:46 +00:00
most_played_albums: Album[],
most_played_artists: Artist[],
recently_added_songs: Song[],
recently_added_albums: Album[],
recently_played_songs: Playable[],
2022-06-10 10:47:46 +00:00
}>('overview')
songStore.syncWithVault(resource.most_played_songs)
albumStore.syncWithVault(resource.recently_added_albums)
2022-06-10 10:47:46 +00:00
artistStore.syncWithVault(resource.most_played_artists)
this.state.mostPlayedAlbums = albumStore.syncWithVault(resource.most_played_albums)
this.state.mostPlayedArtists = artistStore.syncWithVault(resource.most_played_artists)
this.state.recentlyAddedSongs = songStore.syncWithVault(resource.recently_added_songs) as Song[]
this.state.recentlyAddedAlbums = albumStore.syncWithVault(resource.recently_added_albums)
2024-05-19 05:49:42 +00:00
recentlyPlayedStore.excerptState.playables = songStore.syncWithVault(resource.recently_played_songs)
2022-06-10 10:47:46 +00:00
this.refreshPlayStats()
2022-06-10 10:47:46 +00:00
},
refreshPlayStats () {
2022-06-10 10:47:46 +00:00
this.state.mostPlayedSongs = songStore.getMostPlayed(7)
this.state.recentlyPlayed = recentlyPlayedStore.excerptState.playables.filter(playable => {
if (isSong(playable) && playable.deleted) return false
return playable.play_count > 0
})
2022-06-10 10:47:46 +00:00
}
}