mirror of
https://github.com/trezor/trezor-wallet
synced 2024-12-11 17:48:09 +00:00
95 lines
2.4 KiB
JavaScript
95 lines
2.4 KiB
JavaScript
/* @flow */
|
|
import type { Action } from 'flowtype';
|
|
|
|
import * as ACCOUNT from 'actions/constants/account';
|
|
import * as ACTION from 'actions/constants/signVerify';
|
|
|
|
export type Error = {
|
|
inputName: string,
|
|
message: ?string,
|
|
};
|
|
|
|
export type State = {
|
|
signAddress: string,
|
|
signMessage: string,
|
|
signSignature: string,
|
|
verifyAddress: string,
|
|
verifyMessage: string,
|
|
verifySignature: string,
|
|
touched: Array<string>,
|
|
errors: Array<Error>
|
|
}
|
|
|
|
export const initialState: State = {
|
|
signAddress: '',
|
|
signMessage: '',
|
|
signSignature: '',
|
|
verifyAddress: '',
|
|
verifyMessage: '',
|
|
verifySignature: '',
|
|
touched: [],
|
|
errors: [],
|
|
};
|
|
|
|
export default (state: State = initialState, action: Action): State => {
|
|
switch (action.type) {
|
|
case ACTION.SIGN_SUCCESS:
|
|
return {
|
|
...state,
|
|
signSignature: action.signSignature,
|
|
};
|
|
|
|
case ACTION.ERROR: {
|
|
const { inputName } = action;
|
|
if (!state.errors.some(e => e.inputName === inputName)) {
|
|
const error = { inputName, message: action.message };
|
|
return {
|
|
...state,
|
|
errors: [...state.errors, error],
|
|
};
|
|
}
|
|
return state;
|
|
}
|
|
|
|
case ACTION.TOUCH: {
|
|
const { inputName } = action;
|
|
if (!state.touched.includes(inputName)) {
|
|
return {
|
|
...state,
|
|
touched: [...state.touched, action.inputName],
|
|
};
|
|
}
|
|
return {
|
|
...state,
|
|
errors: state.errors.filter(error => error.inputName !== inputName),
|
|
};
|
|
}
|
|
|
|
case ACTION.INPUT_CHANGE: {
|
|
const change = { [action.inputName]: action.value };
|
|
return { ...state, ...change };
|
|
}
|
|
|
|
case ACCOUNT.DISPOSE:
|
|
return initialState;
|
|
|
|
case ACTION.CLEAR_SIGN:
|
|
return {
|
|
...state,
|
|
signAddress: '',
|
|
signMessage: '',
|
|
signSignature: '',
|
|
};
|
|
|
|
case ACTION.CLEAR_VERIFY:
|
|
return {
|
|
...state,
|
|
verifyAddress: '',
|
|
verifyMessage: '',
|
|
verifySignature: '',
|
|
};
|
|
|
|
default:
|
|
return state;
|
|
}
|
|
}; |