0c732ab4f7
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
131 lines
2.9 KiB
Vue
131 lines
2.9 KiB
Vue
<template>
|
|
<div class="container root">
|
|
<h1>{{ $t('Create a new group') }}</h1>
|
|
|
|
<div>
|
|
<b-field :label="$t('Group name')">
|
|
<b-input aria-required="true" required v-model="group.preferred_username"/>
|
|
</b-field>
|
|
|
|
<b-field :label="$t('Group full name')">
|
|
<b-input aria-required="true" required v-model="group.name"/>
|
|
</b-field>
|
|
|
|
<b-field :label="$t('Description')">
|
|
<b-input aria-required="true" required v-model="group.description" type="textarea"/>
|
|
</b-field>
|
|
|
|
<div>
|
|
Avatar
|
|
<picture-upload v-model="avatarFile"></picture-upload>
|
|
</div>
|
|
|
|
<div>
|
|
Banner
|
|
<picture-upload v-model="avatarFile"></picture-upload>
|
|
</div>
|
|
|
|
<button class="button is-primary" @click="createGroup()">
|
|
{{ $t('Create my group') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.root {
|
|
width: 400px;
|
|
margin: auto;
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
import { Group, IPerson } from '@/types/actor';
|
|
import { CREATE_GROUP, CURRENT_ACTOR_CLIENT } from '@/graphql/actor';
|
|
import { RouteName } from '@/router';
|
|
import PictureUpload from '@/components/PictureUpload.vue';
|
|
|
|
@Component({
|
|
components: {
|
|
PictureUpload,
|
|
},
|
|
apollo: {
|
|
currentActor: {
|
|
query: CURRENT_ACTOR_CLIENT,
|
|
},
|
|
},
|
|
})
|
|
export default class CreateGroup extends Vue {
|
|
currentActor!: IPerson;
|
|
|
|
group = new Group();
|
|
|
|
avatarFile: File | null = null;
|
|
bannerFile: File | null = null;
|
|
|
|
async createGroup() {
|
|
try {
|
|
await this.$apollo.mutate({
|
|
mutation: CREATE_GROUP,
|
|
variables: this.buildVariables(),
|
|
update: (store, { data: { createGroup } }) => {
|
|
// TODO: update group list cache
|
|
},
|
|
});
|
|
|
|
await this.$router.push({ name: RouteName.GROUP, params: { identityName: this.group.preferredUsername } });
|
|
|
|
this.$notifier.success(
|
|
this.$t('Group {displayName} created', { displayName: this.group.displayName() }) as string,
|
|
);
|
|
} catch (err) {
|
|
this.handleError(err);
|
|
}
|
|
}
|
|
|
|
private buildVariables() {
|
|
let avatarObj = {};
|
|
let bannerObj = {};
|
|
|
|
if (this.avatarFile) {
|
|
avatarObj = {
|
|
avatar: {
|
|
picture: {
|
|
name: this.avatarFile.name,
|
|
alt: `${this.group.preferredUsername}'s avatar`,
|
|
file: this.avatarFile,
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
if (this.bannerFile) {
|
|
bannerObj = {
|
|
picture: {
|
|
name: this.bannerFile.name,
|
|
alt: `${this.group.preferredUsername}'s banner`,
|
|
file: this.bannerFile,
|
|
},
|
|
};
|
|
}
|
|
|
|
const currentActor = {
|
|
creatorActorId: this.currentActor.id,
|
|
};
|
|
|
|
return Object.assign({}, this.group, avatarObj, bannerObj, currentActor);
|
|
}
|
|
|
|
private handleError(err: any) {
|
|
console.error(err);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.markdown-render h1 {
|
|
font-size: 2em;
|
|
}
|
|
</style>
|