mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-25 00:23:09 +02:00
41 lines
1.2 KiB
Vue
41 lines
1.2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkSpacer :contentMax="700">
|
|
<div class="_gaps">
|
|
<MkFoldableSection class="item">
|
|
<template #header><i class="ti ti-activity"></i> Heatmap</template>
|
|
<XHeatmap :user="user" :src="'notes'"/>
|
|
</MkFoldableSection>
|
|
<MkFoldableSection class="item">
|
|
<template #header><i class="ph-pencil ph-bold ph-lg"></i> Notes</template>
|
|
<XNotes :user="user"/>
|
|
</MkFoldableSection>
|
|
<MkFoldableSection class="item">
|
|
<template #header><i class="ph-users ph-bold pg-lg"></i> Following</template>
|
|
<XFollowing :user="user"/>
|
|
</MkFoldableSection>
|
|
<MkFoldableSection class="item">
|
|
<template #header><i class="ph-eye ph-bold ph-lg"></i> PV</template>
|
|
<XPv :user="user"/>
|
|
</MkFoldableSection>
|
|
</div>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import * as Misskey from 'misskey-js';
|
|
import XHeatmap from './activity.heatmap.vue';
|
|
import XPv from './activity.pv.vue';
|
|
import XNotes from './activity.notes.vue';
|
|
import XFollowing from './activity.following.vue';
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
|
|
|
const props = defineProps<{
|
|
user: Misskey.entities.User;
|
|
}>();
|
|
|
|
</script>
|