Add:Open/close RSS feed for library items

This commit is contained in:
advplyr 2023-06-24 14:45:25 -05:00
parent 1ddb6eca00
commit c8053355df
18 changed files with 1238 additions and 12 deletions

View file

@ -38,7 +38,9 @@ export const state = () => ({
showPlaylistsAddCreateModal: false,
showSelectLocalFolderModal: false,
localFolderSelectData: null,
hapticFeedback: 'LIGHT'
hapticFeedback: 'LIGHT',
showRSSFeedOpenCloseModal: false,
rssFeedEntity: null
})
export const getters = {
@ -192,5 +194,12 @@ export const mutations = {
},
setHapticFeedback(state, val) {
state.hapticFeedback = val || 'LIGHT'
},
setShowRSSFeedOpenCloseModal(state, val) {
state.showRSSFeedOpenCloseModal = val
},
setRSSFeedOpenCloseModal(state, entity) {
state.rssFeedEntity = entity
state.showRSSFeedOpenCloseModal = true
}
}