/* @flow */ import BigNumber from 'bignumber.js'; import * as SEND from 'actions/constants/send'; import { findDevice, getPendingAmount } from 'reducers/utils'; import { toDecimalAmount } from 'utils/formatUtils'; import type { Dispatch, GetState, PayloadAction, BlockchainFeeLevel, } from 'flowtype'; import type { State, FeeLevel } from 'reducers/SendFormRippleReducer'; import AddressValidator from 'wallet-address-validator'; // general regular expressions const ABS_RE = new RegExp('^[0-9]+$'); const NUMBER_RE: RegExp = new RegExp('^(0|0\\.([0-9]+)?|[1-9][0-9]*\\.?([0-9]+)?|\\.[0-9]+)$'); const XRP_6_RE = new RegExp('^(0|0\\.([0-9]{0,6})?|[1-9][0-9]*\\.?([0-9]{0,6})?|\\.[0-9]{0,6})$'); /* * Called from SendFormActions.observe * Reaction for BLOCKCHAIN.FEE_UPDATED action */ export const onFeeUpdated = (network: string, feeLevels: Array): PayloadAction => (dispatch: Dispatch, getState: GetState): void => { const state = getState().sendFormRipple; if (network === state.networkSymbol) return; if (!state.untouched) { // if there is a transaction draft let the user know // and let him update manually dispatch({ type: SEND.CHANGE, networkType: 'ripple', state: { ...state, feeNeedsUpdate: true, }, }); return; } // automatically update feeLevels const newFeeLevels = dispatch(getFeeLevels(feeLevels)); const selectedFeeLevel = getSelectedFeeLevel(newFeeLevels, state.selectedFeeLevel); dispatch({ type: SEND.CHANGE, networkType: 'ripple', state: { ...state, feeNeedsUpdate: false, feeLevels: newFeeLevels, selectedFeeLevel, }, }); }; /* * Recalculate amount, total and fees */ export const validation = (): PayloadAction => (dispatch: Dispatch, getState: GetState): State => { // clone deep nested object // to avoid overrides across state history let state: State = JSON.parse(JSON.stringify(getState().sendFormRipple)); // reset errors state.errors = {}; state.warnings = {}; state.infos = {}; state = dispatch(updateCustomFeeLabel(state)); state = dispatch(recalculateTotalAmount(state)); state = dispatch(addressValidation(state)); state = dispatch(addressLabel(state)); state = dispatch(amountValidation(state)); state = dispatch(feeValidation(state)); return state; }; const recalculateTotalAmount = ($state: State): PayloadAction => (dispatch: Dispatch, getState: GetState): State => { const { account, network, pending, } = getState().selectedAccount; if (!account || !network) return $state; const state = { ...$state }; const fee = toDecimalAmount(state.selectedFeeLevel.fee, network.decimals); if (state.setMax) { const pendingAmount = getPendingAmount(pending, state.networkSymbol, false); const availableBalance = new BigNumber(account.balance).minus(pendingAmount); state.amount = calculateMaxAmount(availableBalance, fee); } state.total = calculateTotal(state.amount, fee); return state; }; const updateCustomFeeLabel = ($state: State): PayloadAction => (dispatch: Dispatch, getState: GetState): State => { const { network } = getState().selectedAccount; if (!network) return $state; // flowtype fallback const state = { ...$state }; if ($state.selectedFeeLevel.value === 'Custom') { state.selectedFeeLevel = { ...state.selectedFeeLevel, fee: state.fee, label: `${toDecimalAmount(state.fee, network.decimals)} ${state.networkSymbol}`, }; } return state; }; /* * Address value validation */ const addressValidation = ($state: State): PayloadAction => (dispatch: Dispatch, getState: GetState): State => { const state = { ...$state }; if (!state.touched.address) return state; const { account, network } = getState().selectedAccount; if (!account || !network) return state; const { address } = state; if (address.length < 1) { state.errors.address = 'Address is not set'; } else if (!AddressValidator.validate(address, 'XRP')) { state.errors.address = 'Address is not valid'; } else if (address.toLowerCase() === account.descriptor.toLowerCase()) { state.errors.address = 'Cannot send to myself'; } return state; }; /* * Address label assignation */ const addressLabel = ($state: State): PayloadAction => (dispatch: Dispatch, getState: GetState): State => { const state = { ...$state }; if (!state.touched.address || state.errors.address) return state; const { account, network, } = getState().selectedAccount; if (!account || !network) return state; const { address } = state; const savedAccounts = getState().accounts.filter(a => a.descriptor.toLowerCase() === address.toLowerCase()); if (savedAccounts.length > 0) { // check if found account belongs to this network const currentNetworkAccount = savedAccounts.find(a => a.network === network.shortcut); if (currentNetworkAccount) { const device = findDevice(getState().devices, currentNetworkAccount.deviceID, currentNetworkAccount.deviceState); if (device) { state.infos.address = `${device.instanceLabel} Account #${(currentNetworkAccount.index + 1)}`; } } else { // corner-case: the same derivation path is used on different networks const otherNetworkAccount = savedAccounts[0]; const device = findDevice(getState().devices, otherNetworkAccount.deviceID, otherNetworkAccount.deviceState); const { networks } = getState().localStorage.config; const otherNetwork = networks.find(c => c.shortcut === otherNetworkAccount.network); if (device && otherNetwork) { state.warnings.address = `Looks like it's ${device.instanceLabel} Account #${(otherNetworkAccount.index + 1)} address of ${otherNetwork.name} network`; } } } return state; }; /* * Amount value validation */ const amountValidation = ($state: State): PayloadAction => (dispatch: Dispatch, getState: GetState): State => { const state = { ...$state }; if (!state.touched.amount) return state; const { account, pending, } = getState().selectedAccount; if (!account) return state; const { amount } = state; if (amount.length < 1) { state.errors.amount = 'Amount is not set'; } else if (amount.length > 0 && !amount.match(NUMBER_RE)) { state.errors.amount = 'Amount is not a number'; } else { const pendingAmount: BigNumber = getPendingAmount(pending, state.networkSymbol); if (!state.amount.match(XRP_6_RE)) { state.errors.amount = 'Maximum 6 decimals allowed'; } else if (new BigNumber(state.total).greaterThan(new BigNumber(account.balance).minus(pendingAmount))) { state.errors.amount = 'Not enough funds'; } } return state; }; /* * Fee value validation */ export const feeValidation = ($state: State): PayloadAction => (dispatch: Dispatch, getState: GetState): State => { const state = { ...$state }; if (!state.touched.fee) return state; const { network, } = getState().selectedAccount; if (!network) return state; const { fee } = state; if (fee.length < 1) { state.errors.fee = 'Fee is not set'; } else if (fee.length > 0 && !fee.match(ABS_RE)) { state.errors.fee = 'Fee must be an absolute number'; } else { const gl: BigNumber = new BigNumber(fee); if (gl.lessThan(network.fee.minFee)) { state.errors.fee = 'Fee is below recommended'; } else if (gl.greaterThan(network.fee.maxFee)) { state.errors.fee = 'Fee is above recommended'; } } return state; }; /* * UTILITIES */ const calculateTotal = (amount: string, fee: string): string => { try { return new BigNumber(amount).plus(fee).toString(10); } catch (error) { return '0'; } }; const calculateMaxAmount = (balance: BigNumber, fee: string): string => { try { // TODO - minus pendings const max = balance.minus(fee); if (max.lessThan(0)) return '0'; return max.toString(10); } catch (error) { return '0'; } }; // Generate FeeLevel dataset for "fee" select export const getFeeLevels = (feeLevels: Array, selected?: FeeLevel): PayloadAction> => (dispatch: Dispatch, getState: GetState): Array => { const { network } = getState().selectedAccount; if (!network) return []; // flowtype fallback // map BlockchainFeeLevel to SendFormReducer FeeLevel const levels = feeLevels.map(level => ({ value: level.name, fee: level.value, label: `${toDecimalAmount(level.value, network.decimals)} ${network.symbol}`, })); // add "Custom" level const customLevel = selected && selected.value === 'Custom' ? { value: 'Custom', fee: selected.fee, label: `${toDecimalAmount(selected.fee, network.decimals)} ${network.symbol}`, } : { value: 'Custom', fee: '0', label: '', }; return levels.concat([customLevel]); }; export const getSelectedFeeLevel = (feeLevels: Array, selected: FeeLevel): FeeLevel => { const { value } = selected; let selectedFeeLevel: ?FeeLevel; selectedFeeLevel = feeLevels.find(f => f.value === value); if (!selectedFeeLevel) { // fallback to default selectedFeeLevel = feeLevels.find(f => f.value === 'Normal'); } return selectedFeeLevel || selected; };