* wip * Update maps.ts * wip * wip * wip * wip * Update base.vue * wip * wip * wip * wip * Update link.vue * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update privacy.vue * wip * wip * wip * wip * Update range.vue * wip * wip * wip * wip * Update profile.vue * wip * Update a.vue * Update index.vue * wip * Update sidebar.vue * wip * wip * Update account-info.vue * Update a.vue * wip * wip * Update sounds.vue * wip * wip * wip * wip * wip * wip * wip * wip * Update account-info.vue * Update account-info.vue * wip * wip * wip * Update d-persimmon.json5 * wip
		
			
				
	
	
		
			126 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
<MkContainer>
 | 
						|
	<template #header><Fa :icon="faChartBar" style="margin-right: 0.5em;"/>{{ $t('activity') }}</template>
 | 
						|
 | 
						|
	<div style="padding: 8px;">
 | 
						|
		<div ref="chart"></div>
 | 
						|
	</div>
 | 
						|
</MkContainer>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { defineComponent } from 'vue';
 | 
						|
import ApexCharts from 'apexcharts';
 | 
						|
import { faChartBar } from '@fortawesome/free-solid-svg-icons';
 | 
						|
import * as os from '@/os';
 | 
						|
import MkContainer from '@/components/ui/container.vue';
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
	components: {
 | 
						|
		MkContainer,
 | 
						|
	},
 | 
						|
	props: {
 | 
						|
		user: {
 | 
						|
			type: Object,
 | 
						|
			required: true
 | 
						|
		},
 | 
						|
		limit: {
 | 
						|
			type: Number,
 | 
						|
			required: false,
 | 
						|
			default: 40
 | 
						|
		}
 | 
						|
	},
 | 
						|
	data() {
 | 
						|
		return {
 | 
						|
			fetching: true,
 | 
						|
			data: [],
 | 
						|
			peak: null,
 | 
						|
			faChartBar,
 | 
						|
		};
 | 
						|
	},
 | 
						|
	mounted() {
 | 
						|
		os.api('charts/user/notes', {
 | 
						|
			userId: this.user.id,
 | 
						|
			span: 'day',
 | 
						|
			limit: this.limit
 | 
						|
		}).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 < this.limit; 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: {
 | 
						|
						columnWidth: '40%'
 | 
						|
					}
 | 
						|
				},
 | 
						|
				dataLabels: {
 | 
						|
					enabled: false
 | 
						|
				},
 | 
						|
				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
 | 
						|
					}
 | 
						|
				}
 | 
						|
			});
 | 
						|
 | 
						|
			chart.render();
 | 
						|
		});
 | 
						|
	}
 | 
						|
});
 | 
						|
</script>
 |