MyCrypto/common/actions/notifications.js

54 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-06-21 16:31:59 -07:00
// @flow
import type { Element } from 'react';
2017-06-21 16:31:59 -07:00
/*** Shared types ***/
2017-06-21 16:31:59 -07:00
export type NOTIFICATION_LEVEL = 'danger' | 'warning' | 'success' | 'info';
export type INFINITY = 'infinity';
2017-06-21 16:31:59 -07:00
export type Notification = {
2017-07-03 20:28:56 -07:00
level: NOTIFICATION_LEVEL,
msg: Element<*> | string,
duration?: number | INFINITY
2017-06-21 16:31:59 -07:00
};
/*** Show Notification ***/
2017-06-21 16:31:59 -07:00
export type ShowNotificationAction = {
2017-07-03 20:28:56 -07:00
type: 'SHOW_NOTIFICATION',
payload: Notification
2017-06-21 16:31:59 -07:00
};
export function showNotification(
2017-07-03 20:28:56 -07:00
level: NOTIFICATION_LEVEL = 'info',
msg: Element<*> | string,
2017-09-04 09:30:31 -07:00
duration?: number | INFINITY
2017-06-21 16:31:59 -07:00
): ShowNotificationAction {
2017-07-03 20:28:56 -07:00
return {
type: 'SHOW_NOTIFICATION',
payload: {
level,
msg,
duration
}
};
2017-06-21 16:31:59 -07:00
}
/*** Close notification ***/
export type CloseNotificationAction = {
type: 'CLOSE_NOTIFICATION',
payload: Notification
};
2017-07-03 20:28:56 -07:00
export function closeNotification(
notification: Notification
): CloseNotificationAction {
return {
type: 'CLOSE_NOTIFICATION',
payload: notification
};
2017-06-21 16:31:59 -07:00
}
/*** Union Type ***/
export type NotificationsAction =
| ShowNotificationAction
| CloseNotificationAction;