forked from potsda.mn/mobilizon
Merge branch 'fix-event-deletion-on-homepage' into 'master'
Fix event deletion from homepage See merge request framasoft/mobilizon!495
This commit is contained in:
commit
9bc82b3f35
|
@ -80,6 +80,7 @@
|
|||
<EventListCard
|
||||
v-for="participation in row[1]"
|
||||
v-if="isInLessThanSevenDays(row[0])"
|
||||
@eventDeleted="eventDeleted"
|
||||
:key="participation[1].id"
|
||||
:participation="participation[1]"
|
||||
/>
|
||||
|
@ -99,6 +100,7 @@
|
|||
v-for="participation in lastWeekEvents"
|
||||
:key="participation.id"
|
||||
:participation="participation"
|
||||
@eventDeleted="eventDeleted"
|
||||
:options="{ hideDate: false }"
|
||||
/>
|
||||
</div>
|
||||
|
@ -163,6 +165,7 @@ import Subtitle from "../components/Utils/Subtitle.vue";
|
|||
config: CONFIG,
|
||||
currentUserParticipations: {
|
||||
query: LOGGED_USER_PARTICIPATIONS,
|
||||
fetchPolicy: "network-only",
|
||||
variables() {
|
||||
const lastWeek = new Date();
|
||||
lastWeek.setDate(new Date().getDate() - 7);
|
||||
|
@ -356,6 +359,12 @@ export default class Home extends Vue {
|
|||
);
|
||||
}
|
||||
|
||||
eventDeleted(eventid: string) {
|
||||
this.currentUserParticipations = this.currentUserParticipations.filter(
|
||||
(participation) => participation.event.id !== eventid
|
||||
);
|
||||
}
|
||||
|
||||
// getAddressData(addressData) {
|
||||
// const geoHash = ngeohash.encode(
|
||||
// addressData.latitude,
|
||||
|
|
Loading…
Reference in a new issue