You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
691 B

3 months ago
import randomString from 'random-string';
import * as stateActions from './stateActions';
// This returns a redux-thunk action (a function).
2 months ago
export const notify = ({ type = 'info', isMe = false, text, title, timeout }) =>
3 months ago
{
if (!timeout)
{
switch (type)
{
case 'info':
timeout = 3000;
break;
case 'error':
timeout = 5000;
break;
}
}
const notification =
{
id : randomString({ length: 6 }).toLowerCase(),
type,
title,
text,
2 months ago
timeout,
isMe,
3 months ago
};
return (dispatch) =>
{
dispatch(stateActions.addNotification(notification));
2 months ago
// setTimeout(() =>
// {
// dispatch(stateActions.removeNotification(notification.id));
// }, timeout);
3 months ago
};
};