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.

124 lines
2.8 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';
9 years ago
let top = 24;
let notificationInstance;
9 years ago
function getNotificationInstance() {
9 years ago
if (notificationInstance) {
return notificationInstance;
}
notificationInstance = Notification.newInstance({
prefixCls: 'ant-notification',
style: {
top: top,
right: 0
}
});
9 years ago
return notificationInstance;
}
function notice(args) {
let duration;
if (args.duration === undefined) {
duration = 4.5;
} 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
9 years ago
<div className={prefixCls + 'message'}>{args.message}</div>
9 years ago
9 years ago
<div className={prefixCls + 'description'}>{args.description}</div>
</div>,
duration: 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>
9 years ago
<div className={prefixCls + 'message'}>{args.message}</div>
9 years ago
9 years ago
<div className={prefixCls + 'description'}>{args.description}</div>
</div>,
duration: duration,
closable: true,
onClose: args.onClose,
key: args.key,
style: {}
});
} else {
9 years ago
getNotificationInstance().notice({
content: <div>
9 years ago
<div className={prefixCls + 'message'}>{args.message}</div>
9 years ago
9 years ago
<div className={prefixCls + 'description'}>{args.description}</div>
9 years ago
<span className={prefixCls + 'btn'}>
9 years ago
{args.btn}
</span>
</div>,
duration: duration,
closable: true,
onClose: args.onClose,
9 years ago
key: args.key,
style: {}
});
}
}
}
let api = {
open(args){
notice(args);
},
close(key){
9 years ago
if (notificationInstance) {
notificationInstance.removeNotice(key);
}
9 years ago
},
config(options) {
top = isNaN(options.top) ? 24 : options.top;
}
};
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;