gancio/store/index.js
2019-07-23 01:31:43 +02:00

190 lines
5 KiB
JavaScript

import moment from 'dayjs'
import intersection from 'lodash/intersection'
import find from 'lodash/find'
export const state = () => ({
locale: '',
events: [],
tags: [],
places: [],
settings: {
allow_registration: true,
allow_anon_event: true,
allow_recurrent_event: true,
recurrent_event_visible: false,
allow_comments: false,
},
filters: {
tags: [],
places: [],
show_past_events: false,
show_recurrent_events: false,
show_pinned_event: false
}
})
export const getters = {
// filter matches search tag/place
filteredEvents: state => {
const search_for_tags = !!state.filters.tags.length
const search_for_places = !!state.filters.places.length
return state.events.filter(e => {
// filter past events
if (!state.filters.show_past_events && e.past) return false
// filter recurrent events
if (!state.filters.show_recurrent_events && e.recurrent) return false
if (search_for_places) {
if (find(state.filters.places, p => p === e.place.id)) return true
}
if (search_for_tags) {
const common_tags = intersection(e.tags, state.filters.tags);
if (common_tags.length > 0) return true
}
if (!search_for_places && !search_for_tags) return true
return false
})
},
// filter matches search tag/place including past events
filteredEventsWithPast: state => {
const search_for_tags = !!state.filters.tags.length
const search_for_places = !!state.filters.places.length
return state.events.filter(e => {
const match = false
// filter recurrent events
if (!state.filters.show_recurrent_events && e.recurrent) return false
if (!match && search_for_places) {
if (find(state.filters.places, p => p === e.place.id)) return true
}
if (search_for_tags) {
const common_tags = intersection(e.tags, state.filters.tags);
if (common_tags.length > 0) return true
}
if (!search_for_places && !search_for_tags) return true
return false
})
}
}
export const mutations = {
setEvents(state, events) {
// set`past` and `newDay` flags to event
let lastDay = null
state.events = events.map((e) => {
const currentDay = moment(e.start_datetime).date()
e.newDay = (!lastDay || lastDay !== currentDay) && currentDay
lastDay = currentDay
const end_datetime = e.end_datetime || e.start_datetime+3600000*2
const past = ((moment().unix()*1000) - end_datetime) > 0
e.past = !!past
return e
})
},
addEvent(state, event) {
state.events.push(event)
},
updateEvent(state, event) {
state.events = state.events.map((e) => {
if (e.id !== event.id) return e
return event
})
},
delEvent(state, eventId) {
state.events = state.events.filter(ev => {
return ev.id !== eventId
})
},
update(state, { tags, places }) {
state.tags = tags
state.places = places
},
setSearchTags(state, tags) {
state.filters.tags = tags
},
setSearchPlaces(state, places) {
state.filters.places = places
},
showPastEvents(state, show) {
state.filters.show_past_events = show
},
showRecurrentEvents(state, show) {
state.filters.show_recurrent_events = show
},
setSettings(state, settings) {
state.settings = settings
},
setSetting(state, setting) {
state.settings[setting.key] = setting.value
},
setLocale(state, locale) {
state.locale = locale
}
}
export const actions = {
// this method is called server side only for each request
// we use it to get configuration from db, setting locale, etc...
async nuxtServerInit ({ commit }, { app, req } ) {
const settings = await app.$axios.$get('/settings')
commit('setSettings', settings)
// apply settings
commit('showRecurrentEvents', settings.allow_recurrent_event && settings.recurrent_event_visible)
},
async updateEvents({ commit }, page) {
const events = await this.$axios.$get(`/event/${page.month - 1}/${page.year}`)
commit('setEvents', events)
},
async updateMeta({ commit }) {
const { tags, places } = await this.$axios.$get('/event/meta')
commit('update', { tags, places })
},
async addEvent({ commit }, formData) {
const event = await this.$axios.$post('/user/event', formData)
if (event.user) {
commit('addEvent', event)
}
},
async updateEvent({ commit }, formData) {
const event = await this.$axios.$put('/user/event', formData)
if (event.user) {
commit('updateEvent', event)
}
},
delEvent({ commit }, eventId) {
commit('delEvent', eventId)
},
setSearchTags({ commit }, tags) {
commit('setSearchTags', tags)
},
setSearchPlaces({ commit }, places) {
commit('setSearchPlaces', places)
},
showPastEvents({ commit }, show) {
commit('showPastEvents', show)
},
showRecurrentEvents({ commit }, show ) {
commit('showRecurrentEvents', show)
},
async setSetting({ commit }, setting) {
await this.$axios.$post('/settings', setting )
commit('setSetting', setting)
},
}