1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import _defineProperty from 'babel-runtime/helpers/defineProperty';
import Icon from '../icon';
import classNames from 'classnames';
import BaseMixin from '../_util/BaseMixin';
import PropTypes from '../_util/vue-types';
import getTransitionProps from '../_util/getTransitionProps';
import { getComponentFromProp, isValidElement } from '../_util/props-util';
import { cloneElement } from '../_util/vnode';
function noop() {}
export var AlertProps = {
/**
* Type of Alert styles, options:`success`, `info`, `warning`, `error`
*/
type: PropTypes.oneOf(['success', 'info', 'warning', 'error']),
/** Whether Alert can be closed */
closable: PropTypes.bool,
/** Close text to show */
closeText: PropTypes.any,
/** Content of Alert */
message: PropTypes.any,
/** Additional content of Alert */
description: PropTypes.any,
/** Callback when close Alert */
// onClose?: React.MouseEventHandler<HTMLAnchorElement>;
/** Trigger when animation ending of Alert */
afterClose: PropTypes.func.def(noop),
/** Whether to show icon */
showIcon: PropTypes.bool,
iconType: PropTypes.string,
prefixCls: PropTypes.string,
banner: PropTypes.bool,
icon: PropTypes.any
};
var Alert = {
props: AlertProps,
mixins: [BaseMixin],
name: 'AAlert',
data: function data() {
return {
closing: true,
closed: false
};
},
methods: {
handleClose: function handleClose(e) {
e.preventDefault();
var dom = this.$el;
dom.style.height = dom.offsetHeight + 'px';
// Magic code
// 重复一次后才能正确设置 height
dom.style.height = dom.offsetHeight + 'px';
this.setState({
closing: false
});
this.$emit('close', e);
},
animationEnd: function animationEnd() {
this.setState({
closed: true,
closing: true
});
this.afterClose();
}
},
render: function render() {
var _classNames;
var h = arguments[0];
var _prefixCls = this.prefixCls,
prefixCls = _prefixCls === undefined ? 'ant-alert' : _prefixCls,
banner = this.banner,
closing = this.closing,
closed = this.closed;
var closable = this.closable,
type = this.type,
showIcon = this.showIcon,
iconType = this.iconType;
var closeText = getComponentFromProp(this, 'closeText');
var description = getComponentFromProp(this, 'description');
var message = getComponentFromProp(this, 'message');
var icon = getComponentFromProp(this, 'icon');
// banner模式默认有 Icon
showIcon = banner && showIcon === undefined ? true : showIcon;
// banner模式默认为警告
type = banner && type === undefined ? 'warning' : type || 'info';
var iconTheme = 'filled';
// should we give a warning?
// warning(!iconType, `The property 'iconType' is deprecated. Use the property 'icon' instead.`);
if (!iconType) {
switch (type) {
case 'success':
iconType = 'check-circle';
break;
case 'info':
iconType = 'info-circle';
break;
case 'error':
iconType = 'close-circle';
break;
case 'warning':
iconType = 'exclamation-circle';
break;
default:
iconType = 'default';
}
// use outline icon in alert with description
if (description) {
iconTheme = 'outlined';
}
}
// closeable when closeText is assigned
if (closeText) {
closable = true;
}
var alertCls = classNames(prefixCls, (_classNames = {}, _defineProperty(_classNames, prefixCls + '-' + type, true), _defineProperty(_classNames, prefixCls + '-close', !closing), _defineProperty(_classNames, prefixCls + '-with-description', !!description), _defineProperty(_classNames, prefixCls + '-no-icon', !showIcon), _defineProperty(_classNames, prefixCls + '-banner', !!banner), _defineProperty(_classNames, prefixCls + '-closable', closable), _classNames));
var closeIcon = closable ? h(
'a',
{
on: {
'click': this.handleClose
},
'class': prefixCls + '-close-icon' },
[closeText || h(Icon, {
attrs: { type: 'close' }
})]
) : null;
var iconNode = icon && (isValidElement(icon) ? cloneElement(icon, {
'class': prefixCls + '-icon'
}) : h(
'span',
{ 'class': prefixCls + '-icon' },
[icon]
)) || h(Icon, { 'class': prefixCls + '-icon', attrs: { type: iconType, theme: iconTheme }
});
var transitionProps = getTransitionProps(prefixCls + '-slide-up', {
appear: false,
afterLeave: this.animationEnd
});
return closed ? null : h(
'transition',
transitionProps,
[h(
'div',
{
directives: [{
name: 'show',
value: closing
}],
'class': alertCls, attrs: { 'data-show': closing }
},
[showIcon ? iconNode : null, h(
'span',
{ 'class': prefixCls + '-message' },
[message]
), h(
'span',
{ 'class': prefixCls + '-description' },
[description]
), closeIcon]
)]
);
}
};
/* istanbul ignore next */
Alert.install = function (Vue) {
Vue.component(Alert.name, Alert);
};
export default Alert;