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>
|
|
|
|
<option value="replies">{{ i18n.ts.notesAndReplies }}</option>
|
|
|
|
<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';
|
|
|
|
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';
|
2022-07-20 16:24:26 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-01-09 14:35:35 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
user: misskey.entities.UserDetailed;
|
|
|
|
}>();
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-01-09 14:35:35 +02:00
|
|
|
const include = ref<string | null>(null);
|
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-02-14 09:25:14 +02:00
|
|
|
includeReplies: include.value === 'replies' || include.value === 'files',
|
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);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
|
|
|
}
|
2021-04-13 21:23:29 +03:00
|
|
|
</style>
|