Skip to content
Snippets Groups Projects
presentation.ts 1.96 KiB
Newer Older
  • Learn to ignore specific revisions
  • import axios from 'axios'
    
    robban64's avatar
    robban64 committed
    import { Slide } from '../interfaces/ApiModels'
    
    robban64's avatar
    robban64 committed
    import { Timer } from '../interfaces/Timer'
    import store, { AppDispatch } from './../store'
    
    import Types from './types'
    
    export const getPresentationCompetition = (id: string) => async (dispatch: AppDispatch) => {
      await axios
        .get(`/competitions/${id}`)
        .then((res) => {
          dispatch({
            type: Types.SET_PRESENTATION_COMPETITION,
            payload: res.data,
          })
        })
        .catch((err) => {
          console.log(err)
        })
    }
    
    export const getPresentationTeams = (id: string) => async (dispatch: AppDispatch) => {
      await axios
        .get(`/competitions/${id}/teams`)
        .then((res) => {
          dispatch({
            type: Types.SET_PRESENTATION_TEAMS,
            payload: res.data.items,
          })
        })
        .catch((err) => {
          console.log(err)
        })
    }
    
    export const setCurrentSlide = (slide: Slide) => (dispatch: AppDispatch) => {
      dispatch({ type: Types.SET_PRESENTATION_SLIDE, payload: slide })
    }
    
    export const setCurrentSlidePrevious = () => (dispatch: AppDispatch) => {
      dispatch({ type: Types.SET_PRESENTATION_SLIDE_PREVIOUS })
    }
    
    export const setCurrentSlideNext = () => (dispatch: AppDispatch) => {
      dispatch({ type: Types.SET_PRESENTATION_SLIDE_NEXT })
    }
    
    Victor Löfgren's avatar
    Victor Löfgren committed
    
    export const setCurrentSlideByOrder = (order: number) => (dispatch: AppDispatch) => {
      dispatch({ type: Types.SET_PRESENTATION_SLIDE_BY_ORDER, payload: order })
    }
    
    export const setPresentationCode = (code: string) => (dispatch: AppDispatch) => {
      dispatch({ type: Types.SET_PRESENTATION_CODE, payload: code })
    }
    
    export const setPresentationTimer = (timer: Timer) => (dispatch: AppDispatch) => {
      dispatch({ type: Types.SET_PRESENTATION_TIMER, payload: timer })
    }
    
    export const setPresentationTimerDecrement = () => (dispatch: AppDispatch) => {
      dispatch({
        type: Types.SET_PRESENTATION_TIMER,
        payload: {
          enabled: store.getState().presentation.timer.enabled,
          value: store.getState().presentation.timer.value - 1,
        },
      })
    }