rudeshark.net/packages/client/src/pages/user/index.timeline.vue

45 lines
1.0 KiB
Vue
Raw Normal View History

<template>
2021-11-19 11:36:12 +01:00
<div v-sticky-container class="yrzkoczt">
<MkTab v-model="include" class="tab">
2020-12-26 02:47:36 +01:00
<option :value="null">{{ $ts.notes }}</option>
<option value="replies">{{ $ts.notesAndReplies }}</option>
<option value="files">{{ $ts.withFiles }}</option>
2020-11-28 16:18:54 +01:00
</MkTab>
<XNotes ref="timeline" :no-gap="true" :pagination="pagination"/>
</div>
</template>
<script lang="ts" setup>
import { ref, computed } from 'vue';
import * as misskey from 'misskey-js';
2021-11-11 18:02:25 +01:00
import XNotes from '@/components/notes.vue';
import MkTab from '@/components/tab.vue';
import * as os from '@/os';
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 20:23:29 +02:00
<style lang="scss" scoped>
.yrzkoczt {
> .tab {
2021-10-16 11:18:41 +02:00
margin: calc(var(--margin) / 2) 0;
padding: calc(var(--margin) / 2) 0;
2021-04-13 20:23:29 +02:00
background: var(--bg);
}
}
</style>