Fix approving new followers

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2022-11-21 17:29:29 +01:00
parent 7ebc16c5ee
commit b5d6165ce1
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
4 changed files with 35 additions and 24 deletions

View File

@ -32,7 +32,7 @@ export const GROUP_FOLLOWERS = gql`
`; `;
export const UPDATE_FOLLOWER = gql` export const UPDATE_FOLLOWER = gql`
mutation UpdateFollower($id: ID!, $approved: Boolean) { mutation UpdateFollower($id: ID!, $approved: Boolean!) {
updateFollower(id: $id, approved: $approved) { updateFollower(id: $id, approved: $approved) {
id id
approved approved

View File

@ -1446,5 +1446,7 @@
"By car": "By car", "By car": "By car",
"Select all resources": "Select all resources", "Select all resources": "Select all resources",
"Select this resource": "Select this resource", "Select this resource": "Select this resource",
"You can add resources by using the button above.": "You can add resources by using the button above." "You can add resources by using the button above.": "You can add resources by using the button above.",
"{user}'s follow request was accepted": "{user}'s follow request was accepted",
"{user}'s follow request was rejected": "{user}'s follow request was rejected"
} }

View File

@ -1443,5 +1443,7 @@
"By car": "En voiture", "By car": "En voiture",
"Select all resources": "Sélectionner toutes les ressources", "Select all resources": "Sélectionner toutes les ressources",
"Select this resource": "Sélectionner cette ressource", "Select this resource": "Sélectionner cette ressource",
"You can add resources by using the button above.": "Vous pouvez ajouter des ressources en utilisant le bouton au dessus." "You can add resources by using the button above.": "Vous pouvez ajouter des ressources en utilisant le bouton au dessus.",
"{user}'s follow request was accepted": "La demande de suivi de {user} a été acceptée",
"{user}'s follow request was rejected": "La demande de suivi de {user} a été rejetée"
} }

View File

@ -11,12 +11,12 @@
{ {
name: RouteName.GROUP_SETTINGS, name: RouteName.GROUP_SETTINGS,
params: { preferredUsername: usernameWithDomain(group) }, params: { preferredUsername: usernameWithDomain(group) },
text: $t('Settings'), text: t('Settings'),
}, },
{ {
name: RouteName.GROUP_FOLLOWERS_SETTINGS, name: RouteName.GROUP_FOLLOWERS_SETTINGS,
params: { preferredUsername: usernameWithDomain(group) }, params: { preferredUsername: usernameWithDomain(group) },
text: $t('Followers'), text: t('Followers'),
}, },
]" ]"
/> />
@ -25,9 +25,9 @@
class="container mx-auto section" class="container mx-auto section"
v-if="group && isCurrentActorAGroupAdmin && followers" v-if="group && isCurrentActorAGroupAdmin && followers"
> >
<h1>{{ $t("Group Followers") }} ({{ followers.total }})</h1> <h1>{{ t("Group Followers") }} ({{ followers.total }})</h1>
<o-field :label="$t('Status')" horizontal> <o-field :label="t('Status')" horizontal>
<o-switch v-model="pending">{{ $t("Pending") }}</o-switch> <o-switch v-model="pending">{{ t("Pending") }}</o-switch>
</o-field> </o-field>
<o-table <o-table
:data="followers.elements" :data="followers.elements"
@ -37,10 +37,10 @@
backend-pagination backend-pagination
v-model:current-page="page" v-model:current-page="page"
:pagination-simple="true" :pagination-simple="true"
:aria-next-label="$t('Next page')" :aria-next-label="t('Next page')"
:aria-previous-label="$t('Previous page')" :aria-previous-label="t('Previous page')"
:aria-page-label="$t('Page')" :aria-page-label="t('Page')"
:aria-current-label="$t('Current page')" :aria-current-label="t('Current page')"
:total="followers.total" :total="followers.total"
:per-page="FOLLOWERS_PER_PAGE" :per-page="FOLLOWERS_PER_PAGE"
backend-sorting backend-sorting
@ -51,7 +51,7 @@
> >
<o-table-column <o-table-column
field="actor.preferredUsername" field="actor.preferredUsername"
:label="$t('Follower')" :label="t('Follower')"
v-slot="props" v-slot="props"
> >
<article class="flex gap-1"> <article class="flex gap-1">
@ -76,39 +76,39 @@
</div> </div>
</article> </article>
</o-table-column> </o-table-column>
<o-table-column field="insertedAt" :label="$t('Date')" v-slot="props"> <o-table-column field="insertedAt" :label="t('Date')" v-slot="props">
<span class="has-text-centered"> <span class="has-text-centered">
{{ formatDateString(props.row.insertedAt) }}<br />{{ {{ formatDateString(props.row.insertedAt) }}<br />{{
formatTimeString(props.row.insertedAt) formatTimeString(props.row.insertedAt)
}} }}
</span> </span>
</o-table-column> </o-table-column>
<o-table-column field="actions" :label="$t('Actions')" v-slot="props"> <o-table-column field="actions" :label="t('Actions')" v-slot="props">
<div class="buttons"> <div class="flex gap-2">
<o-button <o-button
v-if="!props.row.approved" v-if="!props.row.approved"
@click="updateFollower(props.row, true)" @click="updateFollower(props.row, true)"
icon-left="check" icon-left="check"
variant="success" variant="success"
>{{ $t("Accept") }}</o-button >{{ t("Accept") }}</o-button
> >
<o-button <o-button
@click="updateFollower(props.row, false)" @click="updateFollower(props.row, false)"
icon-left="close" icon-left="close"
variant="danger" variant="danger"
>{{ $t("Reject") }}</o-button >{{ t("Reject") }}</o-button
> >
</div> </div>
</o-table-column> </o-table-column>
<template #empty> <template #empty>
<empty-content icon="account" inline> <empty-content icon="account" inline>
{{ $t("No follower matches the filters") }} {{ t("No follower matches the filters") }}
</empty-content> </empty-content>
</template> </template>
</o-table> </o-table>
</section> </section>
<o-notification v-else-if="!loading && group"> <o-notification v-else-if="!loading && group">
{{ $t("You are not an administrator for this group.") }} {{ t("You are not an administrator for this group.") }}
</o-notification> </o-notification>
</div> </div>
</template> </template>
@ -164,6 +164,7 @@ const { t } = useI18n({ useScope: "global" });
useHead({ title: computed(() => t("Group Followers")) }); useHead({ title: computed(() => t("Group Followers")) });
const loadMoreFollowers = async (): Promise<void> => { const loadMoreFollowers = async (): Promise<void> => {
console.debug("load more followers");
await fetchMore({ await fetchMore({
// New variables // New variables
variables: { variables: {
@ -183,6 +184,12 @@ const { onDone, onError, mutate } = useMutation<{ updateFollower: IFollower }>(
refetchQueries: [ refetchQueries: [
{ {
query: GROUP_FOLLOWERS, query: GROUP_FOLLOWERS,
variables: {
name: usernameWithDomain(group.value),
followersPage: page.value,
followersLimit: FOLLOWERS_PER_PAGE,
approved: !pending.value,
},
}, },
], ],
}) })
@ -192,11 +199,11 @@ onDone(({ data }) => {
const follower = data?.updateFollower; const follower = data?.updateFollower;
const message = const message =
data?.updateFollower.approved === true data?.updateFollower.approved === true
? t("@{username}'s follow request was accepted", { ? t("{user}'s follow request was accepted", {
username: follower?.actor.preferredUsername, user: displayName(follower?.actor),
}) })
: t("@{username}'s follow request was rejected", { : t("{user}'s follow request was rejected", {
username: follower?.actor.preferredUsername, user: displayName(follower?.actor),
}); });
notifier?.success(message); notifier?.success(message);
}); });