f8e73ca990
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
387 lines
11 KiB
Vue
387 lines
11 KiB
Vue
<template>
|
|
<div>
|
|
<nav class="breadcrumb" aria-label="breadcrumbs">
|
|
<ul>
|
|
<li>
|
|
<router-link
|
|
v-if="group"
|
|
:to="{
|
|
name: RouteName.GROUP,
|
|
params: { preferredUsername: usernameWithDomain(group) },
|
|
}"
|
|
>{{ group.name || usernameWithDomain(group) }}</router-link
|
|
>
|
|
</li>
|
|
<li>
|
|
<router-link
|
|
:to="{
|
|
name: RouteName.GROUP_SETTINGS,
|
|
params: { preferredUsername: usernameWithDomain(group) },
|
|
}"
|
|
>{{ $t("Settings") }}</router-link
|
|
>
|
|
</li>
|
|
<li class="is-active">
|
|
<router-link
|
|
:to="{
|
|
name: RouteName.GROUP_PUBLIC_SETTINGS,
|
|
params: { preferredUsername: usernameWithDomain(group) },
|
|
}"
|
|
>{{ $t("Group settings") }}</router-link
|
|
>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<section
|
|
class="container section"
|
|
v-if="group && isCurrentActorAGroupAdmin"
|
|
>
|
|
<form @submit.prevent="updateGroup">
|
|
<b-field :label="$t('Group name')">
|
|
<b-input v-model="editableGroup.name" />
|
|
</b-field>
|
|
<b-field :label="$t('Group short description')">
|
|
<editor mode="basic" v-model="editableGroup.summary" :maxSize="500"
|
|
/></b-field>
|
|
<b-field :label="$t('Avatar')">
|
|
<picture-upload
|
|
:textFallback="$t('Avatar')"
|
|
v-model="avatarFile"
|
|
:defaultImage="group.avatar"
|
|
:maxSize="avatarMaxSize"
|
|
/>
|
|
</b-field>
|
|
|
|
<b-field :label="$t('Banner')">
|
|
<picture-upload
|
|
:textFallback="$t('Banner')"
|
|
v-model="bannerFile"
|
|
:defaultImage="group.banner"
|
|
:maxSize="bannerMaxSize"
|
|
/>
|
|
</b-field>
|
|
<p class="label">{{ $t("Group visibility") }}</p>
|
|
<div class="field">
|
|
<b-radio
|
|
v-model="editableGroup.visibility"
|
|
name="groupVisibility"
|
|
:native-value="GroupVisibility.PUBLIC"
|
|
>
|
|
{{ $t("Visible everywhere on the web") }}<br />
|
|
<small>{{
|
|
$t(
|
|
"The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page."
|
|
)
|
|
}}</small>
|
|
</b-radio>
|
|
</div>
|
|
<div class="field">
|
|
<b-radio
|
|
v-model="editableGroup.visibility"
|
|
name="groupVisibility"
|
|
:native-value="GroupVisibility.UNLISTED"
|
|
>{{ $t("Only accessible through link") }}<br />
|
|
<small>{{
|
|
$t(
|
|
"You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines."
|
|
)
|
|
}}</small>
|
|
</b-radio>
|
|
<p class="control">
|
|
<code>{{ group.url }}</code>
|
|
<b-tooltip
|
|
v-if="canShowCopyButton"
|
|
:label="$t('URL copied to clipboard')"
|
|
:active="showCopiedTooltip"
|
|
always
|
|
type="is-success"
|
|
position="is-left"
|
|
>
|
|
<b-button
|
|
type="is-primary"
|
|
icon-right="content-paste"
|
|
native-type="button"
|
|
@click="copyURL"
|
|
@keyup.enter="copyURL"
|
|
/>
|
|
</b-tooltip>
|
|
</p>
|
|
</div>
|
|
|
|
<p class="label">{{ $t("New members") }}</p>
|
|
<div class="field">
|
|
<b-radio
|
|
v-model="editableGroup.openness"
|
|
name="groupOpenness"
|
|
:native-value="Openness.OPEN"
|
|
>
|
|
{{ $t("Anyone can join freely") }}<br />
|
|
<small>{{
|
|
$t(
|
|
"Anyone wanting to be a member from your group will be able to from your group page."
|
|
)
|
|
}}</small>
|
|
</b-radio>
|
|
</div>
|
|
<div class="field">
|
|
<b-radio
|
|
v-model="editableGroup.openness"
|
|
name="groupOpenness"
|
|
:native-value="Openness.INVITE_ONLY"
|
|
>{{ $t("Manually invite new members") }}<br />
|
|
<small>{{
|
|
$t(
|
|
"The only way for your group to get new members is if an admininistrator invites them."
|
|
)
|
|
}}</small>
|
|
</b-radio>
|
|
</div>
|
|
|
|
<b-field
|
|
:label="$t('Followers')"
|
|
:message="$t('Followers will receive new public events and posts.')"
|
|
>
|
|
<b-checkbox v-model="editableGroup.manuallyApprovesFollowers">
|
|
{{ $t("Manually approve new followers") }}
|
|
</b-checkbox>
|
|
</b-field>
|
|
|
|
<full-address-auto-complete
|
|
:label="$t('Group address')"
|
|
v-model="editableGroup.physicalAddress"
|
|
:value="currentAddress"
|
|
/>
|
|
|
|
<div class="buttons">
|
|
<b-button native-type="submit" type="is-primary">{{
|
|
$t("Update group")
|
|
}}</b-button>
|
|
<b-button @click="confirmDeleteGroup" type="is-danger">{{
|
|
$t("Delete group")
|
|
}}</b-button>
|
|
</div>
|
|
</form>
|
|
<b-message type="is-danger" v-for="(value, index) in errors" :key="index">
|
|
{{ value }}
|
|
</b-message>
|
|
</section>
|
|
<b-message v-else>
|
|
{{ $t("You are not an administrator for this group.") }}
|
|
</b-message>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Watch } from "vue-property-decorator";
|
|
import FullAddressAutoComplete from "@/components/Event/FullAddressAutoComplete.vue";
|
|
import { Route } from "vue-router";
|
|
import PictureUpload from "@/components/PictureUpload.vue";
|
|
import { mixins } from "vue-class-component";
|
|
import GroupMixin from "@/mixins/group";
|
|
import { GroupVisibility, Openness } from "@/types/enums";
|
|
import { UPDATE_GROUP, DELETE_GROUP } from "../../graphql/group";
|
|
import { IGroup, usernameWithDomain } from "../../types/actor";
|
|
import { Address, IAddress } from "../../types/address.model";
|
|
import { CONFIG } from "@/graphql/config";
|
|
import { IConfig } from "@/types/config.model";
|
|
import { ServerParseError } from "@apollo/client/link/http";
|
|
import { ErrorResponse } from "@apollo/client/link/error";
|
|
import RouteName from "@/router/name";
|
|
import { buildFileFromIMedia } from "@/utils/image";
|
|
|
|
@Component({
|
|
components: {
|
|
FullAddressAutoComplete,
|
|
PictureUpload,
|
|
editor: () => import("../../components/Editor.vue"),
|
|
},
|
|
apollo: {
|
|
config: CONFIG,
|
|
},
|
|
metaInfo() {
|
|
return {
|
|
title: this.$t("Group settings") as string,
|
|
};
|
|
},
|
|
})
|
|
export default class GroupSettings extends mixins(GroupMixin) {
|
|
loading = true;
|
|
|
|
RouteName = RouteName;
|
|
|
|
config!: IConfig;
|
|
|
|
newMemberUsername = "";
|
|
|
|
errors: string[] = [];
|
|
|
|
avatarFile: File | null = null;
|
|
|
|
bannerFile: File | null = null;
|
|
|
|
usernameWithDomain = usernameWithDomain;
|
|
|
|
GroupVisibility = GroupVisibility;
|
|
|
|
Openness = Openness;
|
|
|
|
showCopiedTooltip = false;
|
|
|
|
editableGroup!: IGroup;
|
|
|
|
async updateGroup(): Promise<void> {
|
|
try {
|
|
const variables = this.buildVariables();
|
|
console.log(variables);
|
|
await this.$apollo.mutate<{ updateGroup: IGroup }>({
|
|
mutation: UPDATE_GROUP,
|
|
variables,
|
|
});
|
|
this.$notifier.success(this.$t("Group settings saved") as string);
|
|
} catch (err) {
|
|
this.handleError(err);
|
|
}
|
|
}
|
|
|
|
confirmDeleteGroup(): void {
|
|
this.$buefy.dialog.confirm({
|
|
title: this.$t("Delete group") as string,
|
|
message: this.$t(
|
|
"Are you sure you want to <b>completely delete</b> this group? All members - including remote ones - will be notified and removed from the group, and <b>all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed</b>."
|
|
) as string,
|
|
confirmText: this.$t("Delete group") as string,
|
|
cancelText: this.$t("Cancel") as string,
|
|
type: "is-danger",
|
|
hasIcon: true,
|
|
onConfirm: () => this.deleteGroup(),
|
|
});
|
|
}
|
|
|
|
async deleteGroup(): Promise<Route> {
|
|
await this.$apollo.mutate<{ deleteGroup: IGroup }>({
|
|
mutation: DELETE_GROUP,
|
|
variables: {
|
|
groupId: this.group.id,
|
|
},
|
|
});
|
|
return this.$router.push({ name: RouteName.MY_GROUPS });
|
|
}
|
|
|
|
async copyURL(): Promise<void> {
|
|
await window.navigator.clipboard.writeText(this.group.url);
|
|
this.showCopiedTooltip = true;
|
|
setTimeout(() => {
|
|
this.showCopiedTooltip = false;
|
|
}, 2000);
|
|
}
|
|
|
|
@Watch("group")
|
|
async watchUpdateGroup(oldGroup: IGroup, newGroup: IGroup): Promise<void> {
|
|
if (
|
|
oldGroup?.avatar !== undefined &&
|
|
oldGroup?.avatar !== newGroup?.avatar
|
|
) {
|
|
this.avatarFile = await buildFileFromIMedia(this.group.avatar);
|
|
}
|
|
if (
|
|
oldGroup?.banner !== undefined &&
|
|
oldGroup?.banner !== newGroup?.banner
|
|
) {
|
|
this.bannerFile = await buildFileFromIMedia(this.group.banner);
|
|
}
|
|
this.editableGroup = { ...this.group };
|
|
}
|
|
|
|
private buildVariables() {
|
|
let avatarObj = {};
|
|
let bannerObj = {};
|
|
const variables = { ...this.editableGroup };
|
|
const physicalAddress = {
|
|
...variables.physicalAddress,
|
|
};
|
|
|
|
// eslint-disable-next-line
|
|
// @ts-ignore
|
|
delete variables.__typename;
|
|
if (physicalAddress) {
|
|
// eslint-disable-next-line
|
|
// @ts-ignore
|
|
delete physicalAddress.__typename;
|
|
}
|
|
delete variables.avatar;
|
|
delete variables.banner;
|
|
|
|
if (this.avatarFile) {
|
|
avatarObj = {
|
|
avatar: {
|
|
media: {
|
|
name: this.avatarFile.name,
|
|
alt: `${this.editableGroup.preferredUsername}'s avatar`,
|
|
file: this.avatarFile,
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
if (this.bannerFile) {
|
|
bannerObj = {
|
|
banner: {
|
|
media: {
|
|
name: this.bannerFile.name,
|
|
alt: `${this.editableGroup.preferredUsername}'s banner`,
|
|
file: this.bannerFile,
|
|
},
|
|
},
|
|
};
|
|
}
|
|
return {
|
|
id: this.group.id,
|
|
name: this.editableGroup.name,
|
|
summary: this.editableGroup.summary,
|
|
visibility: this.editableGroup.visibility,
|
|
openness: this.editableGroup.openness,
|
|
manuallyApprovesFollowers: this.editableGroup.manuallyApprovesFollowers,
|
|
physicalAddress,
|
|
...avatarObj,
|
|
...bannerObj,
|
|
};
|
|
}
|
|
|
|
// eslint-disable-next-line class-methods-use-this
|
|
get canShowCopyButton(): boolean {
|
|
return window.isSecureContext;
|
|
}
|
|
|
|
get currentAddress(): IAddress {
|
|
return new Address(this.editableGroup.physicalAddress);
|
|
}
|
|
|
|
get avatarMaxSize(): number | undefined {
|
|
return this?.config?.uploadLimits?.avatar;
|
|
}
|
|
|
|
get bannerMaxSize(): number | undefined {
|
|
return this?.config?.uploadLimits?.banner;
|
|
}
|
|
|
|
private handleError(err: ErrorResponse) {
|
|
if (err?.networkError?.name === "ServerParseError") {
|
|
const error = err?.networkError as ServerParseError;
|
|
|
|
if (error?.response?.status === 413) {
|
|
this.errors.push(
|
|
this.$t(
|
|
"Unable to create the group. One of the pictures may be too heavy."
|
|
) as string
|
|
);
|
|
}
|
|
}
|
|
this.errors.push(
|
|
...(err.graphQLErrors || []).map(
|
|
({ message }: { message: string }) => message
|
|
)
|
|
);
|
|
}
|
|
}
|
|
</script>
|