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.
trezor-wallet/src/reducers/PendingTxReducer.js

85 lines
2.4 KiB

6 years ago
/* @flow */
import * as CONNECT from 'actions/constants/TrezorConnect';
import * as PENDING from 'actions/constants/pendingTx';
import * as SEND from 'actions/constants/send';
6 years ago
import type { TrezorDevice, Action } from 'flowtype';
6 years ago
6 years ago
export type PendingTx = {
+type: 'send' | 'recv',
+hash: string,
+network: string,
+address: string,
+currency: string,
+amount: string,
+total: string,
+fee: string,
rejected?: boolean,
};
6 years ago
6 years ago
export type State = Array<PendingTx>;
const initialState: State = [];
6 years ago
// const add = (state: State, action: SendTxAction): State => {
// const newState = [...state];
// newState.push({
// type: 'send',
// id: action.txid,
// network: action.account.network,
// address: action.account.address,
// deviceState: action.account.deviceState,
// currency: action.selectedCurrency,
// amount: action.amount,
// total: action.total,
// tx: action.tx,
// nonce: action.nonce,
// rejected: false,
// });
// return newState;
// };
6 years ago
const addFromNotification = (state: State, payload: PendingTx): State => {
const newState = [...state];
6 years ago
newState.push(payload);
6 years ago
return newState;
};
6 years ago
//const clear = (state: State, device: TrezorDevice): State => state.filter(tx => tx.deviceState !== device.state);
const remove = (state: State, hash: string): State => state.filter(tx => tx.hash !== hash);
6 years ago
const reject = (state: State, hash: string): State => state.map((tx) => {
if (tx.hash === hash && !tx.rejected) {
return { ...tx, rejected: true };
}
return tx;
});
6 years ago
export default function pending(state: State = initialState, action: Action): State {
6 years ago
switch (action.type) {
// case SEND.TX_COMPLETE:
// return add(state, action);
6 years ago
// case CONNECT.FORGET:
// case CONNECT.FORGET_SINGLE:
// case CONNECT.FORGET_SILENT:
// case CONNECT.RECEIVE_WALLET_TYPE:
// return clear(state, action.device);
case PENDING.ADD:
return addFromNotification(state, action.payload);
case PENDING.TX_RESOLVED:
return remove(state, action.hash);
6 years ago
case PENDING.TX_REJECTED:
return reject(state, action.hash);
6 years ago
case PENDING.FROM_STORAGE:
6 years ago
return action.payload;
default:
return state;
}
}