2cb8a6d9
梁灏
commit Table comp...
|
1
|
<template>
|
45e7ed7e
梁灏
update Table
|
2
|
<div :class="wrapClasses" :style="styles">
|
39311a50
梁灏
update Table
|
3
|
<div :class="classes">
|
486d4fda
梁灏
update Table
|
4
5
|
<div :class="[prefixCls + '-title']" v-if="showSlotHeader" ref="title"><slot name="header"></slot></div>
<div :class="[prefixCls + '-header']" v-if="showHeader" ref="header" @mousewheel="handleMouseWheel">
|
b8a43000
梁灏
update Table
|
6
|
<table-head
|
39311a50
梁灏
update Table
|
7
|
:prefix-cls="prefixCls"
|
eec3859c
huanghong
fixed table scollbar
|
8
|
:styleObject="tableHeaderStyle"
|
39311a50
梁灏
update Table
|
9
|
:columns="cloneColumns"
|
1acabf79
梁灏
Table support mul...
|
10
|
:column-rows="columnRows"
|
39311a50
梁灏
update Table
|
11
|
:obj-data="objData"
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
12
|
:columns-width="columnsWidth"
|
39311a50
梁灏
update Table
|
13
|
:data="rebuildData"></table-head>
|
b8a43000
梁灏
update Table
|
14
|
</div>
|
486d4fda
梁灏
update Table
|
15
|
<div :class="[prefixCls + '-body']" :style="bodyStyle" ref="body" @scroll="handleBodyScroll"
|
e5337c81
梁灏
fixed some compon...
|
16
|
v-show="!((!!localeNoDataText && (!data || data.length === 0)) || (!!localeNoFilteredDataText && (!rebuildData || rebuildData.length === 0)))">
|
b8a43000
梁灏
update Table
|
17
|
<table-body
|
486d4fda
梁灏
update Table
|
18
|
ref="tbody"
|
31b4618b
Aresn
change api name
|
19
|
:draggable="draggable"
|
39311a50
梁灏
update Table
|
20
|
:prefix-cls="prefixCls"
|
486d4fda
梁灏
update Table
|
21
|
:styleObject="tableStyle"
|
39311a50
梁灏
update Table
|
22
23
|
:columns="cloneColumns"
:data="rebuildData"
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
24
|
:columns-width="columnsWidth"
|
39311a50
梁灏
update Table
|
25
|
:obj-data="objData"></table-body>
|
b8a43000
梁灏
update Table
|
26
|
</div>
|
2f7660b4
Rijn
fade table body w...
|
27
|
<div
|
8e171de8
huanghong
fixed #3124
|
28
|
:class="[prefixCls + '-tip']" :style="bodyStyle" @scroll="handleBodyScroll"
|
e5337c81
梁灏
fixed some compon...
|
29
|
v-show="((!!localeNoDataText && (!data || data.length === 0)) || (!!localeNoFilteredDataText && (!rebuildData || rebuildData.length === 0)))">
|
2f7660b4
Rijn
fade table body w...
|
30
31
32
|
<table cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
|
8e171de8
huanghong
fixed #3124
|
33
|
<td :style="{'height':bodyStyle.height,'width':`${this.headerWidth}px`}">
|
e5337c81
梁灏
fixed some compon...
|
34
35
|
<span v-html="localeNoDataText" v-if="!data || data.length === 0"></span>
<span v-html="localeNoFilteredDataText" v-else></span>
|
2f7660b4
Rijn
fade table body w...
|
36
37
38
39
40
|
</td>
</tr>
</tbody>
</table>
</div>
|
a81dc06c
梁灏
publish 0.9.9-rc-4
|
41
|
<div :class="[prefixCls + '-fixed']" :style="fixedTableStyle" v-if="isLeftFixed">
|
548eac43
梁灏
fixed #1387 and u...
|
42
|
<div :class="fixedHeaderClasses" v-if="showHeader">
|
45e7ed7e
梁灏
update Table
|
43
|
<table-head
|
5d0499ce
梁灏
update Table
|
44
|
fixed="left"
|
39311a50
梁灏
update Table
|
45
|
:prefix-cls="prefixCls"
|
486d4fda
梁灏
update Table
|
46
|
:styleObject="fixedTableStyle"
|
39311a50
梁灏
update Table
|
47
|
:columns="leftFixedColumns"
|
1acabf79
梁灏
Table support mul...
|
48
|
:column-rows="columnRows"
|
c1e965c3
梁灏
fixed-head
|
49
|
:fixed-column-rows="leftFixedColumnRows"
|
39311a50
梁灏
update Table
|
50
|
:obj-data="objData"
|
68b308ee
梁灏
fixex #1353
|
51
|
:columns-width="columnsWidth"
|
39311a50
梁灏
update Table
|
52
|
:data="rebuildData"></table-head>
|
45e7ed7e
梁灏
update Table
|
53
|
</div>
|
b08f5e08
Aresn
Update table.vue
|
54
|
<div :class="[prefixCls + '-fixed-body']" :style="fixedBodyStyle" ref="fixedBody" @mousewheel="handleFixedMousewheel" @DOMMouseScroll="handleFixedMousewheel">
|
45e7ed7e
梁灏
update Table
|
55
|
<table-body
|
5d0499ce
梁灏
update Table
|
56
|
fixed="left"
|
31b4618b
Aresn
change api name
|
57
|
:draggable="draggable"
|
39311a50
梁灏
update Table
|
58
|
:prefix-cls="prefixCls"
|
486d4fda
梁灏
update Table
|
59
|
:styleObject="fixedTableStyle"
|
39311a50
梁灏
update Table
|
60
61
|
:columns="leftFixedColumns"
:data="rebuildData"
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
62
|
:columns-width="columnsWidth"
|
39311a50
梁灏
update Table
|
63
|
:obj-data="objData"></table-body>
|
45e7ed7e
梁灏
update Table
|
64
|
</div>
|
b8a43000
梁灏
update Table
|
65
|
</div>
|
a81dc06c
梁灏
publish 0.9.9-rc-4
|
66
|
<div :class="[prefixCls + '-fixed-right']" :style="fixedRightTableStyle" v-if="isRightFixed">
|
548eac43
梁灏
fixed #1387 and u...
|
67
|
<div :class="fixedHeaderClasses" v-if="showHeader">
|
45e7ed7e
梁灏
update Table
|
68
|
<table-head
|
5d0499ce
梁灏
update Table
|
69
|
fixed="right"
|
39311a50
梁灏
update Table
|
70
|
:prefix-cls="prefixCls"
|
486d4fda
梁灏
update Table
|
71
|
:styleObject="fixedRightTableStyle"
|
39311a50
梁灏
update Table
|
72
|
:columns="rightFixedColumns"
|
1acabf79
梁灏
Table support mul...
|
73
|
:column-rows="columnRows"
|
c1e965c3
梁灏
fixed-head
|
74
|
:fixed-column-rows="rightFixedColumnRows"
|
39311a50
梁灏
update Table
|
75
|
:obj-data="objData"
|
486d4fda
梁灏
update Table
|
76
|
:columns-width="columnsWidth"
|
39311a50
梁灏
update Table
|
77
|
:data="rebuildData"></table-head>
|
45e7ed7e
梁灏
update Table
|
78
|
</div>
|
12739c33
梁灏
update Table
|
79
|
<div :class="[prefixCls + '-fixed-body']" :style="fixedBodyStyle" ref="fixedRightBody" @mousewheel="handleFixedMousewheel" @DOMMouseScroll="handleFixedMousewheel">
|
45e7ed7e
梁灏
update Table
|
80
|
<table-body
|
5d0499ce
梁灏
update Table
|
81
|
fixed="right"
|
31b4618b
Aresn
change api name
|
82
|
:draggable="draggable"
|
39311a50
梁灏
update Table
|
83
|
:prefix-cls="prefixCls"
|
486d4fda
梁灏
update Table
|
84
|
:styleObject="fixedRightTableStyle"
|
39311a50
梁灏
update Table
|
85
86
|
:columns="rightFixedColumns"
:data="rebuildData"
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
87
|
:columns-width="columnsWidth"
|
39311a50
梁灏
update Table
|
88
|
:obj-data="objData"></table-body>
|
45e7ed7e
梁灏
update Table
|
89
|
</div>
|
b8a43000
梁灏
update Table
|
90
|
</div>
|
63014189
huanghong
fix table fixed-r...
|
91
|
<div :class="[prefixCls + '-fixed-right-header']" :style="fixedRightHeaderStyle" v-if="isRightFixed"></div>
|
486d4fda
梁灏
update Table
|
92
|
<div :class="[prefixCls + '-footer']" v-if="showSlotFooter" ref="footer"><slot name="footer"></slot></div>
|
abdec99d
梁灏
update Table
|
93
|
</div>
|
300bd662
梁灏
fixed #704
|
94
95
96
|
<Spin fix size="large" v-if="loading">
<slot name="loading"></slot>
</Spin>
|
2cb8a6d9
梁灏
commit Table comp...
|
97
98
99
|
</div>
</template>
<script>
|
7f34c510
梁灏
update Table
|
100
101
|
import tableHead from './table-head.vue';
import tableBody from './table-body.vue';
|
300bd662
梁灏
fixed #704
|
102
|
import Spin from '../spin/spin.vue';
|
3d6fa54b
梁灏
update Table
|
103
|
import { oneOf, getStyle, deepCopy, getScrollBarSize } from '../../utils/assist';
|
f00b5343
梁灏
update Table
|
104
|
import { on, off } from '../../utils/dom';
|
43509ad8
梁灏
Table support exp...
|
105
106
|
import Csv from '../../utils/csv';
import ExportCsv from './export-csv';
|
e5337c81
梁灏
fixed some compon...
|
107
|
import Locale from '../../mixins/locale';
|
c5beedf8
梁灏
fixed #690
|
108
|
import elementResizeDetectorMaker from 'element-resize-detector';
|
5d164b03
梁灏
fixed #3339
|
109
|
import { getAllColumns, convertToRows, convertColumnOrder, getRandomStr } from './util';
|
e5337c81
梁灏
fixed some compon...
|
110
|
|
2cb8a6d9
梁灏
commit Table comp...
|
111
112
|
const prefixCls = 'ivu-table';
|
68b308ee
梁灏
fixex #1353
|
113
114
115
|
let rowKey = 1;
let columnKey = 1;
|
2cb8a6d9
梁灏
commit Table comp...
|
116
|
export default {
|
486d4fda
梁灏
update Table
|
117
|
name: 'Table',
|
e5337c81
梁灏
fixed some compon...
|
118
|
mixins: [ Locale ],
|
300bd662
梁灏
fixed #704
|
119
|
components: { tableHead, tableBody, Spin },
|
8135a8c3
梁灏
init
|
120
121
122
123
124
|
provide () {
return {
tableRoot: this
};
},
|
2cb8a6d9
梁灏
commit Table comp...
|
125
126
127
128
|
props: {
data: {
type: Array,
default () {
|
b0893113
jingsam
add eslint
|
129
|
return [];
|
2cb8a6d9
梁灏
commit Table comp...
|
130
131
132
133
134
|
}
},
columns: {
type: Array,
default () {
|
b0893113
jingsam
add eslint
|
135
|
return [];
|
2cb8a6d9
梁灏
commit Table comp...
|
136
137
138
139
|
}
},
size: {
validator (value) {
|
f2a051a1
梁灏
publish 0.9.9-rc-6
|
140
|
return oneOf(value, ['small', 'large', 'default']);
|
645d482f
梁灏
Table support glo...
|
141
142
|
},
default () {
|
fe5ffd7f
梁灏
fixed #4196 #4165
|
143
|
return !this.$IVIEW || this.$IVIEW.size === '' ? 'default' : this.$IVIEW.size;
|
2cb8a6d9
梁灏
commit Table comp...
|
144
145
|
}
},
|
3ef4dfb9
梁灏
update Table
|
146
147
148
|
width: {
type: [Number, String]
},
|
e7e8c8ff
梁灏
update Table
|
149
150
151
|
height: {
type: [Number, String]
},
|
2cb8a6d9
梁灏
commit Table comp...
|
152
153
154
155
156
157
158
159
|
stripe: {
type: Boolean,
default: false
},
border: {
type: Boolean,
default: false
},
|
2cb8a6d9
梁灏
commit Table comp...
|
160
161
162
163
|
showHeader: {
type: Boolean,
default: true
},
|
0d136465
梁灏
update Table
|
164
|
highlightRow: {
|
2cb8a6d9
梁灏
commit Table comp...
|
165
166
|
type: Boolean,
default: false
|
e7e8c8ff
梁灏
update Table
|
167
168
169
170
171
172
|
},
rowClassName: {
type: Function,
default () {
return '';
}
|
d0e206c5
梁灏
Table add content...
|
173
|
},
|
d8892603
梁灏
Table prop: conte...
|
174
|
context: {
|
d0e206c5
梁灏
Table add content...
|
175
|
type: Object
|
cf7887ba
Rijn
Fixed #151
|
176
177
|
},
noDataText: {
|
e5337c81
梁灏
fixed some compon...
|
178
|
type: String
|
cf7887ba
Rijn
Fixed #151
|
179
180
|
},
noFilteredDataText: {
|
e5337c81
梁灏
fixed some compon...
|
181
|
type: String
|
2474ee59
Lawrence Lee
add hover-highlig...
|
182
|
},
|
174158b1
Lawrence Lee
change disable-ho...
|
183
|
disabledHover: {
|
2474ee59
Lawrence Lee
add hover-highlig...
|
184
|
type: Boolean
|
300bd662
梁灏
fixed #704
|
185
186
187
188
|
},
loading: {
type: Boolean,
default: false
|
7e8e6ef8
forfire
add dragdrop for tr
|
189
|
},
|
31b4618b
Aresn
change api name
|
190
|
draggable: {
|
7e8e6ef8
forfire
add dragdrop for tr
|
191
192
|
type: Boolean,
default: false
|
847c0d43
梁灏
fixed #4158
|
193
194
195
196
197
198
|
},
tooltipTheme: {
validator (value) {
return oneOf(value, ['dark', 'light']);
},
default: 'dark'
|
2cb8a6d9
梁灏
commit Table comp...
|
199
200
201
|
}
},
data () {
|
5d164b03
梁灏
fixed #3339
|
202
|
const colsWithId = this.makeColumnsId(this.columns);
|
2cb8a6d9
梁灏
commit Table comp...
|
203
|
return {
|
adaeca88
梁灏
update Table
|
204
|
ready: false,
|
744eb0af
梁灏
update Table comp...
|
205
|
tableWidth: 0,
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
206
|
columnsWidth: {},
|
2cb8a6d9
梁灏
commit Table comp...
|
207
|
prefixCls: prefixCls,
|
0d136465
梁灏
update Table
|
208
|
compiledUids: [],
|
35ad3764
梁灏
update Table
|
209
|
objData: this.makeObjData(), // checkbox or highlight-row
|
5d0499ce
梁灏
update Table
|
210
|
rebuildData: [], // for sort or filter
|
5d164b03
梁灏
fixed #3339
|
211
|
cloneColumns: this.makeColumns(colsWithId),
|
5d164b03
梁灏
fixed #3339
|
212
213
214
215
|
columnRows: this.makeColumnRows(false, colsWithId),
leftFixedColumnRows: this.makeColumnRows('left', colsWithId),
rightFixedColumnRows: this.makeColumnRows('right', colsWithId),
allColumns: getAllColumns(colsWithId), // for multiple table-head, get columns that have no children
|
e7e8c8ff
梁灏
update Table
|
216
217
|
showSlotHeader: true,
showSlotFooter: true,
|
3d6fa54b
梁灏
update Table
|
218
|
bodyHeight: 0,
|
486d4fda
梁灏
update Table
|
219
|
scrollBarWidth: getScrollBarSize(),
|
d8892603
梁灏
Table prop: conte...
|
220
|
currentContext: this.context,
|
14d1de05
huanghong
fix table changin...
|
221
|
cloneData: deepCopy(this.data), // when Cell has a button to delete row data, clickCurrentRow will throw an error, so clone a data
|
f25f1252
huanghong
Refactor
|
222
|
showVerticalScrollBar:false,
|
9fea8e7d
huanghong
fixed ivu-table-f...
|
223
|
showHorizontalScrollBar:false,
|
63014189
huanghong
fix table fixed-r...
|
224
225
|
headerWidth:0,
headerHeight:0,
|
b0893113
jingsam
add eslint
|
226
|
};
|
2cb8a6d9
梁灏
commit Table comp...
|
227
228
|
},
computed: {
|
e5337c81
梁灏
fixed some compon...
|
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
localeNoDataText () {
if (this.noDataText === undefined) {
return this.t('i.table.noDataText');
} else {
return this.noDataText;
}
},
localeNoFilteredDataText () {
if (this.noFilteredDataText === undefined) {
return this.t('i.table.noFilteredDataText');
} else {
return this.noFilteredDataText;
}
},
|
45e7ed7e
梁灏
update Table
|
243
244
245
246
|
wrapClasses () {
return [
`${prefixCls}-wrapper`,
{
|
0f4ccf44
梁灏
release 0.9.9
|
247
248
249
|
[`${prefixCls}-hide`]: !this.ready,
[`${prefixCls}-with-header`]: this.showSlotHeader,
[`${prefixCls}-with-footer`]: this.showSlotFooter
|
45e7ed7e
梁灏
update Table
|
250
|
}
|
b0893113
jingsam
add eslint
|
251
|
];
|
45e7ed7e
梁灏
update Table
|
252
|
},
|
2cb8a6d9
梁灏
commit Table comp...
|
253
254
255
256
|
classes () {
return [
`${prefixCls}`,
{
|
0d136465
梁灏
update Table
|
257
258
|
[`${prefixCls}-${this.size}`]: !!this.size,
[`${prefixCls}-border`]: this.border,
|
e7e8c8ff
梁灏
update Table
|
259
|
[`${prefixCls}-stripe`]: this.stripe,
|
e7e8c8ff
梁灏
update Table
|
260
|
[`${prefixCls}-with-fixed-top`]: !!this.height
|
2cb8a6d9
梁灏
commit Table comp...
|
261
|
}
|
b0893113
jingsam
add eslint
|
262
|
];
|
0d136465
梁灏
update Table
|
263
|
},
|
548eac43
梁灏
fixed #1387 and u...
|
264
265
266
267
268
269
270
271
|
fixedHeaderClasses () {
return [
`${prefixCls}-fixed-header`,
{
[`${prefixCls}-fixed-header-with-empty`]: !this.rebuildData.length
}
];
},
|
e7e8c8ff
梁灏
update Table
|
272
273
|
styles () {
let style = {};
|
3d6fa54b
梁灏
update Table
|
274
|
if (this.height) {
|
fda6dfa2
huanghong
column add prop m...
|
275
|
const height = parseInt(this.height);
|
3d6fa54b
梁灏
update Table
|
276
277
|
style.height = `${height}px`;
}
|
b0893113
jingsam
add eslint
|
278
|
if (this.width) style.width = `${this.width}px`;
|
e7e8c8ff
梁灏
update Table
|
279
280
|
return style;
},
|
0d136465
梁灏
update Table
|
281
282
|
tableStyle () {
let style = {};
|
3d6fa54b
梁灏
update Table
|
283
|
if (this.tableWidth !== 0) {
|
d16dce64
梁灏
fixed #193
|
284
285
286
287
|
let width = '';
if (this.bodyHeight === 0) {
width = this.tableWidth;
} else {
|
9d304dd6
huanghong
fixed safari scro...
|
288
|
width = this.tableWidth - (this.showVerticalScrollBar?this.scrollBarWidth:0);
|
d16dce64
梁灏
fixed #193
|
289
290
|
}
// const width = this.bodyHeight === 0 ? this.tableWidth : this.tableWidth - this.scrollBarWidth;
|
3d6fa54b
梁灏
update Table
|
291
292
|
style.width = `${width}px`;
}
|
0d136465
梁灏
update Table
|
293
|
return style;
|
e7e8c8ff
梁灏
update Table
|
294
|
},
|
eec3859c
huanghong
fixed table scollbar
|
295
296
297
298
299
300
301
302
303
|
tableHeaderStyle () {
let style = {};
if (this.tableWidth !== 0) {
let width = '';
width = this.tableWidth;
style.width = `${width}px`;
}
return style;
},
|
7f34c510
梁灏
update Table
|
304
305
|
fixedTableStyle () {
let style = {};
|
5d0499ce
梁灏
update Table
|
306
307
|
let width = 0;
this.leftFixedColumns.forEach((col) => {
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
308
|
if (col.fixed && col.fixed === 'left') width += col._width;
|
5d0499ce
梁灏
update Table
|
309
310
|
});
style.width = `${width}px`;
|
7f34c510
梁灏
update Table
|
311
312
313
314
|
return style;
},
fixedRightTableStyle () {
let style = {};
|
5d0499ce
梁灏
update Table
|
315
316
|
let width = 0;
this.rightFixedColumns.forEach((col) => {
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
317
|
if (col.fixed && col.fixed === 'right') width += col._width;
|
5d0499ce
梁灏
update Table
|
318
|
});
|
9fea8e7d
huanghong
fixed ivu-table-f...
|
319
|
//width += this.scrollBarWidth;
|
5d0499ce
梁灏
update Table
|
320
|
style.width = `${width}px`;
|
9fea8e7d
huanghong
fixed ivu-table-f...
|
321
|
style.right = `${this.showVerticalScrollBar?this.scrollBarWidth:0}px`;
|
7f34c510
梁灏
update Table
|
322
323
|
return style;
},
|
63014189
huanghong
fix table fixed-r...
|
324
325
326
327
328
329
330
331
332
333
334
|
fixedRightHeaderStyle () {
let style = {};
let width = 0;
let height = this.headerHeight+1;
if(this.showVerticalScrollBar){
width = this.scrollBarWidth;
}
style.width = `${width}px`;
style.height = `${height}px`;
return style;
},
|
e7e8c8ff
梁灏
update Table
|
335
336
|
bodyStyle () {
let style = {};
|
3d6fa54b
梁灏
update Table
|
337
|
if (this.bodyHeight !== 0) {
|
fda6dfa2
huanghong
column add prop m...
|
338
|
const height = this.bodyHeight;
|
3d6fa54b
梁灏
update Table
|
339
340
|
style.height = `${height}px`;
}
|
e7e8c8ff
梁灏
update Table
|
341
|
return style;
|
b8a43000
梁灏
update Table
|
342
343
344
|
},
fixedBodyStyle () {
let style = {};
|
3d6fa54b
梁灏
update Table
|
345
|
if (this.bodyHeight !== 0) {
|
fda6dfa2
huanghong
column add prop m...
|
346
347
|
let height = this.bodyHeight - (this.showHorizontalScrollBar?this.scrollBarWidth:0);
style.height = this.showHorizontalScrollBar ? `${height}px` : `${height - 1}px`;
|
3d6fa54b
梁灏
update Table
|
348
|
}
|
b8a43000
梁灏
update Table
|
349
|
return style;
|
35ad3764
梁灏
update Table
|
350
351
|
},
leftFixedColumns () {
|
1acabf79
梁灏
Table support mul...
|
352
|
return convertColumnOrder(this.cloneColumns, 'left');
|
35ad3764
梁灏
update Table
|
353
354
|
},
rightFixedColumns () {
|
1acabf79
梁灏
Table support mul...
|
355
|
return convertColumnOrder(this.cloneColumns, 'right');
|
a81dc06c
梁灏
publish 0.9.9-rc-4
|
356
357
358
359
360
361
|
},
isLeftFixed () {
return this.columns.some(col => col.fixed && col.fixed === 'left');
},
isRightFixed () {
return this.columns.some(col => col.fixed && col.fixed === 'right');
|
2cb8a6d9
梁灏
commit Table comp...
|
362
363
364
|
}
},
methods: {
|
e7e8c8ff
梁灏
update Table
|
365
366
367
|
rowClsName (index) {
return this.rowClassName(this.data[index], index);
},
|
a3547c1b
梁灏
update Table
|
368
|
handleResize () {
|
9d304dd6
huanghong
fixed safari scro...
|
369
|
//let tableWidth = parseInt(getStyle(this.$el, 'width')) - 1;
|
9d3aada3
huanghong
npm test
|
370
371
|
let tableWidth = this.$el.offsetWidth - 1;
let columnsWidth = {};
|
3f5e84a1
huanghong
update table colu...
|
372
|
let sumMinWidth = 0;
|
9d3aada3
huanghong
npm test
|
373
374
|
let hasWidthColumns = [];
let noWidthColumns = [];
|
3f5e84a1
huanghong
update table colu...
|
375
376
|
let maxWidthColumns = [];
let noMaxWidthColumns = [];
|
9d3aada3
huanghong
npm test
|
377
378
379
380
381
382
|
this.cloneColumns.forEach((col) => {
if (col.width) {
hasWidthColumns.push(col);
}
else{
noWidthColumns.push(col);
|
3f5e84a1
huanghong
update table colu...
|
383
384
385
386
387
388
389
390
391
|
if (col.minWidth) {
sumMinWidth += col.minWidth;
}
if (col.maxWidth) {
maxWidthColumns.push(col);
}
else {
noMaxWidthColumns.push(col);
}
|
9d3aada3
huanghong
npm test
|
392
393
394
395
396
397
|
}
col._width = null;
});
let unUsableWidth = hasWidthColumns.map(cell => cell.width).reduce((a, b) => a + b, 0);
|
8f230d68
huanghong
fixed table
|
398
|
let usableWidth = tableWidth - unUsableWidth - sumMinWidth - (this.showVerticalScrollBar?this.scrollBarWidth:0) - 1;
|
9d3aada3
huanghong
npm test
|
399
400
401
402
403
|
let usableLength = noWidthColumns.length;
let columnWidth = 0;
if(usableWidth > 0 && usableLength > 0){
columnWidth = parseInt(usableWidth / usableLength);
}
|
14d1de05
huanghong
fix table changin...
|
404
|
|
9d304dd6
huanghong
fixed safari scro...
|
405
|
|
9d3aada3
huanghong
npm test
|
406
407
|
for (let i = 0; i < this.cloneColumns.length; i++) {
const column = this.cloneColumns[i];
|
3f5e84a1
huanghong
update table colu...
|
408
|
let width = columnWidth + (column.minWidth?column.minWidth:0);
|
9d3aada3
huanghong
npm test
|
409
410
411
412
413
414
|
if(column.width){
width = column.width;
}
else{
if (column._width) {
width = column._width;
|
77201524
huanghong
column add prop m...
|
415
|
}
|
9d3aada3
huanghong
npm test
|
416
|
else {
|
0f983a5c
huanghong
update table colu...
|
417
418
419
420
421
422
|
if (column.minWidth > width){
width = column.minWidth;
}
else if (column.maxWidth < width){
width = column.maxWidth;
}
|
3f5e84a1
huanghong
update table colu...
|
423
|
|
9d3aada3
huanghong
npm test
|
424
|
if (usableWidth>0) {
|
3f5e84a1
huanghong
update table colu...
|
425
426
427
|
usableWidth -= width - (column.minWidth?column.minWidth:0);
usableLength--;
if (usableLength > 0) {
|
9d3aada3
huanghong
npm test
|
428
|
columnWidth = parseInt(usableWidth / usableLength);
|
9d304dd6
huanghong
fixed safari scro...
|
429
|
}
|
9d3aada3
huanghong
npm test
|
430
|
else {
|
9d304dd6
huanghong
fixed safari scro...
|
431
|
columnWidth = 0;
|
14d1de05
huanghong
fix table changin...
|
432
|
}
|
77201524
huanghong
column add prop m...
|
433
|
}
|
9d3aada3
huanghong
npm test
|
434
435
436
|
else{
columnWidth = 0;
}
|
9d304dd6
huanghong
fixed safari scro...
|
437
|
}
|
9d3aada3
huanghong
npm test
|
438
|
}
|
77201524
huanghong
column add prop m...
|
439
|
|
3f5e84a1
huanghong
update table colu...
|
440
|
column._width = width;
|
77201524
huanghong
column add prop m...
|
441
|
|
9d3aada3
huanghong
npm test
|
442
443
444
|
columnsWidth[column._index] = {
width: width
};
|
77201524
huanghong
column add prop m...
|
445
|
|
9d3aada3
huanghong
npm test
|
446
|
}
|
3f5e84a1
huanghong
update table colu...
|
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
if(usableWidth>0) {
usableLength = noMaxWidthColumns.length;
columnWidth = parseInt(usableWidth / usableLength);
for (let i = 0; i < noMaxWidthColumns.length; i++) {
const column = noMaxWidthColumns[i];
let width = column._width + columnWidth;
if (usableLength > 1) {
usableLength--;
usableWidth -= columnWidth;
columnWidth = parseInt(usableWidth / usableLength);
}
else {
columnWidth = 0;
}
column._width = width;
columnsWidth[column._index] = {
width: width
};
}
}
|
4fd4d763
huanghong
remove console log
|
470
|
|
8f230d68
huanghong
fixed table
|
471
|
this.tableWidth = this.cloneColumns.map(cell => cell._width).reduce((a, b) => a + b, 0) + (this.showVerticalScrollBar?this.scrollBarWidth:0) + 1;
|
9d3aada3
huanghong
npm test
|
472
473
|
this.columnsWidth = columnsWidth;
this.fixedHeader();
|
744eb0af
梁灏
update Table comp...
|
474
|
},
|
d3dfdb26
梁灏
update Table
|
475
|
handleMouseIn (_index) {
|
174158b1
Lawrence Lee
change disable-ho...
|
476
|
if (this.disabledHover) return;
|
d3dfdb26
梁灏
update Table
|
477
478
|
if (this.objData[_index]._isHover) return;
this.objData[_index]._isHover = true;
|
abdec99d
梁灏
update Table
|
479
|
},
|
d3dfdb26
梁灏
update Table
|
480
|
handleMouseOut (_index) {
|
174158b1
Lawrence Lee
change disable-ho...
|
481
|
if (this.disabledHover) return;
|
d3dfdb26
梁灏
update Table
|
482
|
this.objData[_index]._isHover = false;
|
abdec99d
梁灏
update Table
|
483
|
},
|
3aca3d56
梁灏
fixed #1372
|
484
485
|
// 通用处理 highlightCurrentRow 和 clearCurrentRow
handleCurrentRow (type, _index) {
|
0d136465
梁灏
update Table
|
486
|
let oldIndex = -1;
|
d3dfdb26
梁灏
update Table
|
487
488
489
490
|
for (let i in this.objData) {
if (this.objData[i]._isHighlight) {
oldIndex = parseInt(i);
this.objData[i]._isHighlight = false;
|
0d136465
梁灏
update Table
|
491
|
}
|
d3dfdb26
梁灏
update Table
|
492
|
}
|
3aca3d56
梁灏
fixed #1372
|
493
|
if (type === 'highlight') this.objData[_index]._isHighlight = true;
|
63f2e0f4
梁灏
fixed Table bug w...
|
494
|
const oldData = oldIndex < 0 ? null : JSON.parse(JSON.stringify(this.cloneData[oldIndex]));
|
3aca3d56
梁灏
fixed #1372
|
495
496
497
498
499
500
501
502
503
504
|
const newData = type === 'highlight' ? JSON.parse(JSON.stringify(this.cloneData[_index])) : null;
this.$emit('on-current-change', newData, oldData);
},
highlightCurrentRow (_index) {
if (!this.highlightRow || this.objData[_index]._isHighlight) return;
this.handleCurrentRow('highlight', _index);
},
clearCurrentRow () {
if (!this.highlightRow) return;
this.handleCurrentRow('clear');
|
0d136465
梁灏
update Table
|
505
|
},
|
da55375f
Rijn
Added click and d...
|
506
507
|
clickCurrentRow (_index) {
this.highlightCurrentRow (_index);
|
ade5dbba
梁灏
fixed #693
|
508
|
this.$emit('on-row-click', JSON.parse(JSON.stringify(this.cloneData[_index])), _index);
|
da55375f
Rijn
Added click and d...
|
509
510
511
|
},
dblclickCurrentRow (_index) {
this.highlightCurrentRow (_index);
|
ade5dbba
梁灏
fixed #693
|
512
|
this.$emit('on-row-dblclick', JSON.parse(JSON.stringify(this.cloneData[_index])), _index);
|
da55375f
Rijn
Added click and d...
|
513
|
},
|
0d136465
梁灏
update Table
|
514
515
|
getSelection () {
let selectionIndexes = [];
|
d3dfdb26
梁灏
update Table
|
516
517
518
|
for (let i in this.objData) {
if (this.objData[i]._isChecked) selectionIndexes.push(parseInt(i));
}
|
0d136465
梁灏
update Table
|
519
520
|
return JSON.parse(JSON.stringify(this.data.filter((data, index) => selectionIndexes.indexOf(index) > -1)));
},
|
d3dfdb26
梁灏
update Table
|
521
|
toggleSelect (_index) {
|
741b987a
梁灏
update Table
|
522
|
let data = {};
|
d3dfdb26
梁灏
update Table
|
523
524
525
526
|
for (let i in this.objData) {
if (parseInt(i) === _index) {
data = this.objData[i];
|
14cfcf3c
Kevin
Performance Impro...
|
527
|
break;
|
741b987a
梁灏
update Table
|
528
529
530
|
}
}
const status = !data._isChecked;
|
d3dfdb26
梁灏
update Table
|
531
532
|
this.objData[_index]._isChecked = status;
|
0d136465
梁灏
update Table
|
533
534
|
const selection = this.getSelection();
|
b0f1c61f
Rijn
add a event @on-s...
|
535
|
this.$emit(status ? 'on-select' : 'on-select-cancel', selection, JSON.parse(JSON.stringify(this.data[_index])));
|
0d136465
梁灏
update Table
|
536
537
|
this.$emit('on-selection-change', selection);
},
|
08fd628d
Aresn
Table support expand
|
538
539
540
541
542
543
|
toggleExpand (_index) {
let data = {};
for (let i in this.objData) {
if (parseInt(i) === _index) {
data = this.objData[i];
|
14cfcf3c
Kevin
Performance Impro...
|
544
|
break;
|
08fd628d
Aresn
Table support expand
|
545
546
547
548
549
|
}
}
const status = !data._isExpanded;
this.objData[_index]._isExpanded = status;
this.$emit('on-expand', JSON.parse(JSON.stringify(this.cloneData[_index])), status);
|
026f0729
Junan
表格展开或缩进的时候重新计算表格高...
|
550
551
552
553
|
if(this.height){
this.$nextTick(()=>this.fixedBody());
}
|
08fd628d
Aresn
Table support expand
|
554
|
},
|
3d9e4f20
梁灏
update Table
|
555
|
selectAll (status) {
|
cd85c675
leonine
修改_checked=true 时...
|
556
557
558
559
560
561
|
// this.rebuildData.forEach((data) => {
// if(this.objData[data._index]._isDisabled){
// this.objData[data._index]._isChecked = false;
// }else{
// this.objData[data._index]._isChecked = status;
// }
|
6a248176
Sergio Crisostomo
Add counter start...
|
562
|
|
cd85c675
leonine
修改_checked=true 时...
|
563
564
|
// });
for(const data of this.rebuildData){
|
0dcc9482
leonine
itable 添加禁用某行选中的功能
|
565
|
if(this.objData[data._index]._isDisabled){
|
cd85c675
leonine
修改_checked=true 时...
|
566
|
continue;
|
0dcc9482
leonine
itable 添加禁用某行选中的功能
|
567
568
569
|
}else{
this.objData[data._index]._isChecked = status;
}
|
cd85c675
leonine
修改_checked=true 时...
|
570
|
}
|
52874e27
梁灏
update Table
|
571
|
const selection = this.getSelection();
|
3d9e4f20
梁灏
update Table
|
572
|
if (status) {
|
52874e27
梁灏
update Table
|
573
|
this.$emit('on-select-all', selection);
|
d483c545
梁灏
Table add on-sele...
|
574
575
|
} else {
this.$emit('on-select-all-cancel', selection);
|
3d9e4f20
梁灏
update Table
|
576
|
}
|
52874e27
梁灏
update Table
|
577
|
this.$emit('on-selection-change', selection);
|
e7e8c8ff
梁灏
update Table
|
578
|
},
|
47638ad8
huanghong
fixed table scrol...
|
579
|
|
e7e8c8ff
梁灏
update Table
|
580
|
fixedHeader () {
|
b0893113
jingsam
add eslint
|
581
|
if (this.height) {
|
e7e8c8ff
梁灏
update Table
|
582
|
this.$nextTick(() => {
|
486d4fda
梁灏
update Table
|
583
584
585
|
const titleHeight = parseInt(getStyle(this.$refs.title, 'height')) || 0;
const headerHeight = parseInt(getStyle(this.$refs.header, 'height')) || 0;
const footerHeight = parseInt(getStyle(this.$refs.footer, 'height')) || 0;
|
e7e8c8ff
梁灏
update Table
|
586
|
this.bodyHeight = this.height - titleHeight - headerHeight - footerHeight;
|
6136e4dd
huanghong
fixed table horiz...
|
587
|
this.$nextTick(()=>this.fixedBody());
|
b0893113
jingsam
add eslint
|
588
|
});
|
f2a051a1
梁灏
publish 0.9.9-rc-6
|
589
590
|
} else {
this.bodyHeight = 0;
|
6136e4dd
huanghong
fixed table horiz...
|
591
|
this.$nextTick(()=>this.fixedBody());
|
e7e8c8ff
梁灏
update Table
|
592
|
}
|
abdec99d
梁灏
update Table
|
593
|
},
|
fda6dfa2
huanghong
column add prop m...
|
594
|
fixedBody (){
|
f1dfa8ff
huanghong
fixed table show-...
|
595
596
597
|
if (this.$refs.header) {
this.headerWidth = this.$refs.header.children[0].offsetWidth;
this.headerHeight = this.$refs.header.children[0].offsetHeight;
|
6136e4dd
huanghong
fixed table horiz...
|
598
|
//this.showHorizontalScrollBar = this.headerWidth>this.$refs.header.offsetWidth;
|
f1dfa8ff
huanghong
fixed table show-...
|
599
600
|
}
|
b1262a3d
huanghong
fixed no data wid...
|
601
|
if (!this.$refs.tbody || !this.data || this.data.length === 0) {
|
fda6dfa2
huanghong
column add prop m...
|
602
|
this.showVerticalScrollBar = false;
|
fda6dfa2
huanghong
column add prop m...
|
603
604
605
606
607
608
|
}
else{
let bodyContentEl = this.$refs.tbody.$el;
let bodyEl = bodyContentEl.parentElement;
let bodyContentHeight = bodyContentEl.offsetHeight;
let bodyHeight = bodyEl.offsetHeight;
|
f1dfa8ff
huanghong
fixed table show-...
|
609
|
|
6136e4dd
huanghong
fixed table horiz...
|
610
|
this.showHorizontalScrollBar = bodyEl.offsetWidth < bodyContentEl.offsetWidth + (this.showVerticalScrollBar?this.scrollBarWidth:0);
|
fda6dfa2
huanghong
column add prop m...
|
611
612
613
614
615
616
617
618
619
620
621
622
|
this.showVerticalScrollBar = this.bodyHeight? bodyHeight - (this.showHorizontalScrollBar?this.scrollBarWidth:0) < bodyContentHeight : false;
if(this.showVerticalScrollBar){
bodyEl.classList.add(this.prefixCls +'-overflowY');
}else{
bodyEl.classList.remove(this.prefixCls +'-overflowY');
}
if(this.showHorizontalScrollBar){
bodyEl.classList.add(this.prefixCls +'-overflowX');
}else{
bodyEl.classList.remove(this.prefixCls +'-overflowX');
}
|
f1dfa8ff
huanghong
fixed table show-...
|
623
|
}
|
fda6dfa2
huanghong
column add prop m...
|
624
625
|
},
|
99f80db0
梁灏
update Table
|
626
627
628
|
hideColumnFilter () {
this.cloneColumns.forEach((col) => col._filterVisible = false);
},
|
192e2cb8
梁灏
update Table
|
629
|
handleBodyScroll (event) {
|
486d4fda
梁灏
update Table
|
630
631
632
|
if (this.showHeader) this.$refs.header.scrollLeft = event.target.scrollLeft;
if (this.isLeftFixed) this.$refs.fixedBody.scrollTop = event.target.scrollTop;
if (this.isRightFixed) this.$refs.fixedRightBody.scrollTop = event.target.scrollTop;
|
99f80db0
梁灏
update Table
|
633
|
this.hideColumnFilter();
|
192e2cb8
梁灏
update Table
|
634
|
},
|
e25070eb
huanghong
fixed #2871
|
635
|
handleFixedMousewheel(event) {
|
e970884b
huanghong
mousewheel suppor...
|
636
637
638
639
640
641
642
|
let deltaY = event.deltaY;
if(!deltaY && event.detail){
deltaY = event.detail * 40;
}
if(!deltaY && event.wheelDeltaY){
deltaY = -event.wheelDeltaY;
}
|
a796b2c5
huanghong
support ie Mousew...
|
643
644
645
|
if(!deltaY && event.wheelDelta){
deltaY = -event.wheelDelta;
}
|
e970884b
huanghong
mousewheel suppor...
|
646
|
if(!deltaY) return;
|
e25070eb
huanghong
fixed #2871
|
647
648
649
650
651
652
653
654
655
656
657
|
const body = this.$refs.body;
const currentScrollTop = body.scrollTop;
if (deltaY < 0 && currentScrollTop !== 0) {
event.preventDefault();
}
if (deltaY > 0 && body.scrollHeight - body.clientHeight > currentScrollTop) {
event.preventDefault();
}
//body.scrollTop += deltaY;
let step = 0;
let timeId = setInterval(()=>{
|
7f2e78d8
huanghong
Decrease table sc...
|
658
|
step += 5;
|
e25070eb
huanghong
fixed #2871
|
659
|
if(deltaY>0){
|
7f2e78d8
huanghong
Decrease table sc...
|
660
|
body.scrollTop += 2;
|
e25070eb
huanghong
fixed #2871
|
661
662
|
}
else{
|
7f2e78d8
huanghong
Decrease table sc...
|
663
|
body.scrollTop -= 2;
|
e25070eb
huanghong
fixed #2871
|
664
|
}
|
7f2e78d8
huanghong
Decrease table sc...
|
665
|
if(step >= Math.abs(deltaY)){
|
e25070eb
huanghong
fixed #2871
|
666
667
|
clearInterval(timeId);
}
|
7f2e78d8
huanghong
Decrease table sc...
|
668
|
}, 5);
|
e25070eb
huanghong
fixed #2871
|
669
|
},
|
3ef4dfb9
梁灏
update Table
|
670
671
|
handleMouseWheel (event) {
const deltaX = event.deltaX;
|
486d4fda
梁灏
update Table
|
672
|
const $body = this.$refs.body;
|
3ef4dfb9
梁灏
update Table
|
673
674
675
676
677
678
|
if (deltaX > 0) {
$body.scrollLeft = $body.scrollLeft + 10;
} else {
$body.scrollLeft = $body.scrollLeft - 10;
}
|
52874e27
梁灏
update Table
|
679
|
},
|
9f853e3e
梁灏
update Table
|
680
681
682
683
|
sortData (data, type, index) {
const key = this.cloneColumns[index].key;
data.sort((a, b) => {
if (this.cloneColumns[index].sortMethod) {
|
da020a63
Rijn
Changed parameter...
|
684
|
return this.cloneColumns[index].sortMethod(a[key], b[key], type);
|
9f853e3e
梁灏
update Table
|
685
|
} else {
|
89670198
梁灏
publish 0.9.9-rc-5
|
686
687
688
689
690
|
if (type === 'asc') {
return a[key] > b[key] ? 1 : -1;
} else if (type === 'desc') {
return a[key] < b[key] ? 1 : -1;
}
|
9f853e3e
梁灏
update Table
|
691
692
693
694
|
}
});
return data;
},
|
b34e09b8
梁灏
fixed #2832
|
695
696
|
handleSort (_index, type) {
const index = this.GetOriginalIndex(_index);
|
35ad3764
梁灏
update Table
|
697
698
699
|
this.cloneColumns.forEach((col) => col._sortType = 'normal');
const key = this.cloneColumns[index].key;
|
642299b9
梁灏
update Table
|
700
|
if (this.cloneColumns[index].sortable !== 'custom') { // custom is for remote sort
|
9f853e3e
梁灏
update Table
|
701
|
if (type === 'normal') {
|
97edb2eb
梁灏
update Table
|
702
|
this.rebuildData = this.makeDataWithFilter();
|
9f853e3e
梁灏
update Table
|
703
704
|
} else {
this.rebuildData = this.sortData(this.rebuildData, type, index);
|
642299b9
梁灏
update Table
|
705
|
}
|
52874e27
梁灏
update Table
|
706
|
}
|
35ad3764
梁灏
update Table
|
707
708
709
|
this.cloneColumns[index]._sortType = type;
this.$emit('on-sort-change', {
|
1acabf79
梁灏
Table support mul...
|
710
|
column: JSON.parse(JSON.stringify(this.allColumns[this.cloneColumns[index]._index])),
|
35ad3764
梁灏
update Table
|
711
712
|
key: key,
order: type
|
9f853e3e
梁灏
update Table
|
713
|
});
|
741b987a
梁灏
update Table
|
714
|
},
|
adaeca88
梁灏
update Table
|
715
716
717
|
handleFilterHide (index) { // clear checked that not filter now
if (!this.cloneColumns[index]._isFiltered) this.cloneColumns[index]._filterChecked = [];
},
|
cb31ede0
梁灏
update Table
|
718
719
|
filterData (data, column) {
return data.filter((row) => {
|
73ae27d8
梁灏
update Table filt...
|
720
|
//如果定义了远程过滤方法则忽略此方法
|
257bc4e6
H
filterRemote过滤时,单...
|
721
|
if (typeof column.filterRemote === 'function') return true;
|
73ae27d8
梁灏
update Table filt...
|
722
|
|
cb31ede0
梁灏
update Table
|
723
|
let status = !column._filterChecked.length;
|
adaeca88
梁灏
update Table
|
724
725
726
727
728
729
|
for (let i = 0; i < column._filterChecked.length; i++) {
status = column.filterMethod(column._filterChecked[i], row);
if (status) break;
}
return status;
});
|
cb31ede0
梁灏
update Table
|
730
731
|
},
filterOtherData (data, index) {
|
12bcf7bd
H
添加 remoteFilter方法...
|
732
|
let column = this.cloneColumns[index];
|
73ae27d8
梁灏
update Table filt...
|
733
734
|
if (typeof column.filterRemote === 'function') {
column.filterRemote.call(this.$parent, column._filterChecked, column.key, column);
|
12bcf7bd
H
添加 remoteFilter方法...
|
735
736
|
}
|
cb31ede0
梁灏
update Table
|
737
738
739
740
741
742
743
744
745
|
this.cloneColumns.forEach((col, colIndex) => {
if (colIndex !== index) {
data = this.filterData(data, col);
}
});
return data;
},
handleFilter (index) {
const column = this.cloneColumns[index];
|
9f853e3e
梁灏
update Table
|
746
|
let filterData = this.makeDataWithSort();
|
cb31ede0
梁灏
update Table
|
747
748
749
750
751
|
// filter others first, after filter this column
filterData = this.filterOtherData(filterData, index);
this.rebuildData = this.filterData(filterData, column);
|
adaeca88
梁灏
update Table
|
752
753
|
this.cloneColumns[index]._isFiltered = true;
this.cloneColumns[index]._filterVisible = false;
|
6c634aa6
梁灏
fixed #2078
|
754
|
this.$emit('on-filter-change', column);
|
adaeca88
梁灏
update Table
|
755
|
},
|
b34e09b8
梁灏
fixed #2832
|
756
757
758
759
760
761
762
763
764
765
766
767
|
/**
* #2832
* 应该区分当前表头的 column 是左固定还是右固定
* 否则执行到 $parent 时,方法的 index 与 cloneColumns 的 index 是不对应的
* 左固定和右固定,要区分对待
* 所以,此方法用来获取正确的 index
* */
GetOriginalIndex (_index) {
return this.cloneColumns.findIndex(item => item._index === _index);
},
handleFilterSelect (_index, value) {
const index = this.GetOriginalIndex(_index);
|
45e7ed7e
梁灏
update Table
|
768
769
770
|
this.cloneColumns[index]._filterChecked = [value];
this.handleFilter(index);
},
|
b34e09b8
梁灏
fixed #2832
|
771
772
|
handleFilterReset (_index) {
const index = this.GetOriginalIndex(_index);
|
adaeca88
梁灏
update Table
|
773
|
this.cloneColumns[index]._isFiltered = false;
|
45e7ed7e
梁灏
update Table
|
774
775
|
this.cloneColumns[index]._filterVisible = false;
this.cloneColumns[index]._filterChecked = [];
|
cb31ede0
梁灏
update Table
|
776
|
|
9f853e3e
梁灏
update Table
|
777
|
let filterData = this.makeDataWithSort();
|
cb31ede0
梁灏
update Table
|
778
779
|
filterData = this.filterOtherData(filterData, index);
this.rebuildData = filterData;
|
6c634aa6
梁灏
fixed #2078
|
780
|
this.$emit('on-filter-change', this.cloneColumns[index]);
|
adaeca88
梁灏
update Table
|
781
|
},
|
741b987a
梁灏
update Table
|
782
783
|
makeData () {
let data = deepCopy(this.data);
|
68b308ee
梁灏
fixex #1353
|
784
785
786
787
|
data.forEach((row, index) => {
row._index = index;
row._rowKey = rowKey++;
});
|
741b987a
梁灏
update Table
|
788
|
return data;
|
d3dfdb26
梁灏
update Table
|
789
|
},
|
9f853e3e
梁灏
update Table
|
790
791
792
793
|
makeDataWithSort () {
let data = this.makeData();
let sortType = 'normal';
let sortIndex = -1;
|
2533a192
梁灏
update DatePicker
|
794
795
|
let isCustom = false;
|
9f853e3e
梁灏
update Table
|
796
797
798
799
|
for (let i = 0; i < this.cloneColumns.length; i++) {
if (this.cloneColumns[i]._sortType !== 'normal') {
sortType = this.cloneColumns[i]._sortType;
sortIndex = i;
|
2533a192
梁灏
update DatePicker
|
800
|
isCustom = this.cloneColumns[i].sortable === 'custom';
|
9f853e3e
梁灏
update Table
|
801
802
803
|
break;
}
}
|
2533a192
梁灏
update DatePicker
|
804
|
if (sortType !== 'normal' && !isCustom) data = this.sortData(data, sortType, sortIndex);
|
9f853e3e
梁灏
update Table
|
805
806
|
return data;
},
|
97edb2eb
梁灏
update Table
|
807
808
809
810
811
812
813
814
815
816
|
makeDataWithFilter () {
let data = this.makeData();
this.cloneColumns.forEach(col => data = this.filterData(data, col));
return data;
},
makeDataWithSortAndFilter () {
let data = this.makeDataWithSort();
this.cloneColumns.forEach(col => data = this.filterData(data, col));
return data;
},
|
d3dfdb26
梁灏
update Table
|
817
818
819
820
821
|
makeObjData () {
let data = {};
this.data.forEach((row, index) => {
const newRow = deepCopy(row);// todo 直接替换
newRow._isHover = false;
|
08fd628d
Aresn
Table support expand
|
822
|
if (newRow._disabled) {
|
c7315098
leonine
修复两个问题:
|
823
|
newRow._isDisabled = newRow._disabled;
|
08fd628d
Aresn
Table support expand
|
824
|
} else {
|
c7315098
leonine
修复两个问题:
|
825
826
|
newRow._isDisabled = false;
}
|
2404849c
leonine
合并原作者更新
|
827
|
if (newRow._checked) {
|
03773f7e
梁灏
update
|
828
|
newRow._isChecked = newRow._checked;
|
2404849c
leonine
合并原作者更新
|
829
|
} else {
|
1594942f
leonine
itable 添加设置默认选中行的功能
|
830
831
|
newRow._isChecked = false;
}
|
08fd628d
Aresn
Table support expand
|
832
833
834
835
836
|
if (newRow._expanded) {
newRow._isExpanded = newRow._expanded;
} else {
newRow._isExpanded = false;
}
|
2404849c
leonine
合并原作者更新
|
837
838
839
840
841
|
if (newRow._highlight) {
newRow._isHighlight = newRow._highlight;
} else {
newRow._isHighlight = false;
}
|
d3dfdb26
梁灏
update Table
|
842
843
844
|
data[index] = newRow;
});
return data;
|
35ad3764
梁灏
update Table
|
845
|
},
|
5d164b03
梁灏
fixed #3339
|
846
847
848
|
// 修改列,设置一个隐藏的 id,便于后面的多级表头寻找对应的列,否则找不到
makeColumnsId (columns) {
return columns.map(item => {
|
76965bf1
Kindy Lin
fix #3472 table c...
|
849
|
if ('children' in item) this.makeColumnsId(item.children);
|
5d164b03
梁灏
fixed #3339
|
850
851
852
853
854
|
item.__id = getRandomStr(6);
return item;
});
},
makeColumns (cols) {
|
1acabf79
梁灏
Table support mul...
|
855
|
// 在 data 时,this.allColumns 暂时为 undefined
|
5d164b03
梁灏
fixed #3339
|
856
|
let columns = deepCopy(getAllColumns(cols));
|
35ad3764
梁灏
update Table
|
857
858
859
860
861
|
let left = [];
let right = [];
let center = [];
columns.forEach((column, index) => {
|
35ad3764
梁灏
update Table
|
862
|
column._index = index;
|
68b308ee
梁灏
fixex #1353
|
863
|
column._columnKey = columnKey++;
|
a18ffad6
Haven
fix(table): Table...
|
864
|
column.width = parseInt(column.width);
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
865
|
column._width = column.width ? column.width : ''; // update in handleResize()
|
99f80db0
梁灏
update Table
|
866
867
868
869
|
column._sortType = 'normal';
column._filterVisible = false;
column._isFiltered = false;
column._filterChecked = [];
|
35ad3764
梁灏
update Table
|
870
|
|
adaeca88
梁灏
update Table
|
871
872
873
874
875
|
if ('filterMultiple' in column) {
column._filterMultiple = column.filterMultiple;
} else {
column._filterMultiple = true;
}
|
5d0499ce
梁灏
update Table
|
876
877
878
879
|
if ('filteredValue' in column) {
column._filterChecked = column.filteredValue;
column._isFiltered = true;
}
|
adaeca88
梁灏
update Table
|
880
|
|
835b37ff
梁灏
fixed #1403
|
881
882
883
884
|
if ('sortType' in column) {
column._sortType = column.sortType;
}
|
35ad3764
梁灏
update Table
|
885
886
887
888
889
890
891
892
893
|
if (column.fixed && column.fixed === 'left') {
left.push(column);
} else if (column.fixed && column.fixed === 'right') {
right.push(column);
} else {
center.push(column);
}
});
return left.concat(center).concat(right);
|
43509ad8
梁灏
Table support exp...
|
894
|
},
|
1acabf79
梁灏
Table support mul...
|
895
|
// create a multiple table-head
|
5d164b03
梁灏
fixed #3339
|
896
897
|
makeColumnRows (fixedType, cols) {
return convertToRows(cols, fixedType);
|
1acabf79
梁灏
Table support mul...
|
898
|
},
|
43509ad8
梁灏
Table support exp...
|
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
|
exportCsv (params) {
if (params.filename) {
if (params.filename.indexOf('.csv') === -1) {
params.filename += '.csv';
}
} else {
params.filename = 'table.csv';
}
let columns = [];
let datas = [];
if (params.columns && params.data) {
columns = params.columns;
datas = params.data;
} else {
|
1acabf79
梁灏
Table support mul...
|
914
|
columns = this.allColumns;
|
43509ad8
梁灏
Table support exp...
|
915
916
917
918
919
920
921
|
if (!('original' in params)) params.original = true;
datas = params.original ? this.data : this.rebuildData;
}
let noHeader = false;
if ('noHeader' in params) noHeader = params.noHeader;
|
fb847998
Sergio Crisostomo
Improve export to...
|
922
923
924
|
const data = Csv(columns, datas, params, noHeader);
if (params.callback) params.callback(data);
else ExportCsv.download(params.filename, data);
|
7e8e6ef8
forfire
add dragdrop for tr
|
925
926
927
|
},
dragAndDrop(a,b) {
this.$emit('on-drag-drop', a,b);
|
2cb8a6d9
梁灏
commit Table comp...
|
928
929
|
}
},
|
486d4fda
梁灏
update Table
|
930
|
created () {
|
d8892603
梁灏
Table prop: conte...
|
931
|
if (!this.context) this.currentContext = this.$parent;
|
7409cb3c
梁灏
fixed #549
|
932
933
|
this.showSlotHeader = this.$slots.header !== undefined;
this.showSlotFooter = this.$slots.footer !== undefined;
|
5d0499ce
梁灏
update Table
|
934
|
this.rebuildData = this.makeDataWithSortAndFilter();
|
e7e8c8ff
梁灏
update Table
|
935
|
},
|
486d4fda
梁灏
update Table
|
936
|
mounted () {
|
a3547c1b
梁灏
update Table
|
937
|
this.handleResize();
|
adaeca88
梁灏
update Table
|
938
|
this.$nextTick(() => this.ready = true);
|
c5beedf8
梁灏
fixed #690
|
939
|
|
f00b5343
梁灏
update Table
|
940
|
on(window, 'resize', this.handleResize);
|
c5beedf8
梁灏
fixed #690
|
941
942
943
|
this.observer = elementResizeDetectorMaker();
this.observer.listenTo(this.$el, this.handleResize);
|
67c9b1c8
梁灏
fixed #591
|
944
|
this.$on('on-visible-change', (val) => {
|
a6eee4e5
梁灏
update Table
|
945
946
|
if (val) {
this.handleResize();
|
a6eee4e5
梁灏
update Table
|
947
|
}
|
67c9b1c8
梁灏
fixed #591
|
948
|
});
|
744eb0af
梁灏
update Table comp...
|
949
950
|
},
beforeDestroy () {
|
f00b5343
梁灏
update Table
|
951
|
off(window, 'resize', this.handleResize);
|
c5beedf8
梁灏
fixed #690
|
952
|
this.observer.removeListener(this.$el, this.handleResize);
|
2cb8a6d9
梁灏
commit Table comp...
|
953
954
955
956
|
},
watch: {
data: {
handler () {
|
119eeafe
梁灏
fixed a Table bug
|
957
|
const oldDataLen = this.rebuildData.length;
|
d3dfdb26
梁灏
update Table
|
958
|
this.objData = this.makeObjData();
|
97edb2eb
梁灏
update Table
|
959
|
this.rebuildData = this.makeDataWithSortAndFilter();
|
a3547c1b
梁灏
update Table
|
960
|
this.handleResize();
|
119eeafe
梁灏
fixed a Table bug
|
961
962
963
|
if (!oldDataLen) {
this.fixedHeader();
}
|
63f2e0f4
梁灏
fixed Table bug w...
|
964
965
966
967
|
// here will trigger before clickCurrentRow, so use async
setTimeout(() => {
this.cloneData = deepCopy(this.data);
}, 0);
|
2cb8a6d9
梁灏
commit Table comp...
|
968
969
970
971
972
|
},
deep: true
},
columns: {
handler () {
|
f2a051a1
梁灏
publish 0.9.9-rc-6
|
973
|
// todo 这里有性能问题,可能是左右固定计算属性影响的
|
5d164b03
梁灏
fixed #3339
|
974
975
|
const colsWithId = this.makeColumnsId(this.columns);
this.allColumns = getAllColumns(colsWithId);
|
948accad
梁灏
forget update func
|
976
|
this.cloneColumns = this.makeColumns(colsWithId);
|
9d304dd6
huanghong
fixed safari scro...
|
977
|
|
5d164b03
梁灏
fixed #3339
|
978
979
980
|
this.columnRows = this.makeColumnRows(false, colsWithId);
this.leftFixedColumnRows = this.makeColumnRows('left', colsWithId);
this.rightFixedColumnRows = this.makeColumnRows('right', colsWithId);
|
97edb2eb
梁灏
update Table
|
981
|
this.rebuildData = this.makeDataWithSortAndFilter();
|
a3547c1b
梁灏
update Table
|
982
|
this.handleResize();
|
2cb8a6d9
梁灏
commit Table comp...
|
983
984
|
},
deep: true
|
e7e8c8ff
梁灏
update Table
|
985
986
|
},
height () {
|
b08bd8a8
huanghong
fixed height changed
|
987
|
this.handleResize();
|
75803add
huanghong
fixed scoll bar
|
988
989
990
|
},
showHorizontalScrollBar () {
this.handleResize();
|
fda6dfa2
huanghong
column add prop m...
|
991
992
993
|
},
showVerticalScrollBar () {
this.handleResize();
|
2cb8a6d9
梁灏
commit Table comp...
|
994
995
|
}
}
|
b0893113
jingsam
add eslint
|
996
997
|
};
</script>
|