37 lines
965 B
TypeScript
37 lines
965 B
TypeScript
|
import { ActionType as ExamplesActionType, ChangeSelectedAction as ChangeSelectedExampleAction } from './examples';
|
||
|
|
||
|
export enum ActionType {
|
||
|
ChangeEntrypoint = 'evaluate-value-change-entrypoint'
|
||
|
}
|
||
|
|
||
|
export interface EvaluateValueState {
|
||
|
entrypoint: string;
|
||
|
}
|
||
|
|
||
|
export class ChangeEntrypointAction {
|
||
|
public readonly type = ActionType.ChangeEntrypoint;
|
||
|
constructor(public payload: EvaluateValueState['entrypoint']) {}
|
||
|
}
|
||
|
|
||
|
type Action = ChangeEntrypointAction | ChangeSelectedExampleAction;
|
||
|
|
||
|
const DEFAULT_STATE: EvaluateValueState = {
|
||
|
entrypoint: ''
|
||
|
};
|
||
|
|
||
|
export default (state = DEFAULT_STATE, action: Action): EvaluateValueState => {
|
||
|
switch (action.type) {
|
||
|
case ExamplesActionType.ChangeSelected:
|
||
|
return {
|
||
|
...state,
|
||
|
...(!action.payload ? DEFAULT_STATE : action.payload.evaluateValue)
|
||
|
};
|
||
|
case ActionType.ChangeEntrypoint:
|
||
|
return {
|
||
|
...state,
|
||
|
entrypoint: action.payload
|
||
|
};
|
||
|
}
|
||
|
return state;
|
||
|
};
|