mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-01 08:44:40 +02:00
Add: Experimental collections edit, book list, collection cover #151
This commit is contained in:
parent
28ccd4e568
commit
465e6869c0
31 changed files with 555 additions and 60 deletions
|
@ -12,7 +12,8 @@ export const state = () => ({
|
|||
},
|
||||
settingsListeners: [],
|
||||
collections: [],
|
||||
collectionsLoaded: false
|
||||
collectionsLoaded: false,
|
||||
collectionsListeners: []
|
||||
})
|
||||
|
||||
export const getters = {
|
||||
|
@ -140,8 +141,18 @@ export const mutations = {
|
|||
} else {
|
||||
state.collections.push(collection)
|
||||
}
|
||||
state.collectionsListeners.forEach((listener) => listener.meth())
|
||||
},
|
||||
removeCollection(state, collection) {
|
||||
state.collections = state.collections.filter(c => c.id !== collection.id)
|
||||
}
|
||||
state.collectionsListeners.forEach((listener) => listener.meth())
|
||||
},
|
||||
addCollectionsListener(state, listener) {
|
||||
var index = state.collectionsListeners.findIndex(l => l.id === listener.id)
|
||||
if (index >= 0) state.collectionsListeners.splice(index, 1, listener)
|
||||
else state.collectionsListeners.push(listener)
|
||||
},
|
||||
removeCollectionsListener(state, listenerId) {
|
||||
state.collectionsListeners = state.collectionsListeners.filter(l => l.id !== listenerId)
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue