show card details in modal

Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
This commit is contained in:
Jakob Röhrl
2020-06-19 12:51:42 +02:00
committed by Julius Härtl
parent a123a41b0e
commit a4f59f6c64
4 changed files with 666 additions and 168 deletions

View File

@@ -59,6 +59,7 @@ export default new Vuex.Store({
showArchived: false,
navShown: true,
compactMode: localStorage.getItem('deck.compactMode') === 'true',
cardDetailsInModal: false,
sidebarShown: false,
currentBoard: null,
currentCard: null,
@@ -202,6 +203,9 @@ export default new Vuex.Store({
state.compactMode = !state.compactMode
localStorage.setItem('deck.compactMode', state.compactMode)
},
setCardDetailsInModal(state, show) {
state.cardDetailsInModal = show
},
setBoards(state, boards) {
state.boards = boards
},
@@ -276,6 +280,7 @@ export default new Vuex.Store({
Vue.delete(state.currentBoard.acl, removeIndex)
}
},
},
actions: {
setFilter({ commit }, filter) {
@@ -389,6 +394,9 @@ export default new Vuex.Store({
toggleCompactMode({ commit }) {
commit('toggleCompactMode')
},
setCardDetailsInModal({ commit }, show) {
commit('setCardDetailsInModal', show)
},
setCurrentBoard({ commit }, board) {
commit('setCurrentBoard', board)
},