2017-10-21 03:09:01 +08:00
|
|
|
/* eslint react/jsx-filename-extension: 0 */
|
2017-10-13 02:53:33 +08:00
|
|
|
import React from 'react';
|
2017-10-19 18:45:07 +08:00
|
|
|
import _ from 'lodash';
|
2017-10-13 02:53:33 +08:00
|
|
|
import { toast } from 'react-toastify';
|
|
|
|
|
2022-02-16 01:57:50 +08:00
|
|
|
import Toast from '/imports/ui/components/common/toast/component';
|
2017-10-13 02:53:33 +08:00
|
|
|
|
2017-10-19 18:45:07 +08:00
|
|
|
let lastToast = {
|
|
|
|
id: null,
|
|
|
|
message: null,
|
|
|
|
type: null,
|
|
|
|
icon: null,
|
|
|
|
};
|
|
|
|
|
2018-06-13 01:21:31 +08:00
|
|
|
export function notify(message, type = 'default', icon, options, content, small) {
|
2017-10-13 02:53:33 +08:00
|
|
|
const settings = {
|
|
|
|
type,
|
|
|
|
...options,
|
|
|
|
};
|
|
|
|
|
2017-10-19 18:45:07 +08:00
|
|
|
const { id: lastToastId, ...lastToastProps } = lastToast;
|
2018-06-13 01:21:31 +08:00
|
|
|
const toastProps = {
|
|
|
|
message,
|
|
|
|
type,
|
|
|
|
icon,
|
|
|
|
content,
|
|
|
|
small,
|
|
|
|
};
|
2017-10-19 18:45:07 +08:00
|
|
|
|
2017-10-19 19:44:09 +08:00
|
|
|
if (!toast.isActive(lastToast.id) || !_.isEqual(lastToastProps, toastProps)) {
|
2021-05-28 02:12:49 +08:00
|
|
|
if (toast.isActive(lastToast.id)
|
|
|
|
&& _.isEqual(lastToastProps.key, toastProps.key) && options?.autoClose > 0) {
|
|
|
|
toast.update(
|
|
|
|
lastToast.id,
|
|
|
|
{
|
2021-08-30 07:43:20 +08:00
|
|
|
render: <div role="alert"><Toast {...toastProps} /></div>,
|
2021-05-28 02:12:49 +08:00
|
|
|
autoClose: options.autoClose,
|
|
|
|
...toastProps,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} else {
|
2021-08-30 07:43:20 +08:00
|
|
|
const id = toast(<div role="alert"><Toast {...toastProps} /></div>, settings);
|
2017-10-19 18:45:07 +08:00
|
|
|
|
2021-05-28 01:46:27 +08:00
|
|
|
lastToast = { id, ...toastProps };
|
2019-06-13 02:03:23 +08:00
|
|
|
|
2021-05-28 01:46:27 +08:00
|
|
|
return id;
|
|
|
|
}
|
2017-10-13 02:53:33 +08:00
|
|
|
}
|
2019-06-13 02:03:23 +08:00
|
|
|
return null;
|
2017-10-21 03:27:00 +08:00
|
|
|
}
|
2017-10-13 02:53:33 +08:00
|
|
|
|
2017-10-21 03:27:00 +08:00
|
|
|
export default { notify };
|