mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 21:03:09 +02:00
1f7a81aae7
* update deps
* node16
* wip
* wip
* wip
* Update test-utils.ts
* wip
* Update tsconfig.json
* wip
* Update package.json
* wip
* Update following.vue
* Update followers.vue
* Update index.vue
* Update share.vue
* Update MkUserPopup.vue
* Update MkPostForm.vue
* wip
* Update MkTokenGenerateWindow.vue
* Update MkPagination.vue
* refactor
* update deps
* update deps
* Update sw.ts
* wip
* wip
* wip
* Update FetchInstanceMetadataService.ts
* Update FetchInstanceMetadataService.ts
* update node
* update deps
* 🎨
64 lines
1.5 KiB
Vue
64 lines
1.5 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkContainer>
|
|
<template #icon><i class="ti ti-chart-line"></i></template>
|
|
<template #header>{{ i18n.ts.activity }}</template>
|
|
<template #func="{ buttonStyleClass }">
|
|
<button class="_button" :class="buttonStyleClass" @click="showMenu">
|
|
<i class="ti ti-dots"></i>
|
|
</button>
|
|
</template>
|
|
|
|
<div style="padding: 8px;">
|
|
<MkChart :src="chartSrc" :args="{ user, withoutAll: true }" span="day" :limit="limit" :bar="true" :stacked="true" :detailed="false" :aspectRatio="5"/>
|
|
</div>
|
|
</MkContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import MkContainer from '@/components/MkContainer.vue';
|
|
import MkChart from '@/components/MkChart.vue';
|
|
import * as os from '@/os';
|
|
import { i18n } from '@/i18n';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
user: Misskey.entities.User;
|
|
limit?: number;
|
|
}>(), {
|
|
limit: 50,
|
|
});
|
|
|
|
let chartSrc = $ref('per-user-notes');
|
|
|
|
function showMenu(ev: MouseEvent) {
|
|
os.popupMenu([{
|
|
text: i18n.ts.notes,
|
|
active: chartSrc === 'per-user-notes',
|
|
action: () => {
|
|
chartSrc = 'per-user-notes';
|
|
},
|
|
}, {
|
|
text: i18n.ts.numberOfProfileView,
|
|
active: chartSrc === 'per-user-pv',
|
|
action: () => {
|
|
chartSrc = 'per-user-pv';
|
|
},
|
|
}, /*, {
|
|
text: i18n.ts.following,
|
|
action: () => {
|
|
chartSrc = 'per-user-following';
|
|
}
|
|
}, {
|
|
text: i18n.ts.followers,
|
|
action: () => {
|
|
chartSrc = 'per-user-followers';
|
|
}
|
|
}*/], ev.currentTarget ?? ev.target);
|
|
}
|
|
</script>
|