Blame view

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