Merge branch 'bug/hide-rejected-participations-on-my-event-list' into 'master'
Hide rejected participations on my event list See merge request framasoft/mobilizon!249
This commit is contained in:
commit
7e4230fce9
@ -70,7 +70,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||||
import { LOGGED_USER_PARTICIPATIONS, LOGGED_USER_DRAFTS } from '@/graphql/actor';
|
import { LOGGED_USER_PARTICIPATIONS, LOGGED_USER_DRAFTS } from '@/graphql/actor';
|
||||||
import { EventModel, IEvent, IParticipant, Participant } from '@/types/event.model';
|
import { EventModel, IEvent, IParticipant, Participant, ParticipantRole } from '@/types/event.model';
|
||||||
import EventListCard from '@/components/Event/EventListCard.vue';
|
import EventListCard from '@/components/Event/EventListCard.vue';
|
||||||
import EventCard from '@/components/Event/EventCard.vue';
|
import EventCard from '@/components/Event/EventCard.vue';
|
||||||
|
|
||||||
@ -134,7 +134,7 @@ export default class MyEvents extends Vue {
|
|||||||
drafts: IEvent[] = [];
|
drafts: IEvent[] = [];
|
||||||
|
|
||||||
private monthlyParticipations(participations: IParticipant[]): Map<string, Participant[]> {
|
private monthlyParticipations(participations: IParticipant[]): Map<string, Participant[]> {
|
||||||
const res = participations.filter(({ event }) => event.beginsOn != null);
|
const res = participations.filter(({ event, role }) => event.beginsOn != null && role !== ParticipantRole.REJECTED);
|
||||||
res.sort(
|
res.sort(
|
||||||
(a: IParticipant, b: IParticipant) => a.event.beginsOn.getTime() - b.event.beginsOn.getTime(),
|
(a: IParticipant, b: IParticipant) => a.event.beginsOn.getTime() - b.event.beginsOn.getTime(),
|
||||||
);
|
);
|
||||||
|
@ -107,7 +107,7 @@ import { IPerson, Person } from '@/types/actor';
|
|||||||
import { ICurrentUser } from '@/types/current-user.model';
|
import { ICurrentUser } from '@/types/current-user.model';
|
||||||
import { CURRENT_USER_CLIENT } from '@/graphql/user';
|
import { CURRENT_USER_CLIENT } from '@/graphql/user';
|
||||||
import { RouteName } from '@/router';
|
import { RouteName } from '@/router';
|
||||||
import { EventModel, IEvent, IParticipant, Participant } from '@/types/event.model';
|
import { EventModel, IEvent, IParticipant, Participant, ParticipantRole } from '@/types/event.model';
|
||||||
import DateComponent from '@/components/Event/DateCalendarIcon.vue';
|
import DateComponent from '@/components/Event/DateCalendarIcon.vue';
|
||||||
import { CONFIG } from '@/graphql/config';
|
import { CONFIG } from '@/graphql/config';
|
||||||
import { IConfig } from '@/types/config.model';
|
import { IConfig } from '@/types/config.model';
|
||||||
@ -212,8 +212,11 @@ export default class Home extends Vue {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get goingToEvents(): Map<string, Map<string, IParticipant>> {
|
get goingToEvents(): Map<string, Map<string, IParticipant>> {
|
||||||
const res = this.currentUserParticipations.filter(({ event }) => {
|
const res = this.currentUserParticipations.filter(({ event, role }) => {
|
||||||
return event.beginsOn != null && this.isAfter(event.beginsOn.toDateString(), 0) && this.isBefore(event.beginsOn.toDateString(), 7);
|
return event.beginsOn != null &&
|
||||||
|
this.isAfter(event.beginsOn.toDateString(), 0) &&
|
||||||
|
this.isBefore(event.beginsOn.toDateString(), 7) &&
|
||||||
|
role !== ParticipantRole.REJECTED;
|
||||||
});
|
});
|
||||||
res.sort(
|
res.sort(
|
||||||
(a: IParticipant, b: IParticipant) => a.event.beginsOn.getTime() - b.event.beginsOn.getTime(),
|
(a: IParticipant, b: IParticipant) => a.event.beginsOn.getTime() - b.event.beginsOn.getTime(),
|
||||||
@ -229,8 +232,8 @@ export default class Home extends Vue {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get lastWeekEvents() {
|
get lastWeekEvents() {
|
||||||
const res = this.currentUserParticipations.filter(({ event }) => {
|
const res = this.currentUserParticipations.filter(({ event, role }) => {
|
||||||
return event.beginsOn != null && this.isBefore(event.beginsOn.toDateString(), 0);
|
return event.beginsOn != null && this.isBefore(event.beginsOn.toDateString(), 0) && role !== ParticipantRole.REJECTED;
|
||||||
});
|
});
|
||||||
res.sort(
|
res.sort(
|
||||||
(a: IParticipant, b: IParticipant) => a.event.beginsOn.getTime() - b.event.beginsOn.getTime(),
|
(a: IParticipant, b: IParticipant) => a.event.beginsOn.getTime() - b.event.beginsOn.getTime(),
|
||||||
|
Loading…
Reference in New Issue
Block a user