mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
117 lines
3.0 KiB
Vue
117 lines
3.0 KiB
Vue
<template>
|
|
<div class="transaction-slot-link">
|
|
<b-row @click="showTransactionLinks()">
|
|
<b-col cols="2">
|
|
<b-avatar icon="link" variant="danger" size="4em"></b-avatar>
|
|
</b-col>
|
|
<b-col>
|
|
<div>{{ $t('gdd_per_link.links_sum') }}</div>
|
|
<div class="small">{{ transactionLinkCount }} offene Links</div>
|
|
</b-col>
|
|
<b-col cols="3">
|
|
<div class="small">Insgesamt</div>
|
|
<div class="small">{{ amount | GDD }}</div>
|
|
</b-col>
|
|
<b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col>
|
|
</b-row>
|
|
<b-collapse v-model="visible">
|
|
<collapse-links-list
|
|
v-model="currentPage"
|
|
:pending="pending"
|
|
:pageSize="pageSize"
|
|
:transactionLinkCount="transactionLinkCount"
|
|
:transactionLinks="transactionLinks"
|
|
/>
|
|
</b-collapse>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
|
// import TypeIcon from '../TransactionRows/TypeIcon'
|
|
// import AmountAndNameRow from '../TransactionRows/AmountAndNameRow'
|
|
// import LinkCountRow from '../TransactionRows/LinkCountRow'
|
|
// import DecayRow from '../TransactionRows/DecayRow'
|
|
import CollapseLinksList from '../DecayInformations/CollapseLinksList'
|
|
import { listTransactionLinks } from '@/graphql/queries'
|
|
|
|
export default {
|
|
name: 'TransactionSlotLink',
|
|
components: {
|
|
CollapseIcon,
|
|
// TypeIcon,
|
|
// AmountAndNameRow,
|
|
// LinkCountRow,
|
|
// DecayRow,
|
|
CollapseLinksList,
|
|
},
|
|
props: {
|
|
amount: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
decay: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
transactionLinkCount: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
visible: false,
|
|
transactionLinks: [],
|
|
currentPage: 1,
|
|
pageSize: 5,
|
|
pending: false,
|
|
}
|
|
},
|
|
methods: {
|
|
showTransactionLinks() {
|
|
if (this.visible) {
|
|
this.visible = false
|
|
} else {
|
|
this.transactionLinks = []
|
|
if (this.currentPage === 1) {
|
|
this.updateListTransactionLinks()
|
|
} else {
|
|
this.currentPage = 1
|
|
}
|
|
this.visible = true
|
|
}
|
|
},
|
|
async updateListTransactionLinks() {
|
|
if (this.currentPage === 0) {
|
|
this.transactionLinks = []
|
|
this.currentPage = 1
|
|
} else {
|
|
this.pending = true
|
|
this.$apollo
|
|
.query({
|
|
query: listTransactionLinks,
|
|
variables: {
|
|
currentPage: this.currentPage,
|
|
},
|
|
fetchPolicy: 'network-only',
|
|
})
|
|
.then((result) => {
|
|
this.transactionLinks = [...this.transactionLinks, ...result.data.listTransactionLinks]
|
|
this.$emit('update-transactions')
|
|
this.pending = false
|
|
})
|
|
.catch((err) => {
|
|
this.toastError(err.message)
|
|
this.pending = false
|
|
})
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
currentPage() {
|
|
this.updateListTransactionLinks()
|
|
},
|
|
},
|
|
}
|
|
</script>
|