2020-03-05 19:32:34 +01:00
|
|
|
import {ParticipantRole} from "@/types/event.model";
|
2019-09-20 18:22:03 +02:00
|
|
|
<template>
|
|
|
|
<main class="container">
|
2019-10-13 13:56:24 +02:00
|
|
|
<b-tabs type="is-boxed" v-if="event" v-model="activeTab">
|
2019-09-20 18:22:03 +02:00
|
|
|
<b-tab-item>
|
|
|
|
<template slot="header">
|
2019-12-20 13:04:34 +01:00
|
|
|
<b-icon icon="account-multiple" />
|
2019-10-25 17:43:37 +02:00
|
|
|
<span>{{ $t('Participants')}} <b-tag rounded> {{ participantStats.going }} </b-tag> </span>
|
2019-09-20 18:22:03 +02:00
|
|
|
</template>
|
2019-10-09 17:03:35 +02:00
|
|
|
<template>
|
2020-03-05 19:32:34 +01:00
|
|
|
<section v-if="participants && participants.total > 0">
|
2019-10-09 17:03:35 +02:00
|
|
|
<h2 class="title">{{ $t('Participants') }}</h2>
|
2020-03-05 19:32:34 +01:00
|
|
|
<ParticipationTable
|
|
|
|
:data="participants.elements"
|
|
|
|
:accept-participant="acceptParticipant"
|
|
|
|
:refuse-participant="refuseParticipant"
|
|
|
|
:showRole="true"
|
|
|
|
:total="participants.total"
|
|
|
|
:perPage="PARTICIPANTS_PER_PAGE"
|
|
|
|
@page-change="(page) => participantPage = page"
|
|
|
|
/>
|
2019-10-09 17:03:35 +02:00
|
|
|
</section>
|
|
|
|
</template>
|
2019-09-20 18:22:03 +02:00
|
|
|
</b-tab-item>
|
2019-10-25 17:43:37 +02:00
|
|
|
<b-tab-item :disabled="participantStats.notApproved === 0">
|
2019-09-20 18:22:03 +02:00
|
|
|
<template slot="header">
|
2019-12-20 13:04:34 +01:00
|
|
|
<b-icon icon="account-multiple-plus" />
|
2019-10-25 17:43:37 +02:00
|
|
|
<span>{{ $t('Requests') }} <b-tag rounded> {{ participantStats.notApproved }} </b-tag> </span>
|
2019-09-20 18:22:03 +02:00
|
|
|
</template>
|
2019-10-09 17:03:35 +02:00
|
|
|
<template>
|
2020-03-05 19:32:34 +01:00
|
|
|
<section v-if="queue && queue.total > 0">
|
2019-10-09 17:03:35 +02:00
|
|
|
<h2 class="title">{{ $t('Waiting list') }}</h2>
|
2020-03-05 19:32:34 +01:00
|
|
|
<ParticipationTable
|
|
|
|
:data="queue.elements"
|
|
|
|
:accept-participant="acceptParticipant"
|
|
|
|
:refuse-participant="refuseParticipant"
|
|
|
|
:total="queue.total"
|
|
|
|
:perPage="PARTICIPANTS_PER_PAGE"
|
|
|
|
@page-change="(page) => queuePage = page"
|
|
|
|
/>
|
2019-10-09 17:03:35 +02:00
|
|
|
</section>
|
|
|
|
</template>
|
2019-09-20 18:22:03 +02:00
|
|
|
</b-tab-item>
|
2019-10-09 17:03:35 +02:00
|
|
|
<b-tab-item :disabled="participantStats.rejected === 0">
|
2019-09-30 13:48:47 +02:00
|
|
|
<template slot="header">
|
2019-10-09 17:03:35 +02:00
|
|
|
<b-icon icon="account-multiple-minus"></b-icon>
|
2019-09-30 13:48:47 +02:00
|
|
|
<span>{{ $t('Rejected')}} <b-tag rounded> {{ participantStats.rejected }} </b-tag> </span>
|
|
|
|
</template>
|
2019-10-09 17:03:35 +02:00
|
|
|
<template>
|
2020-03-05 19:32:34 +01:00
|
|
|
<section v-if="rejected && rejected.total > 0">
|
2019-10-09 17:03:35 +02:00
|
|
|
<h2 class="title">{{ $t('Rejected participations') }}</h2>
|
2020-03-05 19:32:34 +01:00
|
|
|
<ParticipationTable
|
|
|
|
:data="rejected.elements"
|
|
|
|
:accept-participant="acceptParticipant"
|
|
|
|
:refuse-participant="refuseParticipant"
|
|
|
|
:total="rejected.total"
|
|
|
|
:perPage="PARTICIPANTS_PER_PAGE"
|
|
|
|
@page-change="(page) => rejectedPage = page"
|
|
|
|
/>
|
2019-10-09 17:03:35 +02:00
|
|
|
</section>
|
|
|
|
</template>
|
2019-09-30 13:48:47 +02:00
|
|
|
</b-tab-item>
|
2019-09-20 18:22:03 +02:00
|
|
|
</b-tabs>
|
|
|
|
</main>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2019-10-13 13:56:24 +02:00
|
|
|
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
|
|
|
|
import { IEvent, IEventParticipantStats, IParticipant, Participant, ParticipantRole } from '@/types/event.model';
|
|
|
|
import { PARTICIPANTS, UPDATE_PARTICIPANT } from '@/graphql/event';
|
2019-09-20 18:22:03 +02:00
|
|
|
import ParticipantCard from '@/components/Account/ParticipantCard.vue';
|
|
|
|
import { CURRENT_ACTOR_CLIENT } from '@/graphql/actor';
|
|
|
|
import { IPerson } from '@/types/actor';
|
2019-12-20 13:04:34 +01:00
|
|
|
import { CONFIG } from '@/graphql/config';
|
|
|
|
import { IConfig } from '@/types/config.model';
|
2020-03-05 19:32:34 +01:00
|
|
|
import ParticipationTable from '@/components/Event/ParticipationTable.vue';
|
|
|
|
import { Paginate } from '@/types/paginate';
|
|
|
|
|
|
|
|
const PARTICIPANTS_PER_PAGE = 20;
|
|
|
|
const MESSAGE_ELLIPSIS_LENGTH = 130;
|
2019-09-20 18:22:03 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
components: {
|
2020-03-05 19:32:34 +01:00
|
|
|
ParticipationTable,
|
2019-09-20 18:22:03 +02:00
|
|
|
ParticipantCard,
|
|
|
|
},
|
|
|
|
apollo: {
|
|
|
|
currentActor: {
|
|
|
|
query: CURRENT_ACTOR_CLIENT,
|
|
|
|
},
|
2019-12-20 13:04:34 +01:00
|
|
|
config: CONFIG,
|
2019-09-20 18:22:03 +02:00
|
|
|
event: {
|
|
|
|
query: PARTICIPANTS,
|
|
|
|
variables() {
|
|
|
|
return {
|
|
|
|
uuid: this.eventId,
|
|
|
|
page: 1,
|
2020-03-05 19:32:34 +01:00
|
|
|
limit: PARTICIPANTS_PER_PAGE,
|
2019-09-20 18:22:03 +02:00
|
|
|
roles: [ParticipantRole.PARTICIPANT].join(),
|
2019-09-26 16:38:58 +02:00
|
|
|
actorId: this.currentActor.id,
|
2019-09-20 18:22:03 +02:00
|
|
|
};
|
|
|
|
},
|
2019-10-13 13:56:24 +02:00
|
|
|
skip() {
|
|
|
|
return !this.currentActor.id;
|
|
|
|
},
|
2019-09-20 18:22:03 +02:00
|
|
|
},
|
2020-03-05 19:32:34 +01:00
|
|
|
participants: {
|
2019-09-20 18:22:03 +02:00
|
|
|
query: PARTICIPANTS,
|
|
|
|
variables() {
|
|
|
|
return {
|
|
|
|
uuid: this.eventId,
|
2020-03-05 19:32:34 +01:00
|
|
|
page: this.participantPage,
|
|
|
|
limit: PARTICIPANTS_PER_PAGE,
|
|
|
|
roles: [ParticipantRole.CREATOR, ParticipantRole.PARTICIPANT].join(),
|
2019-09-26 16:38:58 +02:00
|
|
|
actorId: this.currentActor.id,
|
2019-09-20 18:22:03 +02:00
|
|
|
};
|
|
|
|
},
|
2020-03-05 19:32:34 +01:00
|
|
|
update(data) { return this.dataTransform(data); },
|
2019-10-13 13:56:24 +02:00
|
|
|
skip() {
|
|
|
|
return !this.currentActor.id;
|
|
|
|
},
|
2019-09-20 18:22:03 +02:00
|
|
|
},
|
|
|
|
queue: {
|
|
|
|
query: PARTICIPANTS,
|
|
|
|
variables() {
|
|
|
|
return {
|
|
|
|
uuid: this.eventId,
|
2020-03-05 19:32:34 +01:00
|
|
|
page: this.queuePage,
|
|
|
|
limit: PARTICIPANTS_PER_PAGE,
|
2019-09-20 18:22:03 +02:00
|
|
|
roles: [ParticipantRole.NOT_APPROVED].join(),
|
2019-09-26 16:38:58 +02:00
|
|
|
actorId: this.currentActor.id,
|
2019-09-20 18:22:03 +02:00
|
|
|
};
|
|
|
|
},
|
2020-03-05 19:32:34 +01:00
|
|
|
update(data) { return this.dataTransform(data); },
|
2019-10-13 13:56:24 +02:00
|
|
|
skip() {
|
|
|
|
return !this.currentActor.id;
|
|
|
|
},
|
2019-09-20 18:22:03 +02:00
|
|
|
},
|
2019-09-30 13:48:47 +02:00
|
|
|
rejected: {
|
|
|
|
query: PARTICIPANTS,
|
|
|
|
variables() {
|
|
|
|
return {
|
|
|
|
uuid: this.eventId,
|
2020-03-05 19:32:34 +01:00
|
|
|
page: this.rejectedPage,
|
|
|
|
limit: PARTICIPANTS_PER_PAGE,
|
2019-09-30 13:48:47 +02:00
|
|
|
roles: [ParticipantRole.REJECTED].join(),
|
|
|
|
actorId: this.currentActor.id,
|
|
|
|
};
|
|
|
|
},
|
2020-03-05 19:32:34 +01:00
|
|
|
update(data) { return this.dataTransform(data); },
|
2019-10-13 13:56:24 +02:00
|
|
|
skip() {
|
|
|
|
return !this.currentActor.id;
|
|
|
|
},
|
2019-09-30 13:48:47 +02:00
|
|
|
},
|
2019-09-20 18:22:03 +02:00
|
|
|
},
|
2020-03-05 19:32:34 +01:00
|
|
|
filters: {
|
|
|
|
ellipsize: (text?: string) => text && text.substr(0, MESSAGE_ELLIPSIS_LENGTH).concat('…'),
|
|
|
|
},
|
2019-09-20 18:22:03 +02:00
|
|
|
})
|
|
|
|
export default class Participants extends Vue {
|
|
|
|
@Prop({ required: true }) eventId!: string;
|
|
|
|
page: number = 1;
|
|
|
|
limit: number = 10;
|
|
|
|
|
2020-03-05 19:32:34 +01:00
|
|
|
participants!: Paginate<IParticipant>;
|
|
|
|
participantPage: number = 1;
|
|
|
|
|
|
|
|
queue!: Paginate<IParticipant>;
|
|
|
|
queuePage: number = 1;
|
|
|
|
|
|
|
|
rejected!: Paginate<IParticipant>;
|
|
|
|
rejectedPage: number = 1;
|
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
event!: IEvent;
|
2019-12-20 13:04:34 +01:00
|
|
|
config!: IConfig;
|
2019-09-20 18:22:03 +02:00
|
|
|
|
|
|
|
ParticipantRole = ParticipantRole;
|
|
|
|
currentActor!: IPerson;
|
|
|
|
|
|
|
|
hasMoreParticipants: boolean = false;
|
2019-10-13 13:56:24 +02:00
|
|
|
activeTab: number = 0;
|
2019-09-20 18:22:03 +02:00
|
|
|
|
2020-03-05 19:32:34 +01:00
|
|
|
PARTICIPANTS_PER_PAGE = PARTICIPANTS_PER_PAGE;
|
2019-09-20 18:22:03 +02:00
|
|
|
|
2020-03-05 19:32:34 +01:00
|
|
|
dataTransform(data): Paginate<Participant> {
|
|
|
|
return {
|
|
|
|
total: data.event.participants.total,
|
|
|
|
elements: data.event.participants.elements.map(participation => new Participant(participation)),
|
|
|
|
};
|
2019-09-20 18:22:03 +02:00
|
|
|
}
|
|
|
|
|
2020-03-05 19:32:34 +01:00
|
|
|
get participantStats(): IEventParticipantStats | null {
|
|
|
|
if (!this.event) return null;
|
|
|
|
return this.event.participantStats;
|
2019-12-20 13:04:34 +01:00
|
|
|
}
|
|
|
|
|
2019-10-13 13:56:24 +02:00
|
|
|
@Watch('participantStats', { deep: true })
|
|
|
|
watchParticipantStats(stats: IEventParticipantStats) {
|
|
|
|
if (!stats) return;
|
2019-10-25 17:43:37 +02:00
|
|
|
if ((stats.notApproved === 0 && this.activeTab === 1) || stats.rejected === 0 && this.activeTab === 2 ) {
|
2019-10-13 13:56:24 +02:00
|
|
|
this.activeTab = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
loadMoreParticipants() {
|
|
|
|
this.page += 1;
|
|
|
|
this.$apollo.queries.participants.fetchMore({
|
|
|
|
// New variables
|
|
|
|
variables: {
|
|
|
|
page: this.page,
|
|
|
|
limit: this.limit,
|
|
|
|
},
|
|
|
|
// Transform the previous result with new data
|
|
|
|
updateQuery: (previousResult, { fetchMoreResult }) => {
|
|
|
|
const newParticipations = fetchMoreResult.event.participants;
|
|
|
|
this.hasMoreParticipants = newParticipations.length === this.limit;
|
|
|
|
|
|
|
|
return {
|
|
|
|
loggedUser: {
|
|
|
|
__typename: previousResult.event.__typename,
|
|
|
|
participations: [...previousResult.event.participants, ...newParticipations],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async acceptParticipant(participant: IParticipant) {
|
|
|
|
try {
|
|
|
|
const { data } = await this.$apollo.mutate({
|
2019-09-30 13:48:47 +02:00
|
|
|
mutation: UPDATE_PARTICIPANT,
|
2019-09-20 18:22:03 +02:00
|
|
|
variables: {
|
|
|
|
id: participant.id,
|
|
|
|
moderatorActorId: this.currentActor.id,
|
2019-09-30 13:48:47 +02:00
|
|
|
role: ParticipantRole.PARTICIPANT,
|
2019-09-20 18:22:03 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
if (data) {
|
2020-03-05 19:32:34 +01:00
|
|
|
this.queue.elements = this.queue.elements.filter(participant => participant.id !== data.updateParticipation.id);
|
|
|
|
this.rejected.elements = this.rejected.elements.filter(participant => participant.id !== data.updateParticipation.id);
|
2019-10-25 17:43:37 +02:00
|
|
|
this.event.participantStats.going += 1;
|
2019-10-13 13:56:24 +02:00
|
|
|
if (participant.role === ParticipantRole.NOT_APPROVED) {
|
2019-10-25 17:43:37 +02:00
|
|
|
this.event.participantStats.notApproved -= 1;
|
2019-10-13 13:56:24 +02:00
|
|
|
}
|
|
|
|
if (participant.role === ParticipantRole.REJECTED) {
|
|
|
|
this.event.participantStats.rejected -= 1;
|
|
|
|
}
|
|
|
|
participant.role = ParticipantRole.PARTICIPANT;
|
2020-03-05 19:32:34 +01:00
|
|
|
this.event.participants.elements.push(participant);
|
2019-09-20 18:22:03 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async refuseParticipant(participant: IParticipant) {
|
|
|
|
try {
|
|
|
|
const { data } = await this.$apollo.mutate({
|
2019-09-30 13:48:47 +02:00
|
|
|
mutation: UPDATE_PARTICIPANT,
|
2019-09-20 18:22:03 +02:00
|
|
|
variables: {
|
|
|
|
id: participant.id,
|
|
|
|
moderatorActorId: this.currentActor.id,
|
2019-09-30 13:48:47 +02:00
|
|
|
role: ParticipantRole.REJECTED,
|
2019-09-20 18:22:03 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
if (data) {
|
2020-03-05 19:32:34 +01:00
|
|
|
this.event.participants.elements = this.event.participants.elements.filter(
|
|
|
|
participant => participant.id !== data.updateParticipation.id,
|
|
|
|
);
|
|
|
|
this.queue.elements = this.queue.elements.filter(participant => participant.id !== data.updateParticipation.id);
|
2019-10-13 13:56:24 +02:00
|
|
|
this.event.participantStats.rejected += 1;
|
|
|
|
if (participant.role === ParticipantRole.PARTICIPANT) {
|
2019-10-25 17:43:37 +02:00
|
|
|
this.event.participantStats.participant -= 1;
|
|
|
|
this.event.participantStats.going -= 1;
|
2019-10-13 13:56:24 +02:00
|
|
|
}
|
|
|
|
if (participant.role === ParticipantRole.NOT_APPROVED) {
|
2019-10-25 17:43:37 +02:00
|
|
|
this.event.participantStats.notApproved -= 1;
|
2019-10-13 13:56:24 +02:00
|
|
|
}
|
|
|
|
participant.role = ParticipantRole.REJECTED;
|
2020-03-05 19:32:34 +01:00
|
|
|
this.rejected.elements = this.rejected.elements.filter(participantIn => participantIn.id !== participant.id);
|
|
|
|
this.rejected.elements.push(participant);
|
2019-09-20 18:22:03 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
section {
|
2019-10-09 17:03:35 +02:00
|
|
|
padding: 1rem 0;
|
2019-09-20 18:22:03 +02:00
|
|
|
}
|
|
|
|
</style>
|
2019-10-09 17:03:35 +02:00
|
|
|
<style lang="scss">
|
|
|
|
nav.tabs li {
|
|
|
|
margin: 3rem 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-content {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
</style>
|