0138c3b00e
* MkPageHeader大改造 * ユーザーページのノート一覧をタブにするなど * ✌️ * 🎨 * fix * wheel * clean up * 🎨 * 🎨 * remove console.log * update CHANGELOG.md * fix * fix * fix * ✌️ * header avatar clickable * !hideTitle * Revert "!hideTitle" This reverts commit 19cad428c906f555b73730d602e401a1e943cdef. * fix changelog
54 lines
1.3 KiB
Vue
54 lines
1.3 KiB
Vue
<template>
|
|
<MkSpacer :content-max="800" style="padding-top: 0">
|
|
<MkStickyContainer>
|
|
<template #header>
|
|
<MkTab v-model="include" :class="$style.tab">
|
|
<option :value="null">{{ i18n.ts.notes }}</option>
|
|
<option value="replies">{{ i18n.ts.notesAndReplies }}</option>
|
|
<option value="files">{{ i18n.ts.withFiles }}</option>
|
|
</MkTab>
|
|
</template>
|
|
<XNotes :no-gap="true" :pagination="pagination" :class="$style.tl"/>
|
|
</MkStickyContainer>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, computed } from 'vue';
|
|
import * as misskey from 'misskey-js';
|
|
import XNotes from '@/components/MkNotes.vue';
|
|
import MkTab from '@/components/MkTab.vue';
|
|
import * as os from '@/os';
|
|
import { i18n } from '@/i18n';
|
|
|
|
const props = defineProps<{
|
|
user: misskey.entities.UserDetailed;
|
|
}>();
|
|
|
|
const include = ref<string | null>(null);
|
|
|
|
const pagination = {
|
|
endpoint: 'users/notes' as const,
|
|
limit: 10,
|
|
params: computed(() => ({
|
|
userId: props.user.id,
|
|
includeReplies: include.value === 'replies',
|
|
withFiles: include.value === 'files',
|
|
})),
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.tab {
|
|
margin: calc(var(--margin) / 2) 0;
|
|
padding: calc(var(--margin) / 2) 0;
|
|
background: var(--bg);
|
|
}
|
|
|
|
.tl {
|
|
background: var(--bg);
|
|
border-radius: var(--radius);
|
|
overflow: clip;
|
|
}
|
|
</style>
|