-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathExpandableTable.jsx
248 lines (226 loc) · 7 KB
/
ExpandableTable.jsx
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
import PropTypes from '../../_util/vue-types';
import BaseMixin from '../../_util/BaseMixin';
import { connect } from '../../_util/store';
import shallowEqual from '../../_util/shallowequal';
import TableRow from './TableRow';
import { remove } from './utils';
import { initDefaultProps, getOptionProps, getSlot } from '../../_util/props-util';
export const ExpandableTableProps = () => ({
expandIconAsCell: PropTypes.looseBool,
expandRowByClick: PropTypes.looseBool,
expandedRowKeys: PropTypes.array,
expandedRowClassName: PropTypes.func,
defaultExpandAllRows: PropTypes.looseBool,
defaultExpandedRowKeys: PropTypes.array,
expandIconColumnIndex: PropTypes.number,
expandedRowRender: PropTypes.func,
expandIcon: PropTypes.func,
childrenColumnName: PropTypes.string,
indentSize: PropTypes.number,
// onExpand: PropTypes.func,
// onExpandedRowsChange: PropTypes.func,
columnManager: PropTypes.object.isRequired,
store: PropTypes.object.isRequired,
prefixCls: PropTypes.string.isRequired,
data: PropTypes.array,
getRowKey: PropTypes.func,
});
const ExpandableTable = {
name: 'ExpandableTable',
inheritAttrs: false,
mixins: [BaseMixin],
props: initDefaultProps(ExpandableTableProps(), {
expandIconAsCell: false,
expandedRowClassName: () => '',
expandIconColumnIndex: 0,
defaultExpandAllRows: false,
defaultExpandedRowKeys: [],
childrenColumnName: 'children',
indentSize: 15,
}),
data() {
const {
data,
childrenColumnName,
defaultExpandAllRows,
expandedRowKeys,
defaultExpandedRowKeys,
getRowKey,
} = this;
let finalExpandedRowKeys = [];
let rows = [...data];
if (defaultExpandAllRows) {
for (let i = 0; i < rows.length; i += 1) {
const row = rows[i];
finalExpandedRowKeys.push(getRowKey(row, i));
rows = rows.concat(row[childrenColumnName] || []);
}
} else {
finalExpandedRowKeys = expandedRowKeys || defaultExpandedRowKeys;
}
// this.columnManager = props.columnManager
// this.store = props.store
this.store.setState({
expandedRowsHeight: {},
expandedRowKeys: finalExpandedRowKeys,
});
return {};
},
mounted() {
this.handleUpdated();
},
updated() {
this.handleUpdated();
},
watch: {
expandedRowKeys(val) {
this.$nextTick(() => {
this.store.setState({
expandedRowKeys: val,
});
});
},
},
methods: {
handleUpdated() {
// We should record latest expanded rows to avoid multiple rows remove cause `onExpandedRowsChange` trigger many times
this.latestExpandedRows = null;
},
handleExpandChange(expanded, record, event, rowKey, destroy = false) {
if (event) {
event.preventDefault();
event.stopPropagation();
}
let { expandedRowKeys } = this.store.getState();
if (expanded) {
// row was expaned
expandedRowKeys = [...expandedRowKeys, rowKey];
} else {
// row was collapse
const expandedRowIndex = expandedRowKeys.indexOf(rowKey);
if (expandedRowIndex !== -1) {
expandedRowKeys = remove(expandedRowKeys, rowKey);
}
}
if (!this.expandedRowKeys) {
this.store.setState({ expandedRowKeys });
}
// De-dup of repeat call
if (!this.latestExpandedRows || !shallowEqual(this.latestExpandedRows, expandedRowKeys)) {
this.latestExpandedRows = expandedRowKeys;
this.__emit('expandedRowsChange', expandedRowKeys);
}
if (!destroy) {
this.__emit('expand', expanded, record);
}
},
renderExpandIndentCell(rows, fixed) {
const { prefixCls, expandIconAsCell } = this;
if (!expandIconAsCell || fixed === 'right' || !rows.length) {
return;
}
const iconColumn = {
key: 'rc-table-expand-icon-cell',
className: `${prefixCls}-expand-icon-th`,
title: '',
rowSpan: rows.length,
};
rows[0].unshift({ ...iconColumn, column: iconColumn });
},
renderExpandedRow(record, index, expandedRowRender, className, ancestorKeys, indent, fixed) {
const { prefixCls, expandIconAsCell, indentSize } = this;
const parentKey = ancestorKeys[ancestorKeys.length - 1];
const rowKey = `${parentKey}-extra-row`;
const components = {
body: {
row: 'tr',
cell: 'td',
},
};
let colCount;
if (fixed === 'left') {
colCount = this.columnManager.leftLeafColumns().length;
} else if (fixed === 'right') {
colCount = this.columnManager.rightLeafColumns().length;
} else {
colCount = this.columnManager.leafColumns().length;
}
const columns = [
{
key: 'extra-row',
customRender: () => {
const { expandedRowKeys } = this.store.getState();
const expanded = expandedRowKeys.includes(parentKey);
return {
props: { colSpan: colCount },
children:
fixed !== 'right'
? expandedRowRender({ record, index, indent, expanded })
: ' ',
};
},
},
];
if (expandIconAsCell && fixed !== 'right') {
columns.unshift({
key: 'expand-icon-placeholder',
customRender: () => null,
});
}
return (
<TableRow
key={rowKey}
columns={columns}
class={className}
rowKey={rowKey}
ancestorKeys={ancestorKeys}
prefixCls={`${prefixCls}-expanded-row`}
indentSize={indentSize}
indent={indent}
fixed={fixed}
components={components}
expandedRow
hasExpandIcon={() => {}}
/>
);
},
renderRows(renderRows, rows, record, index, indent, fixed, parentKey, ancestorKeys) {
const { expandedRowClassName, expandedRowRender, childrenColumnName } = this;
const childrenData = record[childrenColumnName];
const nextAncestorKeys = [...ancestorKeys, parentKey];
const nextIndent = indent + 1;
if (expandedRowRender) {
rows.push(
this.renderExpandedRow(
record,
index,
expandedRowRender,
expandedRowClassName(record, index, indent),
nextAncestorKeys,
nextIndent,
fixed,
),
);
}
if (childrenData) {
rows.push(...renderRows(childrenData, nextIndent, nextAncestorKeys));
}
},
},
render() {
const { data, childrenColumnName } = this;
const props = getOptionProps(this);
const needIndentSpaced = data.some(record => record[childrenColumnName]);
return getSlot(this, 'default', {
props: {
...props,
...this.$attrs,
},
needIndentSpaced,
renderRows: this.renderRows,
handleExpandChange: this.handleExpandChange,
renderExpandIndentCell: this.renderExpandIndentCell,
});
},
};
export default connect()(ExpandableTable);