firefish/packages/client/src/pages/follow-requests.vue
ThatOneCalculator cd7c10b7eb
refactor: 🍱 use webp for error images instead of avif
Ended up having better compression and wider compatibility
2023-09-25 20:57:14 -07:00

202 lines
4.1 KiB
Vue

<template>
<MkStickyContainer>
<template #header><MkPageHeader /></template>
<MkSpacer :content-max="800">
<MkPagination ref="paginationComponent" :pagination="pagination">
<template #empty>
<div class="_fullinfo">
<img
src="/static-assets/badges/info.webp"
aria-label="none"
class="_ghost"
/>
<div>{{ i18n.ts.noFollowRequests }}</div>
</div>
</template>
<template #default="{ items }">
<MkInfo v-if="$i?.isLocked === false" warn class="info"
>{{ i18n.ts.silencedWarning }}
</MkInfo>
<div class="mk-follow-requests">
<div
v-for="req in items"
:key="req.id"
class="user _panel"
>
<MkAvatar
class="avatar"
:user="req.follower"
:show-indicator="true"
disable-link
/>
<div class="body">
<div class="name">
<MkA
v-user-preview="req.follower.id"
class="name"
:to="userPage(req.follower)"
><MkUserName :user="req.follower"
/></MkA>
<p class="acct">
@{{ acct(req.follower) }}
</p>
</div>
<div
v-if="req.follower.description"
class="description"
:title="req.follower.description"
>
<Mfm
:text="req.follower.description"
:is-note="false"
:author="req.follower"
:i="$i"
:custom-emojis="req.follower.emojis"
:plain="true"
:nowrap="true"
/>
</div>
<div class="actions">
<button
class="_button"
:aria-label="i18n.t('accept')"
@click="accept(req.follower)"
>
<i class="ph-check ph-bold ph-lg"></i>
</button>
<button
class="_button"
:aria-label="i18n.t('reject')"
@click="reject(req.follower)"
>
<i class="ph-x ph-bold ph-lg"></i>
</button>
</div>
</div>
</div>
</div>
</template>
</MkPagination>
</MkSpacer>
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { computed, ref } from "vue";
import MkPagination from "@/components/MkPagination.vue";
import { acct, userPage } from "@/filters/user";
import * as os from "@/os";
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
import { $i } from "@/account";
const paginationComponent = ref<InstanceType<typeof MkPagination>>();
const pagination = {
endpoint: "following/requests/list" as const,
limit: 10,
noPaging: true,
};
function accept(user) {
os.api("following/requests/accept", { userId: user.id }).then(() => {
paginationComponent.value.reload();
});
}
function reject(user) {
os.api("following/requests/reject", { userId: user.id }).then(() => {
paginationComponent.value.reload();
});
}
definePageMetadata(
computed(() => ({
title: i18n.ts.followRequests,
icon: "ph-hand-waving ph-bold ph-lg",
})),
);
</script>
<style lang="scss" scoped>
.mk-follow-requests {
> .user {
display: flex;
padding: 16px;
margin: 10px 0 auto;
> .avatar {
display: block;
flex-shrink: 0;
margin: 0 12px 0 0;
width: 42px;
height: 42px;
border-radius: 8px;
}
> .body {
display: flex;
width: calc(100% - 54px);
position: relative;
> .name {
width: 45%;
@media (max-width: 500px) {
width: 100%;
}
> .name,
> .acct {
display: block;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
margin: 0;
}
> .name {
font-size: 16px;
line-height: 24px;
}
> .acct {
font-size: 15px;
line-height: 16px;
opacity: 0.7;
}
}
> .description {
width: 55%;
line-height: 42px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
opacity: 0.7;
font-size: 14px;
padding-right: 40px;
padding-left: 8px;
box-sizing: border-box;
@media (max-width: 500px) {
display: none;
}
}
> .actions {
position: absolute;
top: 0;
bottom: 0;
right: 0;
margin: auto 0;
> button {
padding: 12px;
}
}
}
}
}
</style>