You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

50 lines
1.2 KiB

import * as actions from '../actions';
import {
JSONTextSettings, FormSettings, SettingSource,
} from '../../shared/SettingData';
5 years ago
import { DefaultSetting } from '../../shared/settings/Settings';
7 years ago
export interface State {
source: SettingSource;
json?: JSONTextSettings;
form?: FormSettings;
error: string;
}
const defaultState: State = {
source: SettingSource.JSON,
json: JSONTextSettings.fromText(''),
5 years ago
form: FormSettings.fromSettings(DefaultSetting),
6 years ago
error: '',
7 years ago
};
export default function reducer(
state = defaultState,
action: actions.SettingAction,
): State {
7 years ago
switch (action.type) {
case actions.SETTING_SET_SETTINGS:
6 years ago
return { ...state,
source: action.source,
json: action.json,
form: action.form,
6 years ago
error: '', };
case actions.SETTING_SHOW_ERROR:
return { ...state,
error: action.error,
6 years ago
json: action.json, };
case actions.SETTING_SWITCH_TO_FORM:
return { ...state,
error: '',
source: SettingSource.Form,
6 years ago
form: action.form, };
case actions.SETTING_SWITCH_TO_JSON:
return { ...state,
error: '',
source: SettingSource.JSON,
6 years ago
json: action.json, };
7 years ago
default:
return state;
}
}