2018-02-15 10:33:34 +01:00
|
|
|
<template>
|
2020-11-25 13:31:34 +01:00
|
|
|
<MkContainer>
|
2021-04-20 16:22:59 +02:00
|
|
|
<template #header><i class="fas fa-chart-bar" style="margin-right: 0.5em;"></i>{{ $ts.activity }}</template>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
|
|
|
<div style="padding: 8px;">
|
2022-02-04 08:39:09 +01:00
|
|
|
<MkChart src="per-user-notes" :args="{ user, withoutAll: true }" span="day" :limit="limit" :bar="true" :stacked="true" :detailed="false" :aspect-ratio="5"/>
|
2020-11-25 13:31:34 +01:00
|
|
|
</div>
|
|
|
|
</MkContainer>
|
2018-02-15 10:33:34 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
|
|
|
import MkChart from '@/components/chart.vue';
|
2018-11-03 08:44:05 +01:00
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
user: misskey.entities.User;
|
|
|
|
limit?: number;
|
|
|
|
}>(), {
|
|
|
|
limit: 40,
|
2018-02-15 10:33:34 +01:00
|
|
|
});
|
|
|
|
</script>
|