180 lines
5.6 KiB
TypeScript
180 lines
5.6 KiB
TypeScript
import { showNotification } from 'actions/notifications';
|
|
import {
|
|
bityOrderCreateFailedSwap,
|
|
BityOrderCreateRequestedSwapAction,
|
|
bityOrderCreateSucceededSwap,
|
|
changeStepSwap,
|
|
orderStatusRequestedSwap,
|
|
orderStatusSucceededSwap,
|
|
orderTimeSwap,
|
|
startOrderTimerSwap,
|
|
startPollBityOrderStatus,
|
|
stopLoadBityRatesSwap,
|
|
stopPollBityOrderStatus
|
|
} from 'actions/swap';
|
|
import { getOrderStatus, postOrder } from 'api/bity';
|
|
import moment from 'moment';
|
|
import { AppState } from 'reducers';
|
|
import { State as SwapState } from 'reducers/swap';
|
|
import { delay, SagaIterator } from 'redux-saga';
|
|
import {
|
|
call,
|
|
cancel,
|
|
cancelled,
|
|
fork,
|
|
put,
|
|
select,
|
|
take,
|
|
takeEvery
|
|
} from 'redux-saga/effects';
|
|
|
|
export const getSwap = (state: AppState): SwapState => state.swap;
|
|
const ONE_SECOND = 1000;
|
|
const TEN_SECONDS = ONE_SECOND * 10;
|
|
const BITY_TIMEOUT_MESSAGE = `
|
|
Time has run out.
|
|
If you have already sent, please wait 1 hour.
|
|
If your order has not be processed after 1 hour,
|
|
please press the orange 'Issue with your Swap?' button.
|
|
`;
|
|
|
|
export function* pollBityOrderStatus(): SagaIterator {
|
|
try {
|
|
let swap = yield select(getSwap);
|
|
while (true) {
|
|
yield put(orderStatusRequestedSwap());
|
|
const orderStatus = yield call(getOrderStatus, swap.orderId);
|
|
if (orderStatus.error) {
|
|
yield put(
|
|
showNotification(
|
|
'danger',
|
|
`Bity Error: ${orderStatus.msg}`,
|
|
TEN_SECONDS
|
|
)
|
|
);
|
|
} else {
|
|
yield put(orderStatusSucceededSwap(orderStatus.data));
|
|
yield call(delay, ONE_SECOND * 5);
|
|
swap = yield select(getSwap);
|
|
if (swap === 'CANC') {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} finally {
|
|
if (yield cancelled()) {
|
|
// TODO - implement request cancel if needed
|
|
// yield put(actions.requestFailure('Request cancelled!'))
|
|
}
|
|
}
|
|
}
|
|
|
|
export function* pollBityOrderStatusSaga(): SagaIterator {
|
|
while (yield take('SWAP_START_POLL_BITY_ORDER_STATUS')) {
|
|
// starts the task in the background
|
|
const pollBityOrderStatusTask = yield fork(pollBityOrderStatus);
|
|
// wait for the user to get to point where refresh is no longer needed
|
|
yield take('SWAP_STOP_POLL_BITY_ORDER_STATUS');
|
|
// cancel the background task
|
|
// this will cause the forked loadBityRates task to jump into its finally block
|
|
yield cancel(pollBityOrderStatusTask);
|
|
}
|
|
}
|
|
|
|
function* postBityOrderCreate(
|
|
action: BityOrderCreateRequestedSwapAction
|
|
): SagaIterator {
|
|
const payload = action.payload;
|
|
try {
|
|
yield put(stopLoadBityRatesSwap());
|
|
const order = yield call(
|
|
postOrder,
|
|
payload.amount,
|
|
payload.destinationAddress,
|
|
payload.mode,
|
|
payload.pair
|
|
);
|
|
if (order.error) {
|
|
// TODO - handle better / like existing site?
|
|
yield put(
|
|
showNotification('danger', `Bity Error: ${order.msg}`, TEN_SECONDS)
|
|
);
|
|
yield put(bityOrderCreateFailedSwap());
|
|
} else {
|
|
yield put(bityOrderCreateSucceededSwap(order.data));
|
|
yield put(changeStepSwap(3));
|
|
// start countdown
|
|
yield put(startOrderTimerSwap());
|
|
// start bity order status polling
|
|
yield put(startPollBityOrderStatus());
|
|
}
|
|
} catch (e) {
|
|
const message =
|
|
'Connection Error. Please check the developer console for more details and/or contact support';
|
|
yield put(showNotification('danger', message, TEN_SECONDS));
|
|
yield put(bityOrderCreateFailedSwap());
|
|
}
|
|
}
|
|
|
|
export function* postBityOrderSaga(): SagaIterator {
|
|
yield takeEvery('SWAP_ORDER_CREATE_REQUESTED', postBityOrderCreate);
|
|
}
|
|
|
|
export function* bityTimeRemaining(): SagaIterator {
|
|
while (yield take('SWAP_ORDER_START_TIMER')) {
|
|
let hasShownNotification = false;
|
|
while (true) {
|
|
yield call(delay, ONE_SECOND);
|
|
const swap = yield select(getSwap);
|
|
// if (swap.bityOrder.status === 'OPEN') {
|
|
const createdTimeStampMoment = moment(
|
|
swap.orderTimestampCreatedISOString
|
|
);
|
|
const validUntil = moment(createdTimeStampMoment).add(swap.validFor, 's');
|
|
const now = moment();
|
|
if (validUntil.isAfter(now)) {
|
|
const duration = moment.duration(validUntil.diff(now));
|
|
const seconds = duration.asSeconds();
|
|
yield put(orderTimeSwap(parseInt(seconds.toString(), 10)));
|
|
// TODO (!Important) - check orderStatus here and stop polling / show notifications based on status
|
|
} else {
|
|
switch (swap.orderStatus) {
|
|
case 'OPEN':
|
|
yield put(orderTimeSwap(0));
|
|
yield put(stopPollBityOrderStatus());
|
|
yield put({ type: 'SWAP_STOP_LOAD_BITY_RATES' });
|
|
if (!hasShownNotification) {
|
|
hasShownNotification = true;
|
|
yield put(
|
|
showNotification('danger', BITY_TIMEOUT_MESSAGE, 'infinity')
|
|
);
|
|
}
|
|
break;
|
|
case 'CANC':
|
|
yield put(stopPollBityOrderStatus());
|
|
yield put({ type: 'SWAP_STOP_LOAD_BITY_RATES' });
|
|
if (!hasShownNotification) {
|
|
hasShownNotification = true;
|
|
yield put(
|
|
showNotification('danger', BITY_TIMEOUT_MESSAGE, 'infinity')
|
|
);
|
|
}
|
|
break;
|
|
case 'RCVE':
|
|
if (!hasShownNotification) {
|
|
hasShownNotification = true;
|
|
yield put(
|
|
showNotification('warning', BITY_TIMEOUT_MESSAGE, 'infinity')
|
|
);
|
|
}
|
|
break;
|
|
case 'FILL':
|
|
yield put(stopPollBityOrderStatus());
|
|
yield put({ type: 'SWAP_STOP_LOAD_BITY_RATES' });
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|