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