Merge branch 'bug/fix-edit-event-cache-issues' into 'master'
Fix edit event cache issues See merge request framasoft/mobilizon!218
This commit is contained in:
commit
e34f304b76
@ -52,6 +52,7 @@ const optionsQuery = `
|
|||||||
program,
|
program,
|
||||||
commentModeration,
|
commentModeration,
|
||||||
showParticipationPrice
|
showParticipationPrice
|
||||||
|
__typename
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const FETCH_EVENT = gql`
|
export const FETCH_EVENT = gql`
|
||||||
@ -62,7 +63,6 @@ export const FETCH_EVENT = gql`
|
|||||||
url,
|
url,
|
||||||
local,
|
local,
|
||||||
title,
|
title,
|
||||||
slug,
|
|
||||||
description,
|
description,
|
||||||
beginsOn,
|
beginsOn,
|
||||||
endsOn,
|
endsOn,
|
||||||
@ -244,6 +244,9 @@ export const CREATE_EVENT = gql`
|
|||||||
},
|
},
|
||||||
options {
|
options {
|
||||||
${optionsQuery}
|
${optionsQuery}
|
||||||
|
},
|
||||||
|
organizerActor {
|
||||||
|
id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -289,6 +292,8 @@ export const EDIT_EVENT = gql`
|
|||||||
id,
|
id,
|
||||||
uuid,
|
uuid,
|
||||||
title,
|
title,
|
||||||
|
url,
|
||||||
|
local,
|
||||||
description,
|
description,
|
||||||
beginsOn,
|
beginsOn,
|
||||||
endsOn,
|
endsOn,
|
||||||
@ -307,6 +312,20 @@ export const EDIT_EVENT = gql`
|
|||||||
physicalAddress {
|
physicalAddress {
|
||||||
${physicalAddressQuery}
|
${physicalAddressQuery}
|
||||||
},
|
},
|
||||||
|
organizerActor {
|
||||||
|
avatar {
|
||||||
|
url
|
||||||
|
},
|
||||||
|
preferredUsername,
|
||||||
|
domain,
|
||||||
|
name,
|
||||||
|
url,
|
||||||
|
id,
|
||||||
|
},
|
||||||
|
participantStats {
|
||||||
|
approved,
|
||||||
|
unapproved
|
||||||
|
},
|
||||||
tags {
|
tags {
|
||||||
${tagsQuery}
|
${tagsQuery}
|
||||||
},
|
},
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { IParticipant } from '@/types/event.model';
|
import { IEvent, IParticipant } from '@/types/event.model';
|
||||||
|
|
||||||
export enum ICurrentUserRole {
|
export enum ICurrentUserRole {
|
||||||
USER = 'USER',
|
USER = 'USER',
|
||||||
@ -12,4 +12,5 @@ export interface ICurrentUser {
|
|||||||
isLoggedIn: boolean;
|
isLoggedIn: boolean;
|
||||||
role: ICurrentUserRole;
|
role: ICurrentUserRole;
|
||||||
participations: IParticipant[];
|
participations: IParticipant[];
|
||||||
|
drafts: IEvent[];
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import {ParticipantRole} from "@/types/event.model";
|
||||||
<template>
|
<template>
|
||||||
<section>
|
<section>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@ -234,13 +235,15 @@
|
|||||||
import { CREATE_EVENT, EDIT_EVENT, FETCH_EVENT } from '@/graphql/event';
|
import { CREATE_EVENT, EDIT_EVENT, FETCH_EVENT } from '@/graphql/event';
|
||||||
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
|
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
|
||||||
import {
|
import {
|
||||||
CommentModeration, EventJoinOptions,
|
CommentModeration,
|
||||||
|
EventJoinOptions,
|
||||||
EventModel,
|
EventModel,
|
||||||
EventStatus,
|
EventStatus,
|
||||||
EventVisibility, IEvent,
|
EventVisibility,
|
||||||
|
IEvent, ParticipantRole,
|
||||||
} from '@/types/event.model';
|
} from '@/types/event.model';
|
||||||
import { CURRENT_ACTOR_CLIENT } from '@/graphql/actor';
|
import { CURRENT_ACTOR_CLIENT, IDENTITIES, LOGGED_USER_DRAFTS, LOGGED_USER_PARTICIPATIONS } from '@/graphql/actor';
|
||||||
import { IActor, Person } from '@/types/actor';
|
import { Person } from '@/types/actor';
|
||||||
import PictureUpload from '@/components/PictureUpload.vue';
|
import PictureUpload from '@/components/PictureUpload.vue';
|
||||||
import Editor from '@/components/Editor.vue';
|
import Editor from '@/components/Editor.vue';
|
||||||
import DateTimePicker from '@/components/Event/DateTimePicker.vue';
|
import DateTimePicker from '@/components/Event/DateTimePicker.vue';
|
||||||
@ -250,6 +253,7 @@ import { ITag } from '@/types/tag.model';
|
|||||||
import AddressAutoComplete from '@/components/Event/AddressAutoComplete.vue';
|
import AddressAutoComplete from '@/components/Event/AddressAutoComplete.vue';
|
||||||
import { buildFileFromIPicture, buildFileVariable } from '@/utils/image';
|
import { buildFileFromIPicture, buildFileVariable } from '@/utils/image';
|
||||||
import IdentityPickerWrapper from '@/views/Account/IdentityPickerWrapper.vue';
|
import IdentityPickerWrapper from '@/views/Account/IdentityPickerWrapper.vue';
|
||||||
|
import { ICurrentUser } from '@/types/current-user.model';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: { IdentityPickerWrapper, AddressAutoComplete, TagInput, DateTimePicker, PictureUpload, Editor },
|
components: { IdentityPickerWrapper, AddressAutoComplete, TagInput, DateTimePicker, PictureUpload, Editor },
|
||||||
@ -361,6 +365,41 @@ export default class EditEvent extends Vue {
|
|||||||
const { data } = await this.$apollo.mutate({
|
const { data } = await this.$apollo.mutate({
|
||||||
mutation: CREATE_EVENT,
|
mutation: CREATE_EVENT,
|
||||||
variables: this.buildVariables(),
|
variables: this.buildVariables(),
|
||||||
|
update: (store, { data: { createEvent } }) => {
|
||||||
|
if (createEvent.draft) {
|
||||||
|
const data = store.readQuery<{ loggedUser: ICurrentUser }>({ query: LOGGED_USER_DRAFTS, variables: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
} });
|
||||||
|
|
||||||
|
if (data) {
|
||||||
|
data.loggedUser.drafts.push(createEvent);
|
||||||
|
store.writeQuery({ query: LOGGED_USER_DRAFTS, variables: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
}, data });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const data = store.readQuery<{ loggedUser: ICurrentUser }>({ query: LOGGED_USER_PARTICIPATIONS, variables: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
afterDateTime: (new Date()).toISOString(),
|
||||||
|
} });
|
||||||
|
|
||||||
|
if (data) {
|
||||||
|
data.loggedUser.participations.push({
|
||||||
|
role: ParticipantRole.CREATOR,
|
||||||
|
actor: createEvent.organizerActor,
|
||||||
|
event: createEvent,
|
||||||
|
});
|
||||||
|
store.writeQuery({ query: LOGGED_USER_PARTICIPATIONS, variables: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
afterDateTime: (new Date()).toISOString(),
|
||||||
|
}, data });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log('Event created', data);
|
console.log('Event created', data);
|
||||||
@ -379,6 +418,50 @@ export default class EditEvent extends Vue {
|
|||||||
await this.$apollo.mutate({
|
await this.$apollo.mutate({
|
||||||
mutation: EDIT_EVENT,
|
mutation: EDIT_EVENT,
|
||||||
variables: this.buildVariables(),
|
variables: this.buildVariables(),
|
||||||
|
update: (store, { data: { updateEvent } }) => {
|
||||||
|
if (updateEvent.draft) {
|
||||||
|
const data = store.readQuery<{ loggedUser: ICurrentUser }>({ query: LOGGED_USER_DRAFTS, variables: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
} });
|
||||||
|
|
||||||
|
if (data) {
|
||||||
|
data.loggedUser.drafts.push(updateEvent);
|
||||||
|
store.writeQuery({ query: LOGGED_USER_DRAFTS, data });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
let participationData: { loggedUser: ICurrentUser}|null = null;
|
||||||
|
try {
|
||||||
|
participationData = store.readQuery<{ loggedUser: ICurrentUser }>({
|
||||||
|
query: LOGGED_USER_PARTICIPATIONS, variables: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
afterDateTime: (new Date()).toISOString(),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (e) {
|
||||||
|
// no worries, it seems we can't update participation cache because it's not linked to an ID
|
||||||
|
}
|
||||||
|
|
||||||
|
if (participationData) {
|
||||||
|
participationData.loggedUser.participations.push({
|
||||||
|
role: ParticipantRole.CREATOR,
|
||||||
|
actor: updateEvent.organizerActor,
|
||||||
|
event: updateEvent,
|
||||||
|
});
|
||||||
|
store.writeQuery({ query: LOGGED_USER_PARTICIPATIONS, variables: {
|
||||||
|
page: 1,
|
||||||
|
limit: 10,
|
||||||
|
afterDateTime: (new Date()).toISOString(),
|
||||||
|
}, data: participationData });
|
||||||
|
}
|
||||||
|
const resultEvent: IEvent = Object.assign({}, updateEvent);
|
||||||
|
resultEvent.organizerActor = this.event.organizerActor;
|
||||||
|
resultEvent.relatedEvents = [];
|
||||||
|
|
||||||
|
store.writeQuery({ query: FETCH_EVENT, variables: { uuid: updateEvent.uuid }, data: { event: resultEvent } });
|
||||||
|
}
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
await this.$router.push({
|
await this.$router.push({
|
||||||
|
@ -83,6 +83,7 @@ import EventCard from '@/components/Event/EventCard.vue';
|
|||||||
apollo: {
|
apollo: {
|
||||||
futureParticipations: {
|
futureParticipations: {
|
||||||
query: LOGGED_USER_PARTICIPATIONS,
|
query: LOGGED_USER_PARTICIPATIONS,
|
||||||
|
fetchPolicy: 'network-only',
|
||||||
variables: {
|
variables: {
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10,
|
limit: 10,
|
||||||
@ -92,6 +93,7 @@ import EventCard from '@/components/Event/EventCard.vue';
|
|||||||
},
|
},
|
||||||
drafts: {
|
drafts: {
|
||||||
query: LOGGED_USER_DRAFTS,
|
query: LOGGED_USER_DRAFTS,
|
||||||
|
fetchPolicy: 'network-only',
|
||||||
variables: {
|
variables: {
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10,
|
limit: 10,
|
||||||
@ -100,6 +102,7 @@ import EventCard from '@/components/Event/EventCard.vue';
|
|||||||
},
|
},
|
||||||
pastParticipations: {
|
pastParticipations: {
|
||||||
query: LOGGED_USER_PARTICIPATIONS,
|
query: LOGGED_USER_PARTICIPATIONS,
|
||||||
|
fetchPolicy: 'network-only',
|
||||||
variables: {
|
variables: {
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10,
|
limit: 10,
|
||||||
|
Loading…
Reference in New Issue
Block a user