MyCrypto/common/sagas/notifications.js

22 lines
624 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';
import { closeNotification } from 'actions/notifications';
import type { ShowNotificationAction } from 'actions/notifications';
2017-06-21 23:31:59 +00:00
function* handleNotification(action: ShowNotificationAction) {
2017-06-22 21:16:21 +00:00
const { duration } = action.payload;
2017-06-21 23:31:59 +00:00
// show forever
if (duration === 0) {
2017-06-22 21:16:21 +00:00
return;
2017-06-21 23:31:59 +00:00
}
// FIXME
2017-06-22 21:16:21 +00:00
yield call(delay, duration || 5000);
yield put(closeNotification(action.payload));
2017-06-21 23:31:59 +00:00
}
export default function* notificationsSaga() {
yield takeEvery('SHOW_NOTIFICATION', handleNotification);
}