mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-16 01:13:09 +02:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
57 lines
1.4 KiB
Vue
57 lines
1.4 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkSpacer :contentMax="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>
|
|
<MkNotes :noGap="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 MkNotes from '@/components/MkNotes.vue';
|
|
import MkTab from '@/components/MkTab.vue';
|
|
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' || include.value === 'files',
|
|
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>
|