54 lines
1.9 KiB
TypeScript
54 lines
1.9 KiB
TypeScript
import { AppState } from './reducers';
|
|
import * as configSelectors from './config/selectors';
|
|
import { ICurrentTo, ICurrentValue, TransactionFieldValues, TransactionFields } from './types';
|
|
|
|
export const reduceToValues = (transactionFields: AppState['transaction']['fields']) =>
|
|
Object.keys(transactionFields).reduce<TransactionFieldValues>(
|
|
(obj, currFieldName: keyof TransactionFields) => {
|
|
const currField = transactionFields[currFieldName];
|
|
return { ...obj, [currFieldName]: currField.value };
|
|
},
|
|
{} as TransactionFieldValues
|
|
);
|
|
|
|
export const isFullTx = (
|
|
state: AppState,
|
|
transactionFields: AppState['transaction']['fields'],
|
|
currentTo: ICurrentTo,
|
|
currentValue: ICurrentValue,
|
|
dataExists: boolean,
|
|
validGasCost: boolean,
|
|
unit: string // if its ether, we can have empty data, if its a token, we cant have value
|
|
) => {
|
|
const { data, value, to, ...rest } = transactionFields;
|
|
const partialParamsToCheck = { ...rest };
|
|
|
|
const validPartialParams = Object.values(partialParamsToCheck).reduce<boolean>(
|
|
(isValid, v: AppState['transaction']['fields'] & ICurrentTo & ICurrentValue) =>
|
|
isValid && !!v.value,
|
|
true
|
|
);
|
|
|
|
if (configSelectors.isNetworkUnit(state, unit)) {
|
|
// if theres data we can have no current value, and we dont have to check for a to address
|
|
if (dataExists && validGasCost && !currentValue.value && currentValue.raw === '') {
|
|
return validPartialParams;
|
|
} else if (dataExists && validGasCost && !to.value && to.raw === '') {
|
|
// same goes for value transactions to 0x
|
|
return !!(validPartialParams && currentValue.value);
|
|
} else {
|
|
// otherwise we require value
|
|
return !!(validPartialParams && currentValue.value && to.value && currentTo.value);
|
|
}
|
|
} else {
|
|
return !!(
|
|
validPartialParams &&
|
|
data.value &&
|
|
!value.value &&
|
|
currentValue.value &&
|
|
to.value &&
|
|
currentTo.value
|
|
);
|
|
}
|
|
};
|