Files
talk/client/coral-framework/actions/notification.js
T
2017-07-07 17:27:05 +07:00

13 lines
402 B
JavaScript

import pym from '../services/pym';
import * as actions from '../constants/notification';
export const addNotification = (notifType, text) => {
pym.sendMessage('coral-alert', `${notifType}|${text}`);
return {type: actions.ADD_NOTIFICATION, notifType, text};
};
export const clearNotification = () => {
pym.sendMessage('coral-clear-notification');
return {type: actions.CLEAR_NOTIFICATION};
};