Blame view

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