mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-22 11:04:23 +03:00
26 lines
568 B
JavaScript
26 lines
568 B
JavaScript
import Toastify from 'toastify-js';
|
|
|
|
function showToast(props) {
|
|
if (typeof props === 'string') {
|
|
props = { text: props };
|
|
}
|
|
const { onClick, delay, ...rest } = props;
|
|
const toast = Toastify({
|
|
className: `${onClick || props.destination ? 'shiny-pill' : ''}`,
|
|
gravity: 'bottom',
|
|
position: 'center',
|
|
...rest,
|
|
onClick: () => {
|
|
onClick?.(toast); // Pass in the object itself!
|
|
},
|
|
});
|
|
if (delay) {
|
|
setTimeout(() => {
|
|
toast.showToast();
|
|
}, delay);
|
|
} else {
|
|
toast.showToast();
|
|
}
|
|
}
|
|
|
|
export default showToast;
|