mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 22:03:09 +02:00
ae5d052274
to keep things manageable i merged a lot of one off values into just a handful of common sizes, so some parts of the ui will look different than upstream even with the "Misskey" rounding mode
160 lines
3.6 KiB
Vue
160 lines
3.6 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader/></template>
|
|
<MkSpacer :contentMax="800">
|
|
<MkPagination ref="paginationComponent" :pagination="pagination">
|
|
<template #empty>
|
|
<div class="_fullinfo">
|
|
<img :src="infoImageUrl" class="_ghost"/>
|
|
<div>{{ i18n.ts.noFollowRequests }}</div>
|
|
</div>
|
|
</template>
|
|
<template #default="{items}">
|
|
<div class="mk-follow-requests">
|
|
<div v-for="req in items" :key="req.id" class="user _panel">
|
|
<MkAvatar class="avatar" :user="req.follower" indicator link preview/>
|
|
<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 class="commands">
|
|
<MkButton class="command" rounded primary @click="accept(req.follower)"><i class="ph-check ph-bold ph-lg"/> {{ i18n.ts.accept }}</MkButton>
|
|
<MkButton class="command" rounded danger @click="reject(req.follower)"><i class="ph-x ph-bold ph-lg"/> {{ i18n.ts.reject }}</MkButton>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</MkPagination>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { shallowRef, computed } from 'vue';
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import { userPage, acct } from '@/filters/user.js';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { infoImageUrl } from '@/instance.js';
|
|
|
|
const paginationComponent = shallowRef<InstanceType<typeof MkPagination>>();
|
|
|
|
const pagination = {
|
|
endpoint: 'following/requests/list' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
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();
|
|
});
|
|
}
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata(computed(() => ({
|
|
title: i18n.ts.followRequests,
|
|
icon: 'ph-user-plus ph-bold ph-lg',
|
|
})));
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mk-follow-requests {
|
|
> .user {
|
|
display: flex;
|
|
padding: 16px;
|
|
|
|
> .avatar {
|
|
display: block;
|
|
flex-shrink: 0;
|
|
margin: 0 12px 0 0;
|
|
width: 42px;
|
|
height: 42px;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
> .body {
|
|
display: flex;
|
|
width: calc(100% - 54px);
|
|
position: relative;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
|
|
> .name {
|
|
flex: 1 1 50%;
|
|
|
|
> .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;
|
|
}
|
|
}
|
|
|
|
> .commands {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
> .actions {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
margin: auto 0;
|
|
|
|
> button {
|
|
padding: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|