2018-10-23 12:50:10 +02:00

187 lines
5.0 KiB
Vue

<template>
<ds-card>
<no-ssr>
<ds-space margin="large">
<ds-flex>
<ds-flex-item>
<ds-number
:count="0"
label="Users"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countUsers || 0"
:end-val="statistics.countUsers || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
<ds-flex-item>
<ds-number
:count="0"
label="Posts"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countPosts || 0"
:end-val="statistics.countPosts || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
<ds-flex-item>
<ds-number
:count="0"
label="Comments"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countComments || 0"
:end-val="statistics.countComments || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
</ds-flex>
</ds-space>
<ds-space margin="x-large">
<ds-flex>
<ds-flex-item>
<ds-number
:count="0"
label="Notifications"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countNotifications || 0"
:end-val="statistics.countNotifications || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
<ds-flex-item>
<ds-number
:count="0"
label="Organization"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countOrganizations || 0"
:end-val="statistics.countOrganizations || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
<ds-flex-item>
<ds-number
:count="0"
label="Projects"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countProjects || 0"
:end-val="statistics.countProjects || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
</ds-flex>
</ds-space>
<ds-space margin="x-large">
<ds-flex>
<ds-flex-item>
<ds-number
:count="0"
label="Open Invites"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countInvites || 0"
:end-val="statistics.countInvites || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
<ds-flex-item>
<ds-number
:count="0"
label="Follows"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countFollows || 0"
:end-val="statistics.countFollows || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
<ds-flex-item>
<ds-number
:count="0"
label="Shouts"
size="x-large"
uppercase>
<no-ssr slot="count">
<hc-count-to
:start-val="statisticsBefore.countShouts || 0"
:end-val="statistics.countShouts || 0" />
</no-ssr>
</ds-number>
</ds-flex-item>
</ds-flex>
</ds-space>
</no-ssr>
</ds-card>
</template>
<script>
import gql from 'graphql-tag'
import HcCountTo from '~/components/CountTo.vue'
export default {
components: {
HcCountTo
},
data() {
return {
statistics: {},
statisticsBefore: {}
}
},
computed: {
isClient() {
return process.client
}
},
watch: {
statistics(newVal) {
setTimeout(() => {
this.statisticsBefore = { ...this.statistics }
}, 3000)
}
},
mounted() {
this.$apollo.queries.statistics.startPolling(5000)
},
apollo: {
statistics: {
query: gql(`
query {
statistics {
countUsers
countPosts
countComments
countNotifications
countOrganizations
countProjects
countInvites
countFollows
countShouts
}
}
`)
}
}
}
</script>