mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-27 07:54:39 +02:00
* wip * wip * wip * wip * Update MkTimeline.vue * wip * wip * wip * Update MkTimeline.vue * Update use-pagination.ts * wip * wip * Update MkTimeline.vue * Update MkTimeline.vue * wip * wip * Update MkTimeline.vue * Update MkTimeline.vue * Update MkTimeline.vue * wip * Update use-pagination.ts * wip * Update use-pagination.ts * Update MkNotifications.vue * Update MkNotifications.vue * wip * wip * wip * Update use-note-capture.ts * Update use-note-capture.ts * Update use-note-capture.ts * wip * wip * wip * wip * Update MkNoteDetailed.vue * wip * wip * Update MkTimeline.vue * wip * fix * Update MkTimeline.vue * wip * test * Revert "test" This reverts commit3375619396. * Update use-pagination.ts * test * Revert "test" This reverts commit42c53c830e. * test * Revert "test" This reverts commitc4f8cda4aa. * Update style.scss * Update MkTimeline.vue * Update MkTimeline.vue * Update MkTimeline.vue * ✌️ * Update MkTimeline.vue * wip * wip * test * Update MkPullToRefresh.vue * Update MkPullToRefresh.vue * Update MkPullToRefresh.vue * Update MkPullToRefresh.vue * Update MkTimeline.vue * wip * tweak navbar * wip * wip * wip * wip * wip * wip * wip * Update home.vue * wip * refactor * wip * wip * Update note.vue * Update navbar.vue * Update MkPullToRefresh.vue * Update MkPullToRefresh.vue * Update MkPullToRefresh.vue * wip * Update MkStreamingNotificationsTimeline.vue * Update use-pagination.ts * wip * improve perf * wip * Update MkNotesTimeline.vue * wip * megre * Update use-pagination.ts * Update use-pagination.ts * Update MkStreamingNotesTimeline.vue * Update use-pagination.ts * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md
39 lines
987 B
Vue
39 lines
987 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_spacer" style="--MI_SPACER-w: 800px;">
|
|
<MkTab v-model="tab" style="margin-bottom: var(--MI-margin);">
|
|
<option value="notes">{{ i18n.ts.notes }}</option>
|
|
<option value="polls">{{ i18n.ts.poll }}</option>
|
|
</MkTab>
|
|
<MkNotesTimeline v-if="tab === 'notes'" :pagination="paginationForNotes"/>
|
|
<MkNotesTimeline v-else-if="tab === 'polls'" :pagination="paginationForPolls"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import MkNotesTimeline from '@/components/MkNotesTimeline.vue';
|
|
import MkTab from '@/components/MkTab.vue';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const paginationForNotes = {
|
|
endpoint: 'notes/featured' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
const paginationForPolls = {
|
|
endpoint: 'notes/polls/recommendation' as const,
|
|
limit: 10,
|
|
offsetMode: true,
|
|
params: {
|
|
excludeChannels: true,
|
|
},
|
|
};
|
|
|
|
const tab = ref('notes');
|
|
</script>
|