2019-04-03 00:25:12 +02:00
|
|
|
<template lang="pug">
|
2019-05-30 12:04:14 +02:00
|
|
|
#calendar
|
|
|
|
v-calendar(
|
2019-04-29 00:27:29 +02:00
|
|
|
title-position='left'
|
2019-06-21 23:52:18 +02:00
|
|
|
:locale='$i18n.locale'
|
2019-04-29 00:27:29 +02:00
|
|
|
is-dark
|
2019-04-03 00:25:12 +02:00
|
|
|
:attributes='attributes'
|
|
|
|
:from-page.sync='page'
|
2019-05-30 12:04:14 +02:00
|
|
|
is-expanded
|
|
|
|
is-inline
|
|
|
|
@dayclick='click')
|
|
|
|
|
2019-04-03 00:25:12 +02:00
|
|
|
</template>
|
|
|
|
<script>
|
2019-05-30 12:04:14 +02:00
|
|
|
import { mapState, mapActions, mapGetters } from 'vuex'
|
2019-04-03 00:25:12 +02:00
|
|
|
import moment from 'dayjs'
|
2019-05-30 12:12:51 +02:00
|
|
|
import { intersection, sample, get } from 'lodash'
|
2019-04-03 00:25:12 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Calendar',
|
|
|
|
data () {
|
|
|
|
const month = moment().month()+1
|
|
|
|
const year = moment().year()
|
|
|
|
return {
|
|
|
|
page: { month, year},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
2019-06-10 00:40:37 +02:00
|
|
|
// month selected
|
2019-04-03 00:25:12 +02:00
|
|
|
page () {
|
|
|
|
this.updateEvents(this.page)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
...mapActions(['updateEvents']),
|
2019-05-30 12:04:14 +02:00
|
|
|
click (day) {
|
|
|
|
const element = document.getElementById(day.day)
|
|
|
|
if (element) element.scrollIntoView(); //Even IE6 supports this
|
2019-04-29 00:27:29 +02:00
|
|
|
},
|
2019-04-03 00:25:12 +02:00
|
|
|
},
|
|
|
|
computed: {
|
2019-05-30 12:04:14 +02:00
|
|
|
...mapGetters(['filteredEvents']),
|
2019-04-03 00:25:12 +02:00
|
|
|
attributes () {
|
2019-06-21 23:52:18 +02:00
|
|
|
let attributes = []
|
|
|
|
attributes.push ({ key: 'today', dates: new Date(), highlight: { color: 'yellow' }})
|
|
|
|
|
|
|
|
attributes = attributes.concat(this.filteredEvents
|
|
|
|
.filter(e => !e.multidate)
|
|
|
|
.map(e => ({ key: e.id, dot: {}, dates: new Date(e.start_datetime*1000)})))
|
|
|
|
|
|
|
|
attributes = attributes.concat(this.filteredEvents
|
|
|
|
.filter(e => e.multidate)
|
|
|
|
.map( e => ({ key: e.id, highlight: {}, dates: {
|
|
|
|
start: new Date(e.start_datetime*1000), end: new Date(e.end_datetime*1000) }})))
|
|
|
|
|
|
|
|
return attributes
|
2019-04-03 00:25:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#calendar {
|
2019-05-30 12:04:14 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 500px;
|
|
|
|
align-self: center;
|
2019-04-03 00:25:12 +02:00
|
|
|
}
|
|
|
|
|
2019-06-11 17:24:48 +02:00
|
|
|
.vc-opacity-0 {
|
|
|
|
opacity: 0.2 !important;
|
|
|
|
}
|
2019-06-09 00:45:50 +02:00
|
|
|
/* .vc-highlight {
|
|
|
|
color: red;
|
2019-05-30 12:12:51 +02:00
|
|
|
height: 22px !important;
|
|
|
|
opacity: 0.4;
|
|
|
|
border-radius: 15px;
|
2019-06-09 00:45:50 +02:00
|
|
|
} */
|
2019-05-30 12:12:51 +02:00
|
|
|
|
2019-04-03 00:25:12 +02:00
|
|
|
</style>
|