mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import Vue from 'vue'
 | |
| 
 | |
| export const state = () => ({
 | |
|   streamAudiobook: null,
 | |
|   showEditModal: false,
 | |
|   selectedAudiobook: null,
 | |
|   playOnLoad: false,
 | |
|   isScanning: false,
 | |
|   isScanningCovers: false,
 | |
|   scanProgress: null,
 | |
|   coverScanProgress: null,
 | |
|   developerMode: false,
 | |
|   selectedAudiobooks: [],
 | |
|   processingBatch: false
 | |
| })
 | |
| 
 | |
| export const getters = {
 | |
|   getIsAudiobookSelected: state => audiobookId => {
 | |
|     return !!state.selectedAudiobooks.includes(audiobookId)
 | |
|   },
 | |
|   getNumAudiobooksSelected: state => state.selectedAudiobooks.length
 | |
| }
 | |
| 
 | |
| 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, scanProgress) {
 | |
|     if (scanProgress && scanProgress.progress > 0) state.isScanning = true
 | |
|     state.scanProgress = scanProgress
 | |
|   },
 | |
|   setIsScanningCovers(state, isScanningCovers) {
 | |
|     state.isScanningCovers = isScanningCovers
 | |
|   },
 | |
|   setCoverScanProgress(state, coverScanProgress) {
 | |
|     if (coverScanProgress && coverScanProgress.progress > 0) state.isScanningCovers = true
 | |
|     state.coverScanProgress = coverScanProgress
 | |
|   },
 | |
|   setDeveloperMode(state, val) {
 | |
|     state.developerMode = val
 | |
|   },
 | |
|   setSelectedAudiobooks(state, audiobooks) {
 | |
|     state.selectedAudiobooks = audiobooks
 | |
|   },
 | |
|   toggleAudiobookSelected(state, audiobookId) {
 | |
|     if (state.selectedAudiobooks.includes(audiobookId)) {
 | |
|       state.selectedAudiobooks = state.selectedAudiobooks.filter(a => a !== audiobookId)
 | |
|     } else {
 | |
|       state.selectedAudiobooks.push(audiobookId)
 | |
|     }
 | |
|   },
 | |
|   setProcessingBatch(state, val) {
 | |
|     state.processingBatch = val
 | |
|   }
 | |
| } |