mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
55 lines
1.3 KiB
Vue
55 lines
1.3 KiB
Vue
<template>
|
|
<div class="admin-overview">
|
|
<b-card
|
|
v-show="$store.state.openCreations > 0"
|
|
border-variant="primary"
|
|
header="offene Schöpfungen"
|
|
header-bg-variant="danger"
|
|
header-text-variant="white"
|
|
align="center"
|
|
>
|
|
<b-card-text>
|
|
<b-link to="creation-confirm">
|
|
<h1>{{ $store.state.openCreations }}</h1>
|
|
</b-link>
|
|
</b-card-text>
|
|
</b-card>
|
|
<b-card
|
|
v-show="$store.state.openCreations < 1"
|
|
border-variant="success"
|
|
header="keine offene Schöpfungen"
|
|
header-bg-variant="success"
|
|
header-text-variant="white"
|
|
align="center"
|
|
>
|
|
<b-card-text>
|
|
<b-link to="creation-confirm">
|
|
<h1>{{ $store.state.openCreations }}</h1>
|
|
</b-link>
|
|
</b-card-text>
|
|
</b-card>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { getPendingCreations } from '../graphql/getPendingCreations'
|
|
|
|
export default {
|
|
name: 'overview',
|
|
methods: {
|
|
async getPendingCreations() {
|
|
this.$apollo
|
|
.query({
|
|
query: getPendingCreations,
|
|
fetchPolicy: 'network-only',
|
|
})
|
|
.then((result) => {
|
|
this.$store.commit('setOpenCreations', result.data.getPendingCreations.length)
|
|
})
|
|
},
|
|
},
|
|
created() {
|
|
this.getPendingCreations()
|
|
},
|
|
}
|
|
</script>
|