MyCrypto/common/sagas/notifications.js

28 lines
781 B
JavaScript
Raw Normal View History

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