You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

135 lines
3.1 KiB

import React from 'react';
import Notification from 'rc-notification';
9 years ago
import assign from 'object-assign';
9 years ago
import Icon from '../icon';
let defaultTop = 24;
let notificationInstance;
let defaultDuration = 4.5;
9 years ago
function getNotificationInstance() {
9 years ago
if (notificationInstance) {
return notificationInstance;
}
notificationInstance = Notification.newInstance({
prefixCls: 'ant-notification',
style: {
top: defaultTop,
right: 0,
}
});
9 years ago
return notificationInstance;
}
function notice(args) {
let duration;
if (args.duration === undefined) {
duration = defaultDuration;
} else {
duration = args.duration;
}
if (args.icon) {
let prefixCls = ' ant-notification-notice-content-icon-';
let iconType = '';
switch (args.icon) {
case 'success':
iconType = 'check-circle-o';
break;
case 'info':
iconType = 'info-circle-o';
break;
case 'error':
iconType = 'exclamation-circle-o';
break;
case 'warn':
iconType = 'question-circle-o';
break;
default:
iconType = 'info-circle';
}
9 years ago
getNotificationInstance().notice({
content: <div>
<Icon className={`${prefixCls}icon-${args.icon}${prefixCls}icon`} type={iconType} />
9 years ago
<div className={`${prefixCls}message`}>{args.message}</div>
9 years ago
<div className={`${prefixCls}description`}>{args.description}</div>
</div>,
duration,
closable: true,
onClose: args.onClose,
key: args.key,
style: {}
});
} else {
let prefixCls = 'ant-notification-notice-content-';
if (!args.btn) {
9 years ago
getNotificationInstance().notice({
content: <div>
<div className={`${prefixCls}message`}>{args.message}</div>
9 years ago
<div className={`${prefixCls}description`}>{args.description}</div>
</div>,
duration,
closable: true,
onClose: args.onClose,
key: args.key,
style: {}
});
} else {
9 years ago
getNotificationInstance().notice({
content: <div>
<div className={`${prefixCls}message`}>{args.message}</div>
9 years ago
<div className={`${prefixCls}description`}>{args.description}</div>
<span className={`${prefixCls}btn`}>
9 years ago
{args.btn}
</span>
</div>,
duration,
closable: true,
onClose: args.onClose,
9 years ago
key: args.key,
style: {}
});
}
}
}
const api = {
open(args) {
notice(args);
},
close(key) {
9 years ago
if (notificationInstance) {
notificationInstance.removeNotice(key);
}
9 years ago
},
config(options) {
if ('top' in options) {
defaultTop = options.top;
}
if ('duration' in options) {
defaultDuration = options.duration;
}
},
destroy() {
if (notificationInstance) {
notificationInstance.destroy();
notificationInstance = null;
}
},
};
9 years ago
['success', 'info', 'warn', 'error'].forEach((type) => {
9 years ago
api[type] = (args) => {
let newArgs = assign({}, args, {
9 years ago
icon: type
});
return api.open(newArgs);
};
});
export default api;