2018-02-15 10:33:34 +01:00
|
|
|
<template>
|
2018-02-23 18:46:09 +01:00
|
|
|
<div class="mk-activity">
|
2018-11-03 08:44:05 +01:00
|
|
|
<div ref="chart"></div>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-03 08:44:05 +01:00
|
|
|
import * as ApexCharts from 'apexcharts';
|
|
|
|
|
2018-02-15 10:33:34 +01:00
|
|
|
export default Vue.extend({
|
|
|
|
props: ['user'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
data: [],
|
|
|
|
peak: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.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: 21
|
|
|
|
}).then(stats => {
|
|
|
|
const normal = [];
|
|
|
|
const reply = [];
|
|
|
|
const renote = [];
|
|
|
|
|
|
|
|
const now = new Date();
|
|
|
|
const y = now.getFullYear();
|
|
|
|
const m = now.getMonth();
|
|
|
|
const d = now.getDate();
|
|
|
|
|
|
|
|
for (let i = 0; i < 21; i++) {
|
|
|
|
const x = new Date(y, m, d - i);
|
|
|
|
normal.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.normal[i]
|
|
|
|
]);
|
|
|
|
reply.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.reply[i]
|
|
|
|
]);
|
|
|
|
renote.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.renote[i]
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
const chart = new ApexCharts(this.$refs.chart, {
|
|
|
|
chart: {
|
|
|
|
type: 'bar',
|
|
|
|
stacked: true,
|
|
|
|
height: 100,
|
|
|
|
sparkline: {
|
|
|
|
enabled: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plotOptions: {
|
|
|
|
bar: {
|
2019-01-17 09:54:25 +01:00
|
|
|
columnWidth: '90%'
|
2018-11-03 08:44:05 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
grid: {
|
|
|
|
clipMarkers: false,
|
|
|
|
padding: {
|
|
|
|
top: 0,
|
|
|
|
right: 8,
|
|
|
|
bottom: 0,
|
|
|
|
left: 8
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tooltip: {
|
|
|
|
shared: true,
|
|
|
|
intersect: false
|
|
|
|
},
|
|
|
|
series: [{
|
|
|
|
name: 'Normal',
|
|
|
|
data: normal
|
|
|
|
}, {
|
|
|
|
name: 'Reply',
|
|
|
|
data: reply
|
|
|
|
}, {
|
|
|
|
name: 'Renote',
|
|
|
|
data: renote
|
|
|
|
}],
|
|
|
|
xaxis: {
|
|
|
|
type: 'datetime',
|
|
|
|
crosshairs: {
|
|
|
|
width: 1,
|
|
|
|
opacity: 1
|
|
|
|
}
|
|
|
|
}
|
2018-02-15 10:33:34 +01:00
|
|
|
});
|
2018-11-03 08:44:05 +01:00
|
|
|
|
|
|
|
chart.render();
|
2018-02-15 10:33:34 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-02-23 18:46:09 +01:00
|
|
|
.mk-activity
|
2018-02-15 10:33:34 +01:00
|
|
|
max-width 600px
|
|
|
|
margin 0 auto
|
|
|
|
|
|
|
|
</style>
|