import Notification from '../vc-notification'
import Icon from '../icon'
// export type NotificationPlacement = 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight';
// export type IconType = 'success' | 'info' | 'error' | 'warning';
const notificationInstance = {}
let defaultDuration = 4.5
let defaultTop = '24px'
let defaultBottom = '24px'
let defaultPlacement = 'topRight'
let defaultGetContainer = () => document.body
// export interface ConfigProps {
// top?: number;
// bottom?: number;
// duration?: number;
// placement?: NotificationPlacement;
// getContainer?: () => HTMLElement;
// }
function setNotificationConfig (options) {
const { duration, placement, bottom, top, getContainer } = options
if (duration !== undefined) {
defaultDuration = duration
}
if (placement !== undefined) {
defaultPlacement = placement
}
if (bottom !== undefined) {
defaultBottom = typeof bottom === 'number' ? `${bottom}px` : bottom
}
if (top !== undefined) {
defaultTop = typeof top === 'number' ? `${top}px` : top
}
if (getContainer !== undefined) {
defaultGetContainer = getContainer
}
}
function getPlacementStyle (placement) {
let style
switch (placement) {
case 'topLeft':
style = {
left: 0,
top: defaultTop,
bottom: 'auto',
}
break
case 'topRight':
style = {
right: 0,
top: defaultTop,
bottom: 'auto',
}
break
case 'bottomLeft':
style = {
left: 0,
top: 'auto',
bottom: defaultBottom,
}
break
default:
style = {
right: 0,
top: 'auto',
bottom: defaultBottom,
}
break
}
return style
}
function getNotificationInstance (prefixCls, placement, callback) {
const cacheKey = `${prefixCls}-${placement}`
if (notificationInstance[cacheKey]) {
callback(notificationInstance[cacheKey])
return
}
Notification.newInstance({
prefixCls,
class: `${prefixCls}-${placement}`,
style: getPlacementStyle(placement),
getContainer: defaultGetContainer,
}, (notification) => {
notificationInstance[cacheKey] = notification
callback(notification)
})
}
const typeToIcon = {
success: 'check-circle-o',
info: 'info-circle-o',
error: 'cross-circle-o',
warning: 'exclamation-circle-o',
}
// export interface ArgsProps {
// message: React.ReactNode;
// description: React.ReactNode;
// btn?: React.ReactNode;
// key?: string;
// onClose?: () => void;
// duration?: number | null;
// icon?: React.ReactNode;
// placement?: NotificationPlacement;
// style?: React.CSSProperties;
// prefixCls?: string;
// className?: string;
// readonly type?: IconType;
// }
function notice (args) {
const { icon, type, description, placement, message, btn } = args
const outerPrefixCls = args.prefixCls || 'ant-notification'
const prefixCls = `${outerPrefixCls}-notice`
const duration = args.duration === undefined ? defaultDuration : args.duration
let iconNode = null
if (icon) {
iconNode = (h) => (