MyCrypto/common/reducers/swap.js

101 lines
2.4 KiB
JavaScript
Raw Normal View History

2017-06-11 18:00:28 -07:00
import {
2017-06-18 22:39:07 -07:00
SWAP_DESTINATION_AMOUNT,
SWAP_DESTINATION_KIND,
SWAP_ORIGIN_AMOUNT,
SWAP_ORIGIN_KIND,
SWAP_UPDATE_BITY_RATES
} from 'actions/swapConstants';
import { combineAndUpper } from 'api/bity';
2017-06-11 18:00:28 -07:00
export const ALL_CRYPTO_KIND_OPTIONS = ['BTC', 'ETH', 'REP'];
2017-06-11 18:00:28 -07:00
const initialState = {
2017-06-18 22:39:07 -07:00
originAmount: 0,
destinationAmount: 0,
originKind: 'BTC',
destinationKind: 'ETH',
destinationKindOptions: ALL_CRYPTO_KIND_OPTIONS.filter(
element => element !== 'BTC'
),
originKindOptions: ALL_CRYPTO_KIND_OPTIONS.filter(
element => element !== 'REP'
),
bityRates: {}
2017-06-11 18:00:28 -07:00
};
const buildDestinationAmount = (
originAmount,
originKind,
destinationKind,
bityRates
) => {
let pairName = combineAndUpper(originKind, destinationKind);
let bityRate = bityRates[pairName];
return originAmount * bityRate;
};
const buildDestinationKind = (originKind, destinationKind) => {
if (originKind === destinationKind) {
return ALL_CRYPTO_KIND_OPTIONS.filter(element => element !== originKind)[0];
} else {
return destinationKind;
}
};
2017-06-11 18:00:28 -07:00
export function swap(state = initialState, action) {
2017-06-18 22:39:07 -07:00
switch (action.type) {
case SWAP_ORIGIN_KIND: {
const newDestinationKind = buildDestinationKind(
action.value,
state.destinationKind
);
2017-06-18 22:39:07 -07:00
return {
...state,
originKind: action.value,
destinationKind: newDestinationKind,
2017-06-18 22:39:07 -07:00
destinationKindOptions: ALL_CRYPTO_KIND_OPTIONS.filter(
element => element !== action.value
),
destinationAmount: buildDestinationAmount(
state.originAmount,
action.value,
newDestinationKind,
state.bityRates
2017-06-18 22:39:07 -07:00
)
};
}
case SWAP_DESTINATION_KIND: {
return {
...state,
destinationKind: action.value,
destinationAmount: buildDestinationAmount(
state.originAmount,
state.originKind,
action.value,
state.bityRates
)
2017-06-18 22:39:07 -07:00
};
2017-06-11 18:00:28 -07:00
}
2017-06-18 22:39:07 -07:00
case SWAP_ORIGIN_AMOUNT:
return {
...state,
originAmount: action.value
};
case SWAP_DESTINATION_AMOUNT:
return {
...state,
destinationAmount: action.value
};
case SWAP_UPDATE_BITY_RATES:
return {
...state,
bityRates: {
...state.bityRates,
...action.value
}
};
default:
return state;
}
2017-06-11 18:00:28 -07:00
}