move timerOptions to redux
parent
e451cdd78f
commit
87a8385629
@ -0,0 +1,30 @@
|
||||
/**
|
||||
* This slice is intended for the user configurable settings for the client such as appearance, autoplaying of links etc.
|
||||
* Anything setting under the cog wheel tab.
|
||||
*/
|
||||
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
||||
|
||||
type TimerOptionsEntry = { name: string; value: number };
|
||||
export type TimerOptionsArray = Array<TimerOptionsEntry>;
|
||||
|
||||
export type TimerOptionsState = {
|
||||
timerOptions: TimerOptionsArray;
|
||||
};
|
||||
|
||||
export const initialTimerOptionsState: TimerOptionsState = {
|
||||
timerOptions: [],
|
||||
};
|
||||
|
||||
const timerOptionSlice = createSlice({
|
||||
name: 'timerOptions',
|
||||
initialState: initialTimerOptionsState,
|
||||
reducers: {
|
||||
updateTimerOptions: (_state, action: PayloadAction<TimerOptionsArray>) => {
|
||||
return { timerOptions: action.payload };
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const { actions, reducer } = timerOptionSlice;
|
||||
export const { updateTimerOptions } = actions;
|
||||
export const timerOptionReducer = reducer;
|
@ -0,0 +1,4 @@
|
||||
import { StateType } from '../reducer';
|
||||
import { TimerOptionsState } from '../ducks/timerOptions';
|
||||
|
||||
export const getTimerOptions = (state: StateType): TimerOptionsState => state.timerOptions;
|
Loading…
Reference in New Issue