Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
89 lines (79 sloc)
2.27 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import isMobile from 'ismobilejs' | |
import { http } from '@/services' | |
import { | |
userStore, | |
preferenceStore, | |
artistStore, | |
albumStore, | |
songStore, | |
playlistStore, | |
recentlyPlayedStore, | |
queueStore, | |
settingStore | |
} from '.' | |
interface SharedState { | |
albums: Album[] | |
allowDownload: boolean | |
artists: Artist[] | |
cdnUrl: string | |
currentUser: User | null | |
currentVersion: string | |
favorites: Song[] | |
interactions: Interaction[] | |
latestVersion: string | |
originalMediaPath: string | undefined | |
playlists: Playlist[] | |
queued: Song[] | |
recentlyPlayed: string[] | |
settings: Settings | |
songs: Song[] | |
useiTunes: boolean | |
useLastfm: boolean | |
users: User[] | |
useYouTube: boolean | |
} | |
export const sharedStore = { | |
state: { | |
albums: [], | |
allowDownload: false, | |
artists: [], | |
cdnUrl: '', | |
currentUser: null as User | null, | |
currentVersion: '', | |
favorites: [], | |
interactions: [], | |
latestVersion: '', | |
originalMediaPath: '', | |
playlists: [], | |
queued: [], | |
recentlyPlayed: [], | |
settings: {} as Settings, | |
songs: [], | |
useiTunes: false, | |
useLastfm: false, | |
users: [], | |
useYouTube: false | |
}, | |
async init (): Promise<SharedState> { | |
this.state = Object.assign(this.state, await http.get<SharedState>('data')) | |
// Don't allow downloading on mobile devices | |
this.state.allowDownload = this.state.allowDownload && !isMobile.any | |
// Always disable YouTube integration on mobile. | |
this.state.useYouTube = this.state.useYouTube && !isMobile.phone | |
// If this is a new user, initialize his preferences to be an empty object. | |
this.state.currentUser!.preferences = this.state.currentUser!.preferences || {} | |
userStore.init(this.state.users, this.state.currentUser!) | |
preferenceStore.init(this.state.currentUser) | |
artistStore.init(this.state.artists) | |
albumStore.init(this.state.albums) | |
songStore.init(this.state.songs) | |
songStore.initInteractions(this.state.interactions) | |
recentlyPlayedStore.initExcerpt(this.state.recentlyPlayed) | |
playlistStore.init(this.state.playlists) | |
queueStore.init() | |
settingStore.init(this.state.settings) | |
// Keep a copy of the media path. We'll need this to properly warn the user later. | |
this.state.originalMediaPath = this.state.settings.media_path! | |
return this.state | |
} | |
} |