Skip to content
Snippets Groups Projects
shows.js 12.5 KiB
Newer Older
import { APIError, callOrReturn, handleApiError } from '../api-helper'
import { getISODateString, has } from '@/utilities'
import { createSteeringURL } from '@/api'
import decamelize from 'decamelize'
const cloneMinimalShowObject = function (show) {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  /* returns a new minimal object from the current show object with all
    properties needed for a PUT request to the /show/ endpoint */
  return {
    name: show.name,
    slug: show.slug,
    shortDescription: show.shortDescription,
    fundingCategoryId: show.fundingCategoryId,
    typeId: show.typeId,
    categoryIds: Array.from(show.categoryIds),
    hostIds: Array.from(show.hostIds),
    ownerIds: Array.from(show.ownerIds),
    languageIds: Array.from(show.languageIds),
    topicIds: Array.from(show.topicIds),
    musicFocusIds: Array.from(show.musicFocusIds),
  }
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  shows: [],
  schedule: null,
  schedules: [],
  scheduleTimeslots: [],
  timeslots: [],
  types: [],
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  categories: [],
  topics: [],
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  languages: [],
  hosts: [],
  loaded: {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    timeslots: false,
    schedule: false,
    scheduleTimeslots: false,
    schedules: false,
    types: false,
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    categories: false,
    topics: false,
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    languages: false,
    hosts: false,
  },
  selected: {
    index: 0, // index of the currently selected show in our shows array
    id: 0, // actual id of the currently selected show
  },
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  shows: (state) => state.shows,
  selectedShow: (state) => state.shows[state.selected.index],
  schedule: (state) => state.schedule,
  schedules: (state) => state.schedules,
  scheduleTimeslots: (state) => state.scheduleTimeslots,
  timeslots: (state) => state.timeslots,
  types: (state) => state.types,
  fundingCategories: (state) => state.fundingCategories,
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  categories: (state) => state.categories,
  topics: (state) => state.topics,
  musicFocus: (state) => state.musicFocus,
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  languages: (state) => state.languages,
  hosts: (state) => state.hosts,
  getShowByDataParam: (state) => (data) => {
    let show
    if (data.id !== undefined) {
      show = state.shows.find((s) => s.id === data.id)
      if (show === undefined) {
        console.error('getShowByDataParam: ID not found in store!')
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      }
    } else if (data.index !== undefined) {
      show = state.shows[data.index]
    } else {
      console.error('getShowByDataParam: no ID or index was provided')
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    return show
  },
  getTimeslotById: (state) => (id) => {
    return state.timeslots.find((s) => s.id === id)
  },
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  loading(state, item) {
    state.loaded[item] = false
  },
  finishLoading(state, item) {
    state.loaded[item] = true
  },

  setShows(state, shows) {
    state.shows = shows
  },
  replaceShow(state, show) {
    const index = state.shows.findIndex(({ id }) => id === show.id)
    if (index !== -1) {
      state.shows.splice(index, 1, show)
    } else {
      state.shows.push(show)
    }
    state.shows.sort((a, b) => a.name.toLowerCase() > b.name.toLowerCase())
  },
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  addShow(state, show) {
    state.shows.push(show)
    state.shows.sort((a, b) => a.name.toLowerCase() > b.name.toLowerCase())
  },

  setSchedule(state, schedule) {
    state.schedule = schedule
  },
  setSchedules(state, schedules) {
    state.schedules = schedules
  },
  setScheduleTimeslots(state, slots) {
    state.scheduleTimeslots = slots
  },

  setTimeslots(state, slots) {
    state.timeslots = slots
  },
  setTimeslot(state, slot) {
    const index = state.timeslots.findIndex((s) => s.id === slot.id)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    state.timeslots.splice(index, 1, slot)
  },

  setName(state, data) {
    const index = state.shows.findIndex((s) => s.id === data.id)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    state.shows[index].name = data.text
  },
  setShortDescription(state, data) {
    const index = state.shows.findIndex((s) => s.id === data.id)
    state.shows[index].shortDescription = data.text
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  },
  setDescription(state, data) {
    const index = state.shows.findIndex((s) => s.id === data.id)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    state.shows[index].description = data.text
  },
  setActive(state, data) {
    const index = state.shows.findIndex((s) => s.id === data.id)
    state.shows[index].isActive = data.active
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  },
  setProperty(state, data) {
    const index = state.shows.findIndex((s) => s.id === data.id)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    state.shows[index][data.property] = data.value
  },

  setMetaArray(state, data) {
    state[data.property] = data.value
  },

  switchShow(state, index) {
    if (state.loaded.shows) {
      state.selected.index = index
      state.selected.id = state.shows[index].id
    }
  },
  switchShowById(state, id) {
    if (state.loaded.shows) {
      state.selected.index = state.shows.findIndex((s) => s.id === id)
      state.selected.id = id
    }
  },
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  fetchSchedule(ctx, data) {
    ctx.commit('loading', 'schedule')
    const uri = createSteeringURL('shows', data.showId, 'schedules', data.scheduleId)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    axios
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then((response) => {
        ctx.commit('setSchedule', response.data)
        ctx.commit('finishLoading', 'schedule')
        if (data && typeof data.callback === 'function') {
          data.callback(response)
        }
      })
      .catch((error) => {
        handleApiError(this, error, 'could not load schedule')
        if (data && typeof data.callbackCancel === 'function') {
          data.callbackCancel()
        }
      })
  },

  fetchSchedules(ctx, data) {
    ctx.commit('loading', 'schedule')
    const uri = createSteeringURL('shows', data.showId, 'schedules')
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    axios
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then((response) => {
        ctx.commit('setSchedules', response.data)
        ctx.commit('finishLoading', 'schedule')
        if (data && typeof data.callback === 'function') {
          data.callback(response)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      })
      .catch((error) => {
        handleApiError(this, error, 'could not load schedule')
        if (data && typeof data.callbackCancel === 'function') {
          data.callbackCancel()
        }
      })
  },

  fetchTimeslots(ctx, data) {
    if (data.scheduleId !== undefined) {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      ctx.commit('loading', 'scheduleTimeslots')
    } else {
      ctx.commit('loading', 'timeslots')
    }
    const query = new URLSearchParams()
    if (data.surrounding) {
      const date = data.surrounding instanceof Date ? data.surrounding : new Date()
      query.set('surrounding', getISODateString(date))
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    } else {
      if (data?.start) query.set('startsAfter', `${data.start}T00:00:00`)
      if (data?.startsBefore) query.set('startsBefore', data.startsBefore)
      if (data?.startsAfter) query.set('startsAfter', data.startsAfter)
      if (data?.end) query.set('endsBefore', `${data.end}T23:59:59`)
      if (data?.endsBefore) query.set('endsBefore', data.endsBefore)
      if (data?.endsAfter) query.set('endsAfter', data.endsAfter)
      if (has(data, 'limit')) query.set('limit', data.limit)
      if (has(data, 'offset')) query.set('offset', data.offset)
      data.id && data.scheduleId
        ? createSteeringURL('shows', data.id, 'schedules', data.scheduleId, 'timeslots', query)
        : data.id
        ? createSteeringURL('shows', data.id, 'timeslots', query)
        : createSteeringURL('timeslots', query)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    axios
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then((response) => {
        if (data.scheduleId !== undefined) {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
          ctx.commit('setScheduleTimeslots', response.data)
          ctx.commit('finishLoading', 'scheduleTimeslots')
        } else {
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
          if (data.limit) {
            ctx.commit('setTimeslots', response.data.results)
          } else {
            ctx.commit('setTimeslots', response.data)
          }
          ctx.commit('finishLoading', 'timeslots')
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
        if (data && typeof data.callback === 'function') {
          data.callback(response)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      })
      .catch((error) => {
        handleApiError(this, error, 'could not load timeslots')
        if (data && typeof data.callbackCancel === 'function') {
          data.callbackCancel()
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      })
  },

  fetchMetaArray(ctx, data) {
    ctx.commit('loading', data.property)
    const subPath = decamelize(data.property, { separator: '-' })
    let uri = createSteeringURL(subPath)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    if (data.onlyActive === true) {
      uri += '?isActive=true'
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then((response) => {
        ctx.commit('setMetaArray', { property: data.property, value: response.data })
        ctx.commit('finishLoading', data.property)
        if (data && typeof data.callback === 'function') {
          data.callback()
        }
      })
      .catch((error) => {
        handleApiError(this, error, 'could not load ' + data.property)
        if (data && typeof data.callbackCancel === 'function') {
          data.callbackCancel()
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      })
  },

  submitSchedule(ctx, data) {
    ctx.commit('loading', 'schedules')
    const uri = createSteeringURL('shows', data.showId, 'schedules')
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    return axios
      .post(uri, data.schedule)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then((response) => {
        ctx.commit('finishLoading', 'schedules')
        return callOrReturn(response, data?.callback)
      })
      .catch((error) => {
        APIError.handle(error, 'Unable to submit schedule', data, this)
      })
  },

  submitShow(ctx, data) {
    const uri = createSteeringURL('shows')
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    axios
      .post(uri, data.show)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then((response) => {
        ctx.commit('addShow', response.data)
        if (data && typeof data.callback === 'function') {
          data.callback(response)
        }
      })
      .catch((error) => {
        handleApiError(this, error, 'could not add new show')
        if (data && typeof data.callbackCancel === 'function') {
          data.callbackCancel()
        }
      })
  },

  updateShow(ctx, data) {
    const uri = createSteeringURL('shows', data.id)
      .put(uri, data.show)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then((response) => {
        if (!data.callback) {
          // `updateProperty` does commit calls in its callback,
          // so we don’t commit changes, if the old callback syntax
          // is used as it’s not used anywhere else.
          ctx.commit('replaceShow', response.data)
        }
        return callOrReturn(response, data?.callback)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      })
      .catch((error) => {
        APIError.handle(error, 'Unable to update show', data, this)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      })
  },

  updateProperty(ctx, data) {
    const show = cloneMinimalShowObject(ctx.getters.getShowByDataParam(data))
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    show[data.property] = data.value
    ctx.dispatch('updateShow', {
      id: data.id,
      show: show,
      callback: () => {
        ctx.commit('setProperty', {
          id: data.id,
          property: data.property,
          value: data.value,
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
        if (typeof data.callback === 'function') {
          data.callback()
        }
      },
      callbackCancel: (error) => {
        if (typeof data.callbackCancel === 'function') {
          data.callbackCancel(error)
        }
      },
    })
  },

  updateTimeslot(ctx, data) {
    const uri = createSteeringURL(
      'shows',
      'timeslots',
      data.timeslot.id,
    )
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    axios
      .put(uri, data.timeslot)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then(() => {
        ctx.commit('setTimeslot', data.timeslot)
        if (data && typeof data.callback === 'function') {
          data.callback()
        }
      })
      .catch((error) => {
        handleApiError(this, error, 'could not update timeslot')
        if (data && typeof data.callbackCancel === 'function') {
          data.callbackCancel()
        }
      })
  },

  deleteSchedule(ctx, data) {
    const uri = createSteeringURL('shows', data.showId, 'schedules', data.scheduleId)
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    axios
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then(() => {
        if (data && typeof data.callback === 'function') {
          data.callback()
        }
      })
      .catch((error) => {
        handleApiError(this, error, 'could not delete full schedule')
        if (data && typeof data.callbackCancel === 'function') {
          data.callbackCancel()
        }
      })
  },

  deleteTimeslot(ctx, data) {
    const uri = createSteeringURL(
      'shows',
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
    axios
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
      .then(() => {
        if (data && typeof data.callback === 'function') {
          data.callback()
        }
      })
      .catch((error) => {
        handleApiError(this, error, 'could not delete single timeslot')
        if (data && typeof data.callbackCancel === 'function') {
          data.callbackCancel()
        }
      })
  },
Konrad Mohrfeldt's avatar
Konrad Mohrfeldt committed
  namespaced: true,
  state,
  getters,
  actions,
  mutations,