firefish/packages/client/src/components/MkReactedUsers.vue

105 lines
2.1 KiB
Vue

<template>
<div v-if="note" class="reacted-users">
<div :class="$style.tabs">
<button
v-for="reaction in reactions"
:key="reaction"
:class="[$style.tab, { [$style.tabActive]: tab === reaction }]"
class="_button"
@click="tab = reaction"
>
<MkReactionIcon
ref="reactionRef"
:reaction="
reaction
? reaction.replace(/^:(\w+):$/, ':$1@.:')
: reaction
"
:custom-emojis="note.emojis"
style="max-width: 100%"
/>
<span style="margin-left: 4px">{{
note.reactions[reaction]
}}</span>
</button>
</div>
<MkPagination
ref="pagingComponent"
:pagination="pagination"
v-slot="{ items }"
>
<MkUserCardMini v-for="{ user: user } in items" :key="user.id" :user="user" />
</MkPagination>
</div>
<div v-else>
<MkLoading />
</div>
</template>
<script lang="ts" setup>
import { onMounted, ref, watch } from "vue";
import type { entities } from "firefish-js";
import MkReactionIcon from "@/components/MkReactionIcon.vue";
import MkUserCardMini from "@/components/MkUserCardMini.vue";
import * as os from "@/os";
import MkPagination, {
type MkPaginationType,
} from "@/components/MkPagination.vue";
const props = defineProps<{
noteId: entities.Note["id"];
}>();
const note = ref<entities.Note>();
const tab = ref<string | null>(null);
const reactions = ref<string[]>();
const pagingComponent = ref<MkPaginationType<"notes/reactions"> | null>(null);
const pagination = {
endpoint: "notes/reactions" as const,
params: {
noteId: props.noteId,
type: tab.value,
},
offsetMode: true,
limit: 30,
};
function updateUsers(): void {
pagination.params.type = tab.value;
pagingComponent.value?.reload();
}
watch(tab, updateUsers);
onMounted(() => {
os.api("notes/show", {
noteId: props.noteId,
}).then(async (res) => {
reactions.value = Object.keys(res.reactions);
note.value = res;
// updateUsers();
});
});
</script>
<style lang="scss" module>
.tabs {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.tab {
padding: 4px 6px;
border: solid 1px var(--divider);
border-radius: 6px;
max-width: 50%;
}
.tabActive {
border-color: var(--accent);
}
</style>