Sharkey/packages/client/src/pages/user/index.timeline.vue

46 lines
1.1 KiB
Vue
Raw Normal View History

<template>
2022-07-14 17:31:01 +03:00
<MkStickyContainer>
<template #header>
<MkTab v-model="include" :class="$style.tab">
2022-07-20 16:24:26 +03:00
<option :value="null">{{ i18n.ts.notes }}</option>
<option value="replies">{{ i18n.ts.notesAndReplies }}</option>
<option value="files">{{ i18n.ts.withFiles }}</option>
2022-07-14 17:31:01 +03:00
</MkTab>
</template>
<XNotes :no-gap="true" :pagination="pagination"/>
2022-07-14 17:31:01 +03:00
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { ref, computed } from 'vue';
import * as misskey from 'misskey-js';
2021-11-11 19:02:25 +02:00
import XNotes from '@/components/notes.vue';
import MkTab from '@/components/tab.vue';
import * as os from '@/os';
2022-07-20 16:24:26 +03:00
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>
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
}
</style>