2018-02-15 11:33:34 +02:00
|
|
|
<template>
|
2020-11-25 14:31:34 +02:00
|
|
|
<MkContainer>
|
2023-01-15 01:30:29 +02:00
|
|
|
<template #icon><i class="ti ti-chart-line"></i></template>
|
2023-04-01 08:01:57 +03:00
|
|
|
<template #header>{{ i18n.ts.activity }}</template>
|
2023-01-15 01:30:29 +02:00
|
|
|
<template #func="{ buttonStyleClass }">
|
|
|
|
<button class="_button" :class="buttonStyleClass" @click="showMenu">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="ti ti-dots"></i>
|
2022-03-11 11:55:47 +02:00
|
|
|
</button>
|
|
|
|
</template>
|
2020-11-25 14:31:34 +02:00
|
|
|
|
|
|
|
<div style="padding: 8px;">
|
2023-05-29 11:24:46 +03:00
|
|
|
<MkChart :src="chartSrc" :args="{ user, withoutAll: true }" span="day" :limit="limit" :bar="true" :stacked="true" :detailed="false" :aspectRatio="5"/>
|
2020-11-25 14:31:34 +02:00
|
|
|
</div>
|
|
|
|
</MkContainer>
|
2018-02-15 11:33:34 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 19:46:14 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkChart from '@/components/MkChart.vue';
|
2022-03-11 11:55:47 +02:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
2018-11-03 09:44:05 +02:00
|
|
|
|
2022-01-12 19:46:14 +02:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
user: misskey.entities.User;
|
|
|
|
limit?: number;
|
|
|
|
}>(), {
|
2022-02-11 08:14:08 +02:00
|
|
|
limit: 50,
|
2018-02-15 11:33:34 +02:00
|
|
|
});
|
2022-03-11 11:55:47 +02:00
|
|
|
|
|
|
|
let chartSrc = $ref('per-user-notes');
|
|
|
|
|
|
|
|
function showMenu(ev: MouseEvent) {
|
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.ts.notes,
|
2023-01-02 03:18:47 +02:00
|
|
|
active: chartSrc === 'per-user-notes',
|
2022-03-11 11:55:47 +02:00
|
|
|
action: () => {
|
|
|
|
chartSrc = 'per-user-notes';
|
2022-06-29 05:13:32 +03:00
|
|
|
},
|
2023-01-02 03:18:47 +02:00
|
|
|
}, {
|
|
|
|
text: i18n.ts.numberOfProfileView,
|
|
|
|
active: chartSrc === 'per-user-pv',
|
|
|
|
action: () => {
|
|
|
|
chartSrc = 'per-user-pv';
|
|
|
|
},
|
2022-12-12 12:27:47 +02:00
|
|
|
}, /*, {
|
2022-03-11 11:55:47 +02:00
|
|
|
text: i18n.ts.following,
|
|
|
|
action: () => {
|
|
|
|
chartSrc = 'per-user-following';
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
text: i18n.ts.followers,
|
|
|
|
action: () => {
|
|
|
|
chartSrc = 'per-user-followers';
|
|
|
|
}
|
|
|
|
}*/], ev.currentTarget ?? ev.target);
|
|
|
|
}
|
2018-02-15 11:33:34 +02:00
|
|
|
</script>
|