rudeshark.net/packages/client/src/pages/user/index.activity.vue

53 lines
1.3 KiB
Vue
Raw Normal View History

2018-02-15 10:33:34 +01:00
<template>
<MkContainer>
<template #header><i class="ph-chart-bar-bold ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.ts.activity }}</template>
2022-03-11 10:55:47 +01:00
<template #func>
<button class="_button" @click="showMenu">
2022-11-07 03:49:47 +01:00
<i class="ph-dots-three-outline-bold ph-lg"></i>
2022-03-11 10:55:47 +01:00
</button>
</template>
<div style="padding: 8px;">
2022-03-11 10:55:47 +01:00
<MkChart :src="chartSrc" :args="{ user, withoutAll: true }" span="day" :limit="limit" :bar="true" :stacked="true" :detailed="false" :aspect-ratio="5"/>
</div>
</MkContainer>
2018-02-15 10:33:34 +01:00
</template>
<script lang="ts" setup>
import { } from 'vue';
2022-12-12 04:24:12 +01:00
import * as misskey from 'calckey-js';
import MkContainer from '@/components/MkContainer.vue';
import MkChart from '@/components/MkChart.vue';
2022-03-11 10:55:47 +01:00
import * as os from '@/os';
import { i18n } from '@/i18n';
2018-11-03 08:44:05 +01:00
const props = withDefaults(defineProps<{
user: misskey.entities.User;
limit?: number;
}>(), {
2022-02-11 07:14:08 +01:00
limit: 50,
2018-02-15 10:33:34 +01:00
});
2022-03-11 10:55:47 +01:00
let chartSrc = $ref('per-user-notes');
function showMenu(ev: MouseEvent) {
os.popupMenu([{
text: i18n.ts.notes,
active: true,
action: () => {
chartSrc = 'per-user-notes';
},
},/*, {
2022-03-11 10:55:47 +01: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 10:33:34 +01:00
</script>