2024-04-29 19:31:54 +00:00
|
|
|
import { reactive, watch } from 'vue'
|
2022-09-15 09:07:25 +00:00
|
|
|
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'
|
|
|
|
|
|
|
|
export const overviewStore = {
|
|
|
|
state: reactive({
|
2022-09-12 15:33:41 +00:00
|
|
|
recentlyPlayed: [] as Song[],
|
|
|
|
recentlyAddedSongs: [] as Song[],
|
|
|
|
recentlyAddedAlbums: [] as Album[],
|
|
|
|
mostPlayedSongs: [] as Song[],
|
|
|
|
mostPlayedAlbums: [] as Album[],
|
|
|
|
mostPlayedArtists: [] as Artist[]
|
2022-06-10 10:47:46 +00:00
|
|
|
}),
|
|
|
|
|
2024-04-29 19:31:54 +00:00
|
|
|
async fetch () {
|
2022-09-15 09:07:25 +00:00
|
|
|
const resource = await http.get<{
|
2022-06-10 10:47:46 +00:00
|
|
|
most_played_songs: Song[],
|
|
|
|
most_played_albums: Album[],
|
|
|
|
most_played_artists: Artist[],
|
|
|
|
recently_added_songs: Song[],
|
|
|
|
recently_added_albums: Album[],
|
|
|
|
recently_played_songs: Song[],
|
|
|
|
}>('overview')
|
|
|
|
|
2022-10-11 15:28:43 +00:00
|
|
|
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)
|
|
|
|
|
2022-10-11 15:28:43 +00:00
|
|
|
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)
|
|
|
|
this.state.recentlyAddedAlbums = albumStore.syncWithVault(resource.recently_added_albums)
|
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
recentlyPlayedStore.excerptState.songs = songStore.syncWithVault(resource.recently_played_songs)
|
|
|
|
|
2024-04-29 19:31:54 +00:00
|
|
|
this.refreshPlayStats()
|
2022-06-10 10:47:46 +00:00
|
|
|
},
|
|
|
|
|
2024-04-29 19:31:54 +00:00
|
|
|
refreshPlayStats () {
|
2022-06-10 10:47:46 +00:00
|
|
|
this.state.mostPlayedSongs = songStore.getMostPlayed(7)
|
2024-01-04 09:16:02 +00:00
|
|
|
this.state.recentlyPlayed = recentlyPlayedStore.excerptState.songs.filter(
|
2024-01-24 22:39:47 +00:00
|
|
|
({ deleted, play_count }) => !deleted && play_count > 0
|
2024-01-04 09:16:02 +00:00
|
|
|
)
|
2022-06-10 10:47:46 +00:00
|
|
|
}
|
|
|
|
}
|