2019-01-21 15:08:22 +01:00
|
|
|
<template>
|
2019-10-01 20:10:53 +02:00
|
|
|
<section class="container">
|
2019-01-21 15:08:22 +01:00
|
|
|
<h1>
|
2019-09-12 11:34:01 +02:00
|
|
|
{{ $t('Event list') }}
|
2019-01-21 15:08:22 +01:00
|
|
|
</h1>
|
|
|
|
<b-loading :active.sync="$apollo.loading"></b-loading>
|
|
|
|
<div v-if="events.length > 0" class="columns is-multiline">
|
|
|
|
<EventCard
|
|
|
|
v-for="event in events"
|
|
|
|
:key="event.uuid"
|
|
|
|
:event="event"
|
|
|
|
class="column is-one-quarter-desktop is-half-mobile"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<b-message v-if-else="events.length === 0 && $apollo.loading === false" type="is-danger">
|
2019-09-12 11:34:01 +02:00
|
|
|
{{ $t('No events found') }}
|
2019-01-21 15:08:22 +01:00
|
|
|
</b-message>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2019-02-22 14:55:47 +01:00
|
|
|
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
|
|
|
|
import EventCard from '@/components/Event/EventCard.vue';
|
|
|
|
import { RouteName } from '@/router';
|
|
|
|
|
2019-02-25 17:20:06 +01:00
|
|
|
const ngeohash = require('ngeohash');
|
2019-01-21 15:08:22 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
components: {
|
2019-03-22 10:57:14 +01:00
|
|
|
EventCard,
|
|
|
|
},
|
2019-01-21 15:08:22 +01:00
|
|
|
})
|
|
|
|
export default class EventList extends Vue {
|
|
|
|
@Prop(String) location!: string;
|
|
|
|
|
|
|
|
events = [];
|
|
|
|
loading = true;
|
|
|
|
locationChip = false;
|
2019-02-22 14:55:47 +01:00
|
|
|
locationText = '';
|
2019-01-21 15:08:22 +01:00
|
|
|
|
|
|
|
created() {
|
2019-03-22 10:57:14 +01:00
|
|
|
this.fetchData(this.$router.currentRoute.params['location']);
|
2019-01-21 15:08:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
beforeRouteUpdate(to, from, next) {
|
|
|
|
this.fetchData(to.params.location);
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
|
2019-03-22 10:57:14 +01:00
|
|
|
@Watch('locationChip')
|
2019-01-21 15:08:22 +01:00
|
|
|
onLocationChipChange(val) {
|
|
|
|
if (val === false) {
|
2019-02-22 14:55:47 +01:00
|
|
|
this.$router.push({ name: RouteName.EVENT_LIST });
|
2019-01-21 15:08:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
geocode(lat, lon) {
|
|
|
|
console.log({ lat, lon });
|
|
|
|
console.log(ngeohash.encode(lat, lon, 10));
|
|
|
|
return ngeohash.encode(lat, lon, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchData(location) {
|
2019-03-22 10:57:14 +01:00
|
|
|
let queryString = '/events';
|
2019-01-21 15:08:22 +01:00
|
|
|
if (location) {
|
|
|
|
queryString += `?geohash=${location}`;
|
|
|
|
const { latitude, longitude } = ngeohash.decode(location);
|
|
|
|
this.locationText = `${latitude.toString()} : ${longitude.toString()}`;
|
|
|
|
}
|
|
|
|
this.locationChip = true;
|
|
|
|
// FIXME: remove eventFetch
|
|
|
|
// eventFetch(queryString, this.$store)
|
|
|
|
// .then(response => response.json())
|
|
|
|
// .then((response) => {
|
|
|
|
// this.loading = false;
|
|
|
|
// this.events = response.data;
|
|
|
|
// console.log(this.events);
|
|
|
|
// });
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteEvent(event) {
|
|
|
|
const router = this.$router;
|
|
|
|
// FIXME: remove eventFetch
|
|
|
|
// eventFetch(`/events/${event.uuid}`, this.$store, { method: 'DELETE' })
|
|
|
|
// .then(() => router.push('/events'));
|
|
|
|
}
|
|
|
|
|
|
|
|
viewEvent(event) {
|
2019-02-22 14:55:47 +01:00
|
|
|
this.$router.push({ name: RouteName.EVENT, params: { uuid: event.uuid } });
|
2019-01-21 15:08:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
downloadIcsEvent(event) {
|
|
|
|
// FIXME: remove eventFetch
|
|
|
|
// eventFetch(`/events/${event.uuid}/ics`, this.$store, { responseType: 'arraybuffer' })
|
|
|
|
// .then(response => response.text())
|
|
|
|
// .then((response) => {
|
|
|
|
// const blob = new Blob([ response ], { type: 'text/calendar' });
|
|
|
|
// const link = document.createElement('a');
|
|
|
|
// link.href = window.URL.createObjectURL(blob);
|
|
|
|
// link.download = `${event.title}.ics`;
|
|
|
|
// document.body.appendChild(link);
|
|
|
|
// link.click();
|
|
|
|
// document.body.removeChild(link);
|
|
|
|
// });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
|
|
<style scoped>
|
|
|
|
</style>
|