MyCrypto/common/sagas/notifications.js

24 lines
708 B
JavaScript
Raw Normal View History

2017-06-22 03:31:59 +04:00
// @flow
2017-06-23 01:16:21 +04:00
import { takeEvery, put, call } from 'redux-saga/effects';
import { delay } from 'redux-saga';
2017-07-04 03:59:27 +04:00
import type { Effect } from 'redux-saga/effects';
2017-06-23 01:16:21 +04:00
import { closeNotification } from 'actions/notifications';
import type { ShowNotificationAction } from 'actions/notifications';
2017-06-22 03:31:59 +04:00
2017-07-04 03:59:27 +04:00
function* handleNotification(action?: ShowNotificationAction) {
2017-07-03 22:21:19 -05:00
if (!action) return;
const { duration } = action.payload;
// show forever
if (duration === 0) {
return;
}
2017-06-22 03:31:59 +04:00
2017-07-03 22:21:19 -05:00
// FIXME
yield call(delay, duration || 5000);
yield put(closeNotification(action.payload));
2017-06-22 03:31:59 +04:00
}
2017-07-04 03:59:27 +04:00
export default function* notificationsSaga(): Generator<Effect, void, any> {
2017-07-03 22:21:19 -05:00
yield takeEvery('SHOW_NOTIFICATION', handleNotification);
2017-06-22 03:31:59 +04:00
}