deleted items

Signed-off-by: Jakob <jakob.roehrl@web.de>
This commit is contained in:
Jakob
2019-07-12 10:50:31 +02:00
committed by Julius Härtl
parent fcabdbdc24
commit 10b7d8b335
7 changed files with 88 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
<template>
<div>
<h3>{{ t('deck', 'Deleted stacks') }}</h3>
<ul>
<!-- <li ng-repeat="deletedStack in stackservice.deleted">
<span class="icon icon-deck"></span>
@@ -11,6 +12,7 @@
</ul>
<h3>{{ t('deck', 'Deleted cards') }}</h3>
{{ deletedCards }}
<ul>
<!-- <li ng-repeat="deletedCard in cardservice.deleted">
<span class="icon icon-deck"></span>
@@ -25,7 +27,7 @@
</template>
<script>
import { mapState } from 'vuex'
export default {
name: 'DeletedTabSidebard',
components: {
@@ -39,9 +41,33 @@ export default {
},
data() {
return {
isLoading: false
}
},
computed: {
...mapState({
deletedStacks: state => state.deletedStacks
// deletedCards: state => state.deletedCards
}),
deletedCards() {
console.log(store.state.deletedCards)
return store.state.deletedCards
}
},
created() {
this.getData()
},
methods: {
getData() {
this.isLoading = true
this.$store.dispatch('deletedItems', 1).then(response => {
this.isLoading = false
})
}
}
}
</script>

View File

@@ -71,22 +71,12 @@ export default {
sharees: 'sharees'
}),
unallocatedSharees() {
let ret = []
let allocatedSharees = []
for (var user in this.board.acl) {
allocatedSharees.push(this.board.acl[user].participant.uid)
}
this.sharees.forEach(function(sharee) {
if (allocatedSharees.indexOf(sharee.value.shareWith) === -1) {
ret.push(sharee)
}
return this.sharees.filter((sharee) => {
return Object.values(this.board.acl).findIndex((acl) => {
return acl.participant.uid === sharee.value.shareWith
})
})
return ret
}
},
methods: {
asyncFind(query) {

View File

@@ -159,7 +159,7 @@ export default {
},
assignCardToMe() {
this.copiedCard = Object.assign({}, this.card)
this.copiedCard.assignUser = this.card.owner.uid
this.copiedCard.newUserUid = this.card.owner.uid
this.$store.dispatch('assignCardToMe', this.copiedCard)
},
setCurrentCard() {