2015-09-01 16:18:46 +08:00
|
|
|
import React from 'react';
|
2015-07-28 15:40:28 +08:00
|
|
|
import Notification from 'rc-notification';
|
2015-08-04 15:16:10 +08:00
|
|
|
import assign from 'object-assign';
|
2015-11-20 11:05:34 +08:00
|
|
|
import Icon from '../icon';
|
2015-07-28 15:40:28 +08:00
|
|
|
|
2015-08-03 18:00:22 +08:00
|
|
|
let top = 24;
|
2015-08-06 15:19:45 +08:00
|
|
|
let notificationInstance;
|
2015-08-03 18:00:22 +08:00
|
|
|
|
|
|
|
function getNotificationInstance() {
|
2015-08-18 00:57:02 +08:00
|
|
|
if (notificationInstance) {
|
|
|
|
return notificationInstance;
|
|
|
|
}
|
|
|
|
notificationInstance = Notification.newInstance({
|
2015-08-15 15:08:55 +08:00
|
|
|
prefixCls: 'ant-notification',
|
|
|
|
style: {
|
2016-01-07 17:46:46 +08:00
|
|
|
top,
|
2015-08-15 15:08:55 +08:00
|
|
|
right: 0
|
|
|
|
}
|
|
|
|
});
|
2015-08-03 18:00:22 +08:00
|
|
|
return notificationInstance;
|
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) {
|
2015-08-06 15:32:18 +08:00
|
|
|
let duration;
|
|
|
|
if (args.duration === undefined) {
|
2015-08-29 13:02:37 +08:00
|
|
|
duration = 4.5;
|
2015-08-06 15:32:18 +08:00
|
|
|
} else {
|
|
|
|
duration = args.duration;
|
|
|
|
}
|
|
|
|
|
2015-07-28 15:40:28 +08:00
|
|
|
if (args.icon) {
|
2015-08-03 15:17:12 +08:00
|
|
|
let prefixCls = ' ant-notification-notice-content-icon-';
|
2015-10-02 15:48:56 +08:00
|
|
|
let iconType = '';
|
2015-08-03 15:17:12 +08:00
|
|
|
switch (args.icon) {
|
2015-09-01 16:18:46 +08:00
|
|
|
case 'success':
|
2015-10-02 15:48:56 +08:00
|
|
|
iconType = 'check-circle-o';
|
2015-09-01 16:18:46 +08:00
|
|
|
break;
|
|
|
|
case 'info':
|
2015-10-02 15:48:56 +08:00
|
|
|
iconType = 'info-circle-o';
|
2015-09-01 16:18:46 +08:00
|
|
|
break;
|
|
|
|
case 'error':
|
2015-10-02 15:48:56 +08:00
|
|
|
iconType = 'exclamation-circle-o';
|
2015-09-01 16:18:46 +08:00
|
|
|
break;
|
|
|
|
case 'warn':
|
2015-10-02 15:48:56 +08:00
|
|
|
iconType = 'question-circle-o';
|
2015-09-01 16:18:46 +08:00
|
|
|
break;
|
|
|
|
default:
|
2015-10-02 15:48:56 +08:00
|
|
|
iconType = 'info-circle';
|
2015-08-03 15:17:12 +08:00
|
|
|
}
|
|
|
|
|
2015-08-03 18:00:22 +08:00
|
|
|
getNotificationInstance().notice({
|
2015-07-28 15:40:28 +08:00
|
|
|
content: <div>
|
2015-10-02 15:48:56 +08:00
|
|
|
<Icon className={prefixCls + 'icon-' + args.icon + prefixCls + 'icon'} type={iconType} />
|
2015-08-06 20:55:30 +08:00
|
|
|
|
2015-11-04 18:07:10 +08:00
|
|
|
<div className={prefixCls + 'message'}>{args.message}</div>
|
2015-08-06 20:55:30 +08:00
|
|
|
|
2015-11-04 18:07:10 +08:00
|
|
|
<div className={prefixCls + 'description'}>{args.description}</div>
|
2015-07-28 15:40:28 +08:00
|
|
|
</div>,
|
2016-01-07 17:46:46 +08:00
|
|
|
duration,
|
2015-07-28 15:40:28 +08:00
|
|
|
closable: true,
|
2015-08-03 19:23:25 +08:00
|
|
|
onClose: args.onClose,
|
2015-12-07 18:53:28 +08:00
|
|
|
key: args.key,
|
2015-07-28 15:40:28 +08:00
|
|
|
style: {}
|
|
|
|
});
|
|
|
|
} else {
|
2015-08-03 15:17:12 +08:00
|
|
|
let prefixCls = 'ant-notification-notice-content-';
|
2015-07-28 15:40:28 +08:00
|
|
|
if (!args.btn) {
|
2015-08-03 18:00:22 +08:00
|
|
|
getNotificationInstance().notice({
|
2015-07-28 15:40:28 +08:00
|
|
|
content: <div>
|
2015-11-04 18:07:10 +08:00
|
|
|
<div className={prefixCls + 'message'}>{args.message}</div>
|
2015-08-06 20:55:30 +08:00
|
|
|
|
2015-11-04 18:07:10 +08:00
|
|
|
<div className={prefixCls + 'description'}>{args.description}</div>
|
2015-08-03 15:17:12 +08:00
|
|
|
</div>,
|
2016-01-07 17:46:46 +08:00
|
|
|
duration,
|
2015-07-28 15:40:28 +08:00
|
|
|
closable: true,
|
2015-08-03 19:23:25 +08:00
|
|
|
onClose: args.onClose,
|
2015-12-07 18:53:28 +08:00
|
|
|
key: args.key,
|
2015-07-28 15:40:28 +08:00
|
|
|
style: {}
|
|
|
|
});
|
|
|
|
} else {
|
2015-08-03 18:00:22 +08:00
|
|
|
getNotificationInstance().notice({
|
2015-07-28 15:40:28 +08:00
|
|
|
content: <div>
|
2015-11-04 18:07:10 +08:00
|
|
|
<div className={prefixCls + 'message'}>{args.message}</div>
|
2015-08-06 20:55:30 +08:00
|
|
|
|
2015-11-04 18:07:10 +08:00
|
|
|
<div className={prefixCls + 'description'}>{args.description}</div>
|
2015-08-18 00:57:02 +08:00
|
|
|
<span className={prefixCls + 'btn'}>
|
2015-07-29 20:08:16 +08:00
|
|
|
{args.btn}
|
|
|
|
</span>
|
2015-07-28 15:40:28 +08:00
|
|
|
</div>,
|
2016-01-07 17:46:46 +08:00
|
|
|
duration,
|
2015-07-28 15:40:28 +08:00
|
|
|
closable: true,
|
2015-07-30 21:04:52 +08:00
|
|
|
onClose: args.onClose,
|
2015-08-18 00:57:02 +08:00
|
|
|
key: args.key,
|
2015-07-28 15:40:28 +08:00
|
|
|
style: {}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2015-07-31 18:13:32 +08:00
|
|
|
}
|
2015-07-28 15:40:28 +08:00
|
|
|
|
2016-01-21 14:13:28 +08:00
|
|
|
const api = {
|
2016-01-07 14:21:29 +08:00
|
|
|
open(args) {
|
2015-07-31 18:13:32 +08:00
|
|
|
notice(args);
|
|
|
|
},
|
2016-01-07 14:21:29 +08:00
|
|
|
close(key) {
|
2015-08-04 15:16:10 +08:00
|
|
|
if (notificationInstance) {
|
|
|
|
notificationInstance.removeNotice(key);
|
|
|
|
}
|
2015-08-03 18:00:22 +08:00
|
|
|
},
|
|
|
|
config(options) {
|
|
|
|
top = isNaN(options.top) ? 24 : options.top;
|
2016-01-21 14:13:28 +08:00
|
|
|
},
|
|
|
|
destroy() {
|
|
|
|
if (notificationInstance) {
|
|
|
|
notificationInstance.destroy();
|
|
|
|
notificationInstance = null;
|
|
|
|
}
|
|
|
|
},
|
2015-07-31 18:13:32 +08:00
|
|
|
};
|
2015-08-04 15:16:10 +08:00
|
|
|
|
2015-08-06 15:19:45 +08:00
|
|
|
['success', 'info', 'warn', 'error'].forEach((type) => {
|
2015-08-04 15:16:10 +08:00
|
|
|
api[type] = (args) => {
|
2015-09-01 16:18:46 +08:00
|
|
|
let newArgs = assign({}, args, {
|
2015-08-04 15:16:10 +08:00
|
|
|
icon: type
|
|
|
|
});
|
|
|
|
return api.open(newArgs);
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
export default api;
|