-
Albin Henriksson authoredAlbin Henriksson authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
editorReducer.ts 819 B
import { AnyAction } from 'redux'
import Types from '../actions/types'
import { RichCompetition } from '../interfaces/ApiRichModels'
interface EditorState {
competition: RichCompetition
activeSlideId: number
}
const initialState: EditorState = {
competition: {
name: '',
id: 0,
year: 0,
city_id: 1,
slides: [],
teams: [],
},
activeSlideId: 0,
}
export default function (state = initialState, action: AnyAction) {
switch (action.type) {
case Types.SET_EDITOR_COMPETITION:
return {
competition: action.payload as RichCompetition,
activeSlideId: action.payload.slides[0].id as number,
}
case Types.SET_EDITOR_SLIDE_ID:
return {
...state,
activeSlideId: action.payload as number,
}
default:
return state
}
}