summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/SkFollowingRecentNotes.vue
blob: 3eb2ac857281b8ace80e0c2312853a1deb2ec852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!--
SPDX-FileCopyrightText: hazelnoot and other Sharkey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->

<template>
<MkPullToRefresh :refresher="() => reload()">
	<MkPagination ref="latestNotesPaging" :pagination="latestNotesPagination" @init="onListReady">
		<template #empty>
			<div class="_fullinfo">
				<img :src="infoImageUrl" draggable="false" :alt="i18n.ts.noNotes" aria-hidden="true"/>
				<div>{{ i18n.ts.noNotes }}</div>
			</div>
		</template>

		<template #default="{ items: notes }">
			<MkDateSeparatedList v-slot="{ item: note }" :items="notes" :class="$style.panel" :noGap="true">
				<SkFollowingFeedEntry :note="note" :class="props.selectedUserId == note.userId && $style.selected" @select="u => selectUser(u.id)"/>
			</MkDateSeparatedList>
		</template>
	</MkPagination>
</MkPullToRefresh>
</template>

<script setup lang="ts">
import { computed, shallowRef } from 'vue';
import type { Paging } from '@/components/MkPagination.vue';
import type { FollowingFeedTab } from '@/types/following-feed.js';
import { infoImageUrl } from '@/instance.js';
import { i18n } from '@/i18n.js';
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
import MkPagination from '@/components/MkPagination.vue';
import SkFollowingFeedEntry from '@/components/SkFollowingFeedEntry.vue';
import MkPullToRefresh from '@/components/MkPullToRefresh.vue';

const props = defineProps<{
	userList: FollowingFeedTab;
	withNonPublic: boolean;
	withQuotes: boolean;
	withReplies: boolean;
	withBots: boolean;
	onlyFiles: boolean;
	selectedUserId?: string | null;
}>();

const emit = defineEmits<{
	(event: 'loaded', initialUserId?: string): void;
	(event: 'userSelected', userId: string): void;
}>();

defineExpose({ reload });

async function reload() {
	await latestNotesPaging.value?.reload();
}

function selectUser(userId: string) {
	emit('userSelected', userId);
}

async function onListReady(): Promise<void> {
	// This looks complicated, but it's really just a trick to get the first user ID from the pagination.
	const initialUserId = latestNotesPaging.value?.items.size
		? latestNotesPaging.value.items.values().next().value?.userId
		: undefined;

	emit('loaded', initialUserId);
}

const latestNotesPagination: Paging<'notes/following'> = {
	endpoint: 'notes/following' as const,
	limit: 20,
	params: computed(() => ({
		list: props.userList,
		filesOnly: props.onlyFiles,
		includeNonPublic: props.withNonPublic,
		includeReplies: props.withReplies,
		includeQuotes: props.withQuotes,
		includeBots: props.withBots,
	})),
};

const latestNotesPaging = shallowRef<InstanceType<typeof MkPagination>>();
</script>

<style module lang="scss">
.panel {
	background: var(--MI_THEME-panel);
}

@keyframes border {
	from {
		border-left: 0 solid var(--MI_THEME-accent);
	}
	to {
		border-left: 6px solid var(--MI_THEME-accent);
	}
}

.selected {
	animation: border 0.2s ease-out 0s 1 forwards;

	&:first-child {
		border-top-left-radius: 5px;
	}

	&:last-child {
		border-bottom-left-radius: 5px;
	}
}
</style>