2024-09-30 18:06:00 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: hazelnoot and other Sharkey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader v-model:tab="currentTab" :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkHorizontalSwipe v-model:tab="currentTab" :tabs="headerTabs">
|
|
|
|
<MkPullToRefresh :refresher="() => reload()">
|
|
|
|
<MkSpacer :contentMax="1200">
|
|
|
|
<MkPagination ref="pagingComponent" :pagination="pagination">
|
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img :src="infoImageUrl" class="_ghost" alt="No notes found" aria-hidden="true"/>
|
|
|
|
<div>{{ i18n.ts.noNotes }}</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #default="{ items: notes }">
|
|
|
|
<MkDateSeparatedList v-slot="{ item: note }" :items="notes" :class="$style.list" :noGap="true">
|
2024-10-01 20:37:09 +02:00
|
|
|
<FollowingFeedEntry :note="note"/>
|
2024-09-30 18:06:00 +02:00
|
|
|
</MkDateSeparatedList>
|
|
|
|
</template>
|
|
|
|
</MkPagination>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkPullToRefresh>
|
|
|
|
</MkHorizontalSwipe>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
export type FollowingFeedTab = typeof followingTab | typeof mutualsTab;
|
|
|
|
export const followingTab = 'following' as const;
|
|
|
|
export const mutualsTab = 'mutuals' as const;
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-10-01 20:37:09 +02:00
|
|
|
import { computed, ref, shallowRef } from 'vue';
|
2024-09-30 18:06:00 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue';
|
|
|
|
import MkPullToRefresh from '@/components/MkPullToRefresh.vue';
|
|
|
|
import MkPagination, { Paging } from '@/components/MkPagination.vue';
|
|
|
|
import { infoImageUrl } from '@/instance.js';
|
|
|
|
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
|
|
|
|
import { Tab } from '@/components/global/MkPageHeader.tabs.vue';
|
2024-09-30 19:56:10 +02:00
|
|
|
import { PageHeaderItem } from '@/types/page-header.js';
|
2024-10-01 20:37:09 +02:00
|
|
|
import FollowingFeedEntry from '@/components/FollowingFeedEntry.vue';
|
2024-09-30 18:06:00 +02:00
|
|
|
|
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
initialTab?: FollowingFeedTab,
|
|
|
|
}>(), {
|
|
|
|
initialTab: followingTab,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Vue complains, but we *want* to lose reactivity here.
|
|
|
|
// Otherwise the use would be unable to change the tab.
|
|
|
|
// eslint-disable-next-line vue/no-setup-props-reactivity-loss
|
|
|
|
const currentTab = ref(props.initialTab);
|
|
|
|
const mutualsOnly = computed(() => currentTab.value === mutualsTab);
|
|
|
|
|
|
|
|
const pagingComponent = shallowRef<InstanceType<typeof MkPagination>>();
|
|
|
|
|
|
|
|
async function reload() {
|
|
|
|
await pagingComponent.value?.reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
const pagination: Paging<'notes/following'> = {
|
|
|
|
endpoint: 'notes/following' as const,
|
|
|
|
limit: 20,
|
|
|
|
params: computed(() => ({
|
|
|
|
mutualsOnly: mutualsOnly.value,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
|
2024-09-30 19:56:10 +02:00
|
|
|
const headerActions: PageHeaderItem[] = [
|
|
|
|
{
|
|
|
|
icon: 'ti ti-refresh',
|
|
|
|
text: i18n.ts.reload,
|
|
|
|
handler: () => reload(),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2024-09-30 18:06:00 +02:00
|
|
|
const headerTabs = computed(() => [
|
|
|
|
{
|
|
|
|
key: followingTab,
|
|
|
|
icon: 'ti ti-user-check',
|
|
|
|
title: i18n.ts.following,
|
|
|
|
} satisfies Tab,
|
|
|
|
{
|
|
|
|
key: mutualsTab,
|
|
|
|
icon: 'ti ti-user-heart',
|
|
|
|
title: i18n.ts.mutuals,
|
|
|
|
} satisfies Tab,
|
|
|
|
]);
|
|
|
|
|
|
|
|
definePageMetadata(() => ({
|
|
|
|
title: i18n.ts.following,
|
2024-09-30 20:47:35 +02:00
|
|
|
icon: 'ti ti-user-check',
|
2024-09-30 18:06:00 +02:00
|
|
|
}));
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.list {
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
</style>
|