ant-design/components/notification/index.tsx

212 lines
5.1 KiB
TypeScript
Raw Normal View History

2016-09-21 11:54:53 +08:00
import React from 'react';
2015-07-28 15:40:28 +08:00
import Notification from 'rc-notification';
2015-11-20 11:05:34 +08:00
import Icon from '../icon';
2016-06-22 13:18:43 +08:00
import assign from 'object-assign';
const notificationInstance = {};
let defaultDuration = 4.5;
let defaultTop = 24;
let defaultBottom = 24;
let defaultPlacement = 'topRight';
let defaultGetContainer;
export type notificationPlacement = 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight';
function getPlacementStyle(placement) {
let style;
switch (placement) {
case 'topLeft':
style = {
left: 0,
top: defaultTop,
bottom: 'auto',
};
break;
case 'bottomLeft':
style = {
left: 0,
top: 'auto',
bottom: defaultBottom,
};
break;
case 'bottomRight':
style = {
right: 0,
top: 'auto',
bottom: defaultBottom,
};
break;
default:
style = {
right: 0,
top: defaultTop,
bottom: 'auto',
};
}
return style;
}
2015-08-03 18:00:22 +08:00
export interface ArgsProps {
message: React.ReactNode;
description: React.ReactNode;
btn?: React.ReactNode;
key?: string;
onClose?: () => void;
duration?: number;
icon?: React.ReactNode;
placement?: notificationPlacement;
style?: string;
className?: string;
}
export interface ConfigProps {
top?: number;
bottom?: number;
duration?: number;
placement?: notificationPlacement;
getContainer?: () => HTMLElement;
}
function getNotificationInstance(prefixCls) {
if (notificationInstance[defaultPlacement]) {
return notificationInstance[defaultPlacement];
2015-08-18 00:57:02 +08:00
}
notificationInstance[defaultPlacement] = (Notification as any).newInstance({
prefixCls: prefixCls,
className: `${prefixCls}-${defaultPlacement}`,
style: getPlacementStyle(defaultPlacement),
getContainer: defaultGetContainer,
2015-08-15 15:08:55 +08:00
});
return notificationInstance[defaultPlacement];
2015-07-31 18:13:32 +08:00
}
2015-07-28 15:40:28 +08:00
2015-07-31 18:13:32 +08:00
function notice(args) {
const outerPrefixCls = args.prefixCls || 'ant-notification';
const prefixCls = `${outerPrefixCls}-notice`;
2016-04-10 13:08:56 +08:00
if (args.placement !== undefined) {
defaultPlacement = args.placement;
}
2015-08-06 15:32:18 +08:00
let duration;
if (args.duration === undefined) {
duration = defaultDuration;
2015-08-06 15:32:18 +08:00
} else {
duration = args.duration;
}
2015-08-06 20:55:30 +08:00
2016-04-10 13:08:56 +08:00
let iconType = '';
switch (args.type) {
2016-04-10 13:08:56 +08:00
case 'success':
iconType = 'check-circle-o';
break;
case 'info':
iconType = 'info-circle-o';
break;
case 'error':
iconType = 'cross-circle-o';
break;
case 'warning':
iconType = 'exclamation-circle-o';
break;
default:
iconType = 'info-circle';
2015-07-28 15:40:28 +08:00
}
2016-04-10 13:08:56 +08:00
let iconNode;
if (args.icon) {
iconNode = (
<span className={`${prefixCls}-icon`}>
{args.icon}
</span>
);
} else if (args.type) {
iconNode = <Icon className={`${prefixCls}-icon ${prefixCls}-icon-${args.type}`} type={iconType} />;
}
const autoMarginTag = (!args.description && iconNode)
? <span className={`${prefixCls}-message-single-line-auto-margin`} />
: null;
const { style, className } = args;
getNotificationInstance(outerPrefixCls).notice({
2016-04-10 13:08:56 +08:00
content: (
2016-12-14 17:58:06 +08:00
<div className={iconNode ? `${prefixCls}-with-icon` : ''}>
{iconNode}
<div className={`${prefixCls}-message`}>
{autoMarginTag}
{args.message}
</div>
2016-04-10 13:08:56 +08:00
<div className={`${prefixCls}-description`}>{args.description}</div>
{args.btn ? <span className={`${prefixCls}-btn`}>{args.btn}</span> : null}
</div>
),
duration,
closable: true,
onClose: args.onClose,
key: args.key,
style: assign({}, style),
className,
2016-04-10 13:08:56 +08:00
});
2015-07-31 18:13:32 +08:00
}
2015-07-28 15:40:28 +08:00
const api: {
success?(args: ArgsProps): void;
error?(args: ArgsProps): void;
info?(args: ArgsProps): void;
warn?(args: ArgsProps): void;
warning?(args: ArgsProps): void;
open(args: ArgsProps): void;
close(key: string): void;
config(options: ConfigProps): void;
destroy(): void;
} = {
open(args: ArgsProps) {
2015-07-31 18:13:32 +08:00
notice(args);
},
close(key) {
if (notificationInstance[defaultPlacement]) {
notificationInstance[defaultPlacement].removeNotice(key);
2015-08-04 15:16:10 +08:00
}
2015-08-03 18:00:22 +08:00
},
config(options: ConfigProps) {
const { duration, placement, bottom, top, getContainer } = options;
if (placement !== undefined) {
defaultPlacement = placement;
}
if (bottom !== undefined) {
defaultBottom = bottom;
}
if (top !== undefined) {
defaultTop = top;
}
if (getContainer !== undefined) {
defaultGetContainer = getContainer;
}
// delete notificationInstance
if (placement !== undefined || bottom !== undefined || top !== undefined) {
const notify = notificationInstance[defaultPlacement];
if (notify) {
notify.destroy();
}
delete notificationInstance[defaultPlacement];
}
if (duration !== undefined) {
defaultDuration = duration;
}
},
destroy() {
Object.keys(notificationInstance).forEach(key => {
notificationInstance[key].destroy();
delete notificationInstance[key];
});
},
2015-07-31 18:13:32 +08:00
};
2015-08-04 15:16:10 +08:00
2016-03-28 14:38:25 +08:00
['success', 'info', 'warning', 'error'].forEach((type) => {
api[type] = (args: ArgsProps) => api.open(assign({}, args, { type }));
2015-08-04 15:16:10 +08:00
});
(api as any).warn = (api as any).warning;
2016-03-28 18:03:00 +08:00
2015-08-04 15:16:10 +08:00
export default api;