mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 04:25:13 +00:00
Add following and follower relationship view
This commit is contained in:
parent
a292e46f84
commit
80cbf00eac
1 changed files with 83 additions and 0 deletions
|
@ -123,6 +123,36 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
</MkA>
|
||||
</MkPagination>
|
||||
</div>
|
||||
<div v-else-if="tab === 'following'" key="following" class="_gaps_m">
|
||||
<MkPagination v-slot="{items}" :pagination="followingPagination">
|
||||
<div class="follow-relations-list">
|
||||
<div v-for="followRelationship in items" :key="followRelationship.id" class="follow-relation">
|
||||
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.followee.updatedAt)}`" :to="`/admin/user/${followRelationship.followee.id}`">
|
||||
<MkUserCardMini :user="followRelationship.followee" :withChart="false" />
|
||||
</MkA>
|
||||
<span class="arrow">→</span>
|
||||
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.follower.updatedAt)}`" :to="`/admin/user/${followRelationship.follower.id}`">
|
||||
<MkUserCardMini :user="followRelationship.follower" :withChart="false" />
|
||||
</MkA>
|
||||
</div>
|
||||
</div>
|
||||
</MkPagination>
|
||||
</div>
|
||||
<div v-else-if="tab === 'followers'" key="followers" class="_gaps_m">
|
||||
<MkPagination v-slot="{items}" :pagination="followersPagination">
|
||||
<div class="follow-relations-list">
|
||||
<div v-for="followRelationship in items" :key="followRelationship.id" class="follow-relation">
|
||||
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.followee.updatedAt)}`" :to="`/admin/user/${followRelationship.followee.id}`">
|
||||
<MkUserCardMini :user="followRelationship.followee" :withChart="false" />
|
||||
</MkA>
|
||||
<span class="arrow">←</span>
|
||||
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.follower.updatedAt)}`" :to="`/admin/user/${followRelationship.follower.id}`">
|
||||
<MkUserCardMini :user="followRelationship.follower" :withChart="false" />
|
||||
</MkA>
|
||||
</div>
|
||||
</div>
|
||||
</MkPagination>
|
||||
</div>
|
||||
<div v-else-if="tab === 'raw'" key="raw" class="_gaps_m">
|
||||
<MkObjectView tall :value="instance">
|
||||
</MkObjectView>
|
||||
|
@ -185,6 +215,24 @@ const usersPagination = {
|
|||
offsetMode: true,
|
||||
};
|
||||
|
||||
const followingPagination = {
|
||||
endpoint: 'federation/following' as const,
|
||||
limit: 10,
|
||||
params: {
|
||||
host: props.host,
|
||||
},
|
||||
offsetMode: false,
|
||||
};
|
||||
|
||||
const followersPagination = {
|
||||
endpoint: 'federation/followers' as const,
|
||||
limit: 10,
|
||||
params: {
|
||||
host: props.host,
|
||||
},
|
||||
offsetMode: false,
|
||||
};
|
||||
|
||||
watch(moderationNote, async () => {
|
||||
await misskeyApi('admin/federation/update-instance', { host: instance.value.host, moderationNote: moderationNote.value });
|
||||
});
|
||||
|
@ -292,6 +340,14 @@ const headerTabs = computed(() => [{
|
|||
key: 'users',
|
||||
title: i18n.ts.users,
|
||||
icon: 'ti ti-users',
|
||||
}, {
|
||||
key: 'following',
|
||||
title: i18n.ts.following,
|
||||
icon: 'ti ti-arrow-right',
|
||||
}, {
|
||||
key: 'followers',
|
||||
title: i18n.ts.followers,
|
||||
icon: 'ti ti-arrow-left',
|
||||
}, {
|
||||
key: 'raw',
|
||||
title: 'Raw',
|
||||
|
@ -334,4 +390,31 @@ definePageMetadata(() => ({
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.follow-relations-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
|
||||
.follow-relation {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: space-between;
|
||||
|
||||
.user {
|
||||
flex: 1;
|
||||
max-width: 45%;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.arrow {
|
||||
font-size: 1.5em;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue