mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
|
|
export const state = () => ({
|
|
streamAudiobook: null,
|
|
showEditModal: false,
|
|
selectedAudiobook: null,
|
|
playOnLoad: false,
|
|
isScanning: false,
|
|
scanProgress: null,
|
|
developerMode: false
|
|
})
|
|
|
|
export const getters = {}
|
|
|
|
export const actions = {}
|
|
|
|
export const mutations = {
|
|
setStreamAudiobook(state, audiobook) {
|
|
state.playOnLoad = true
|
|
state.streamAudiobook = audiobook
|
|
},
|
|
setStream(state, stream) {
|
|
state.playOnLoad = false
|
|
state.streamAudiobook = stream ? stream.audiobook : null
|
|
},
|
|
clearStreamAudiobook(state, audiobookId) {
|
|
if (state.streamAudiobook && state.streamAudiobook.id === audiobookId) {
|
|
state.playOnLoad = false
|
|
state.streamAudiobook = null
|
|
}
|
|
},
|
|
setPlayOnLoad(state, val) {
|
|
state.playOnLoad = val
|
|
},
|
|
showEditModal(state, audiobook) {
|
|
state.selectedAudiobook = audiobook
|
|
state.showEditModal = true
|
|
},
|
|
setShowEditModal(state, val) {
|
|
state.showEditModal = val
|
|
},
|
|
setIsScanning(state, isScanning) {
|
|
state.isScanning = isScanning
|
|
},
|
|
setScanProgress(state, progress) {
|
|
if (progress > 0) state.isScanning = true
|
|
state.scanProgress = progress
|
|
},
|
|
setDeveloperMode(state, val) {
|
|
state.developerMode = val
|
|
}
|
|
} |