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

67 lines
1.6 KiB
TypeScript
Raw Normal View History

import { reactive, ref } from 'vue'
2024-03-15 15:09:50 +00:00
import { http } from '@/services'
2022-04-15 14:24:30 +00:00
export const defaultPreferences: UserPreferences = {
volume: 7,
show_now_playing_notification: true,
repeat_mode: 'NO_REPEAT',
confirm_before_closing: false,
equalizer: {
name: 'Default',
preamp: 0,
gains: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
},
artists_view_mode: null,
albums_view_mode: null,
transcode_on_mobile: false,
support_bar_no_bugging: false,
show_album_art_overlay: true,
lyrics_zoom_level: 1,
theme: null,
visualizer: 'default',
active_extra_panel_tab: null,
2024-03-25 22:59:38 +00:00
make_uploads_public: false,
continuous_playback: false
2022-04-15 14:24:30 +00:00
}
const preferenceStore = {
initialized: ref(false),
2022-04-15 14:24:30 +00:00
state: reactive<UserPreferences>(defaultPreferences),
2022-04-15 14:24:30 +00:00
init (preferences: UserPreferences = defaultPreferences) {
Object.assign(this.state, preferences)
2022-04-15 14:24:30 +00:00
this.setupProxy()
this.initialized.value = true
2022-04-15 14:24:30 +00:00
},
/**
* Proxy the state properties, so that each can be directly accessed using the key.
*/
2022-04-20 15:57:53 +00:00
setupProxy () {
2022-04-15 14:24:30 +00:00
Object.keys(this.state).forEach(key => {
Object.defineProperty(this, key, {
get: (): any => this.get(key),
set: (value: any): void => this.set(key, value),
configurable: true
})
})
},
set (key: keyof UserPreferences, value: any) {
if (this.state[key] === value) return
this.state[key] = value
http.silently.patch('me/preferences', { key, value })
2022-04-15 14:24:30 +00:00
},
2022-04-20 15:57:53 +00:00
get (key: string) {
2022-10-31 14:55:24 +00:00
return this.state?.[key]
2022-04-15 14:24:30 +00:00
}
}
const exported = preferenceStore as unknown as Omit<typeof preferenceStore, 'setupProxy'> & UserPreferences
2022-04-15 14:24:30 +00:00
2022-10-31 14:55:24 +00:00
export { exported as preferenceStore }