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
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _defineProperty2 = require('babel-runtime/helpers/defineProperty');
var _defineProperty3 = _interopRequireDefault(_defineProperty2);
var _extends2 = require('babel-runtime/helpers/extends');
var _extends3 = _interopRequireDefault(_extends2);
var _toConsumableArray2 = require('babel-runtime/helpers/toConsumableArray');
var _toConsumableArray3 = _interopRequireDefault(_toConsumableArray2);
var _BaseMixin = require('../../_util/BaseMixin');
var _BaseMixin2 = _interopRequireDefault(_BaseMixin);
var _propsUtil = require('../../_util/props-util');
var _vnode = require('../../_util/vnode');
var _openAnimationFactory = require('./openAnimationFactory');
var _openAnimationFactory2 = _interopRequireDefault(_openAnimationFactory);
var _commonProps = require('./commonProps');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
function _toArray(activeKey) {
var currentActiveKey = activeKey;
if (!Array.isArray(currentActiveKey)) {
currentActiveKey = currentActiveKey ? [currentActiveKey] : [];
}
return currentActiveKey;
}
exports['default'] = {
name: 'Collapse',
mixins: [_BaseMixin2['default']],
model: {
prop: 'activeKey',
event: 'change'
},
props: (0, _propsUtil.initDefaultProps)(_commonProps.collapseProps, {
prefixCls: 'rc-collapse',
accordion: false,
destroyInactivePanel: false
}),
data: function data() {
var _$props = this.$props,
activeKey = _$props.activeKey,
defaultActiveKey = _$props.defaultActiveKey,
openAnimation = _$props.openAnimation,
prefixCls = _$props.prefixCls;
var currentActiveKey = defaultActiveKey;
if ((0, _propsUtil.hasProp)(this, 'activeKey')) {
currentActiveKey = activeKey;
}
var currentOpenAnimations = openAnimation || (0, _openAnimationFactory2['default'])(prefixCls);
return {
currentOpenAnimations: currentOpenAnimations,
stateActiveKey: _toArray(currentActiveKey)
};
},
watch: {
activeKey: function activeKey(val) {
this.setState({
stateActiveKey: _toArray(val)
});
},
openAnimation: function openAnimation(val) {
this.setState({
currentOpenAnimations: val
});
}
},
methods: {
onClickItem: function onClickItem(key) {
var activeKey = this.stateActiveKey;
if (this.accordion) {
activeKey = activeKey[0] === key ? [] : [key];
} else {
activeKey = [].concat((0, _toConsumableArray3['default'])(activeKey));
var index = activeKey.indexOf(key);
var isActive = index > -1;
if (isActive) {
// remove active state
activeKey.splice(index, 1);
} else {
activeKey.push(key);
}
}
this.setActiveKey(activeKey);
},
getItems: function getItems() {
var _this = this;
var activeKey = this.stateActiveKey;
var _$props2 = this.$props,
prefixCls = _$props2.prefixCls,
accordion = _$props2.accordion,
destroyInactivePanel = _$props2.destroyInactivePanel,
expandIcon = _$props2.expandIcon;
var newChildren = [];
this.$slots['default'].forEach(function (child, index) {
if ((0, _propsUtil.isEmptyElement)(child)) return;
var _getPropsData = (0, _propsUtil.getPropsData)(child),
header = _getPropsData.header,
headerClass = _getPropsData.headerClass,
disabled = _getPropsData.disabled;
var isActive = false;
var key = child.key || String(index);
if (accordion) {
isActive = activeKey[0] === key;
} else {
isActive = activeKey.indexOf(key) > -1;
}
var panelEvents = {};
if (!disabled && disabled !== '') {
panelEvents = {
itemClick: function itemClick() {
_this.onClickItem(key);
}
};
}
var props = {
props: {
header: header,
headerClass: headerClass,
isActive: isActive,
prefixCls: prefixCls,
destroyInactivePanel: destroyInactivePanel,
openAnimation: _this.currentOpenAnimations,
accordion: accordion,
expandIcon: expandIcon
},
on: (0, _extends3['default'])({}, panelEvents)
};
newChildren.push((0, _vnode.cloneElement)(child, props));
});
return newChildren;
},
setActiveKey: function setActiveKey(activeKey) {
this.setState({ stateActiveKey: activeKey });
this.$emit('change', this.accordion ? activeKey[0] : activeKey);
}
},
render: function render() {
var h = arguments[0];
var _$props3 = this.$props,
prefixCls = _$props3.prefixCls,
accordion = _$props3.accordion;
var collapseClassName = (0, _defineProperty3['default'])({}, prefixCls, true);
return h(
'div',
{ 'class': collapseClassName, attrs: { role: accordion ? 'tablist' : null }
},
[this.getItems()]
);
}
};