2018-02-19 15:37:09 +01:00
|
|
|
<template>
|
2018-04-19 20:56:58 +02:00
|
|
|
<div class="mk-activity">
|
|
|
|
<mk-widget-container :show-header="design == 0" :naked="design == 2">
|
2018-11-08 19:44:35 +01:00
|
|
|
<template slot="header"><fa icon="chart-bar"/>{{ $t('title') }}</template>
|
|
|
|
<button slot="func" :title="$t('toggle')" @click="toggle"><fa icon="sort"/></button>
|
2018-04-19 20:56:58 +02:00
|
|
|
|
2018-11-08 19:44:35 +01:00
|
|
|
<p :class="$style.fetching" v-if="fetching"><fa icon="spinner .pulse" fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p>
|
2018-04-19 20:56:58 +02:00
|
|
|
<template v-else>
|
|
|
|
<x-calendar v-show="view == 0" :data="[].concat(activity)"/>
|
|
|
|
<x-chart v-show="view == 1" :data="[].concat(activity)"/>
|
|
|
|
</template>
|
|
|
|
</mk-widget-container>
|
2018-02-19 15:37:09 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-20 17:39:51 +01:00
|
|
|
import XCalendar from './activity.calendar.vue';
|
|
|
|
import XChart from './activity.chart.vue';
|
2018-02-19 15:37:09 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('desktop/views/components/activity.vue'),
|
2018-02-19 15:37:09 +01:00
|
|
|
components: {
|
2018-02-20 17:39:51 +01:00
|
|
|
XCalendar,
|
|
|
|
XChart
|
2018-02-19 15:37:09 +01:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
design: {
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
initView: {
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
user: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
activity: null,
|
|
|
|
view: this.initView
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-11-03 08:44:05 +01:00
|
|
|
(this as any).api('charts/user/notes', {
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: this.user.id,
|
2018-11-03 08:44:05 +01:00
|
|
|
span: 'day',
|
|
|
|
limit: 7 * 20
|
2018-02-19 15:37:09 +01:00
|
|
|
}).then(activity => {
|
2018-11-03 08:44:05 +01:00
|
|
|
this.activity = activity.diffs.normal.map((_, i) => ({
|
|
|
|
total: activity.diffs.normal[i] + activity.diffs.reply[i] + activity.diffs.renote[i],
|
|
|
|
notes: activity.diffs.normal[i],
|
|
|
|
replies: activity.diffs.reply[i],
|
|
|
|
renotes: activity.diffs.renote[i]
|
|
|
|
}));
|
2018-02-19 15:37:09 +01:00
|
|
|
this.fetching = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
toggle() {
|
|
|
|
if (this.view == 1) {
|
|
|
|
this.view = 0;
|
|
|
|
this.$emit('viewChanged', this.view);
|
|
|
|
} else {
|
|
|
|
this.view++;
|
|
|
|
this.$emit('viewChanged', this.view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2018-04-19 20:56:58 +02:00
|
|
|
<style lang="stylus" module>
|
|
|
|
.fetching
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color #aaa
|
2018-02-19 15:37:09 +01:00
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
> [data-icon]
|
2018-04-19 20:56:58 +02:00
|
|
|
margin-right 4px
|
2018-02-19 15:37:09 +01:00
|
|
|
|
|
|
|
</style>
|