|
|
|
import * as React from 'react';
|
|
|
|
import Notification from 'rc-notification';
|
|
|
|
import { NotificationInstance as RCNotificationInstance } from 'rc-notification/lib/Notification';
|
|
|
|
import {
|
|
|
|
CloseOutlined,
|
|
|
|
CheckCircleOutlined,
|
|
|
|
CloseCircleOutlined,
|
|
|
|
ExclamationCircleOutlined,
|
|
|
|
InfoCircleOutlined,
|
|
|
|
} from '@ant-design/icons';
|
|
|
|
import createUseNotification from './hooks/useNotification';
|
|
|
|
|
|
|
|
export type NotificationPlacement = 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight';
|
|
|
|
|
|
|
|
export type IconType = 'success' | 'info' | 'error' | 'warning';
|
|
|
|
|
|
|
|
const notificationInstance: {
|
|
|
|
[key: string]: Promise<RCNotificationInstance>;
|
|
|
|
} = {};
|
|
|
|
let defaultDuration = 4.5;
|
|
|
|
let defaultTop = 24;
|
|
|
|
let defaultBottom = 24;
|
|
|
|
let defaultPlacement: NotificationPlacement = 'topRight';
|
|
|
|
let defaultGetContainer: () => HTMLElement;
|
|
|
|
let defaultCloseIcon: React.ReactNode;
|
|
|
|
|
|
|
|
export interface ConfigProps {
|
|
|
|
top?: number;
|
|
|
|
bottom?: number;
|
|
|
|
duration?: number;
|
|
|
|
placement?: NotificationPlacement;
|
|
|
|
getContainer?: () => HTMLElement;
|
|
|
|
closeIcon?: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setNotificationConfig(options: ConfigProps) {
|
|
|
|
const { duration, placement, bottom, top, getContainer, closeIcon } = options;
|
|
|
|
if (duration !== undefined) {
|
|
|
|
defaultDuration = duration;
|
|
|
|
}
|
|
|
|
if (placement !== undefined) {
|
|
|
|
defaultPlacement = placement;
|
|
|
|
}
|
|
|
|
if (bottom !== undefined) {
|
|
|
|
defaultBottom = bottom;
|
|
|
|
}
|
|
|
|
if (top !== undefined) {
|
|
|
|
defaultTop = top;
|
|
|
|
}
|
|
|
|
if (getContainer !== undefined) {
|
|
|
|
defaultGetContainer = getContainer;
|
|
|
|
}
|
|
|
|
if (closeIcon !== undefined) {
|
|
|
|
defaultCloseIcon = closeIcon;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPlacementStyle(
|
|
|
|
placement: NotificationPlacement,
|
|
|
|
top: number = defaultTop,
|
|
|
|
bottom: number = defaultBottom,
|
|
|
|
) {
|
|
|
|
let style;
|
|
|
|
switch (placement) {
|
|
|
|
case 'topLeft':
|
|
|
|
style = {
|
|
|
|
left: 0,
|
|
|
|
top,
|
|
|
|
bottom: 'auto',
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case 'topRight':
|
|
|
|
style = {
|
|
|
|
right: 0,
|
|
|
|
top,
|
|
|
|
bottom: 'auto',
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case 'bottomLeft':
|
|
|
|
style = {
|
|
|
|
left: 0,
|
|