2023-07-27 00:31:52 -05:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2023-05-19 06:52:15 -05:00
|
|
|
<MkSpacer :contentMax="800" style="padding-top: 0">
|
2023-02-10 22:08:18 -06:00
|
|
|
<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>
|
2023-05-19 06:52:15 -05:00
|
|
|
<MkNotes :noGap="true" :pagination="pagination" :class="$style.tl"/>
|
2023-02-10 22:08:18 -06:00
|
|
|
</MkStickyContainer>
|
|
|
|
</MkSpacer>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 06:35:35 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, computed } from 'vue';
|
2023-09-03 23:33:38 -05:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-02-21 20:00:34 -06:00
|
|
|
import MkNotes from '@/components/MkNotes.vue';
|
2022-08-30 10:24:33 -05:00
|
|
|
import MkTab from '@/components/MkTab.vue';
|
2022-07-20 08:24:26 -05:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-09 06:35:35 -06:00
|
|
|
const props = defineProps<{
|
2023-09-03 23:33:38 -05:00
|
|
|
user: Misskey.entities.UserDetailed;
|
2022-01-09 06:35:35 -06:00
|
|
|
}>();
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-09 06:35:35 -06:00
|
|
|
const include = ref<string | null>(null);
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-09 06:35:35 -06:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/notes' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
2023-02-14 01:25:14 -06:00
|
|
|
includeReplies: include.value === 'replies' || include.value === 'files',
|
2022-01-09 06:35:35 -06:00
|
|
|
withFiles: include.value === 'files',
|
|
|
|
})),
|
|
|
|
};
|
2020-01-29 13:37:25 -06:00
|
|
|
</script>
|
2021-04-13 13:23:29 -05:00
|
|
|
|
2022-07-14 09:31:01 -05:00
|
|
|
<style lang="scss" module>
|
|
|
|
.tab {
|
|
|
|
margin: calc(var(--margin) / 2) 0;
|
|
|
|
padding: calc(var(--margin) / 2) 0;
|
|
|
|
background: var(--bg);
|
2021-04-13 13:23:29 -05:00
|
|
|
}
|
2023-02-10 22:08:18 -06:00
|
|
|
|
|
|
|
.tl {
|
|
|
|
background: var(--bg);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
|
|
|
}
|
2021-04-13 13:23:29 -05:00
|
|
|
</style>
|