Blame view

src/components/table/table.vue 28 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"
486d4fda   梁灏   update Table
8
                      :styleObject="tableStyle"
39311a50   梁灏   update Table
9
10
                      :columns="cloneColumns"
                      :obj-data="objData"
224a3ae5   梁灏   publish 0.9.9-rc-3
11
                      :columns-width="columnsWidth"
39311a50   梁灏   update Table
12
                      :data="rebuildData"></table-head>
b8a43000   梁灏   update Table
13
              </div>
486d4fda   梁灏   update Table
14
              <div :class="[prefixCls + '-body']" :style="bodyStyle" ref="body" @scroll="handleBodyScroll"
2f7660b4   Rijn   fade table body w...
15
                  v-show="!((!!noDataText && (!data || data.length === 0)) || (!!noFilteredDataText && (!rebuildData || rebuildData.length === 0)))">
b8a43000   梁灏   update Table
16
                  <table-body
486d4fda   梁灏   update Table
17
                      ref="tbody"
39311a50   梁灏   update Table
18
                      :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
19
                      :styleObject="tableStyle"
39311a50   梁灏   update Table
20
21
                      :columns="cloneColumns"
                      :data="rebuildData"
224a3ae5   梁灏   publish 0.9.9-rc-3
22
                      :columns-width="columnsWidth"
39311a50   梁灏   update Table
23
                      :obj-data="objData"></table-body>
b8a43000   梁灏   update Table
24
              </div>
2f7660b4   Rijn   fade table body w...
25
26
              <div
                  :class="[prefixCls + '-tip']"
486d4fda   梁灏   update Table
27
                  v-show="((!!noDataText && (!data || data.length === 0)) || (!!noFilteredDataText && (!rebuildData || rebuildData.length === 0)))">
2f7660b4   Rijn   fade table body w...
28
29
30
31
                  <table cellspacing="0" cellpadding="0" border="0">
                      <tbody>
                          <tr>
                              <td :style="{ 'height': bodyStyle.height }">
486d4fda   梁灏   update Table
32
33
                                  <span v-html="noDataText" v-if="!data || data.length === 0"></span>
                                  <span v-html="noFilteredDataText" v-else></span>
2f7660b4   Rijn   fade table body w...
34
35
36
37
38
                              </td>
                          </tr>
                      </tbody>
                  </table>
              </div>
a81dc06c   梁灏   publish 0.9.9-rc-4
39
              <div :class="[prefixCls + '-fixed']" :style="fixedTableStyle" v-if="isLeftFixed">
45e7ed7e   梁灏   update Table
40
41
                  <div :class="[prefixCls + '-fixed-header']" v-if="showHeader">
                      <table-head
5d0499ce   梁灏   update Table
42
                          fixed="left"
39311a50   梁灏   update Table
43
                          :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
44
                          :styleObject="fixedTableStyle"
39311a50   梁灏   update Table
45
46
                          :columns="leftFixedColumns"
                          :obj-data="objData"
5e7a3b29   梁灏   publish 0.9.9-rc-2
47
                          :columns-width.sync="columnsWidth"
39311a50   梁灏   update Table
48
                          :data="rebuildData"></table-head>
45e7ed7e   梁灏   update Table
49
                  </div>
486d4fda   梁灏   update Table
50
                  <div :class="[prefixCls + '-fixed-body']" :style="fixedBodyStyle" ref="fixedBody">
45e7ed7e   梁灏   update Table
51
                      <table-body
5d0499ce   梁灏   update Table
52
                          fixed="left"
39311a50   梁灏   update Table
53
                          :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
54
                          :styleObject="fixedTableStyle"
39311a50   梁灏   update Table
55
56
                          :columns="leftFixedColumns"
                          :data="rebuildData"
224a3ae5   梁灏   publish 0.9.9-rc-3
57
                          :columns-width="columnsWidth"
39311a50   梁灏   update Table
58
                          :obj-data="objData"></table-body>
45e7ed7e   梁灏   update Table
59
                  </div>
b8a43000   梁灏   update Table
60
              </div>
a81dc06c   梁灏   publish 0.9.9-rc-4
61
              <div :class="[prefixCls + '-fixed-right']" :style="fixedRightTableStyle" v-if="isRightFixed">
45e7ed7e   梁灏   update Table
62
63
                  <div :class="[prefixCls + '-fixed-header']" v-if="showHeader">
                      <table-head
5d0499ce   梁灏   update Table
64
                          fixed="right"
39311a50   梁灏   update Table
65
                          :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
66
                          :styleObject="fixedRightTableStyle"
39311a50   梁灏   update Table
67
68
                          :columns="rightFixedColumns"
                          :obj-data="objData"
486d4fda   梁灏   update Table
69
                          :columns-width="columnsWidth"
39311a50   梁灏   update Table
70
                          :data="rebuildData"></table-head>
45e7ed7e   梁灏   update Table
71
                  </div>
486d4fda   梁灏   update Table
72
                  <div :class="[prefixCls + '-fixed-body']" :style="fixedBodyStyle" ref="fixedRightBody">
45e7ed7e   梁灏   update Table
73
                      <table-body
5d0499ce   梁灏   update Table
74
                          fixed="right"
39311a50   梁灏   update Table
75
                          :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
76
                          :styleObject="fixedRightTableStyle"
39311a50   梁灏   update Table
77
78
                          :columns="rightFixedColumns"
                          :data="rebuildData"
224a3ae5   梁灏   publish 0.9.9-rc-3
79
                          :columns-width="columnsWidth"
39311a50   梁灏   update Table
80
                          :obj-data="objData"></table-body>
45e7ed7e   梁灏   update Table
81
                  </div>
b8a43000   梁灏   update Table
82
              </div>
486d4fda   梁灏   update Table
83
              <div :class="[prefixCls + '-footer']" v-if="showSlotFooter" ref="footer"><slot name="footer"></slot></div>
abdec99d   梁灏   update Table
84
          </div>
2cb8a6d9   梁灏   commit Table comp...
85
86
87
      </div>
  </template>
  <script>
7f34c510   梁灏   update Table
88
89
      import tableHead from './table-head.vue';
      import tableBody from './table-body.vue';
3d6fa54b   梁灏   update Table
90
      import { oneOf, getStyle, deepCopy, getScrollBarSize } from '../../utils/assist';
4ab11811   梁灏   some component su...
91
      import { t } from '../../locale';
43509ad8   梁灏   Table support exp...
92
93
      import Csv from '../../utils/csv';
      import ExportCsv from './export-csv';
2cb8a6d9   梁灏   commit Table comp...
94
95
96
      const prefixCls = 'ivu-table';
  
      export default {
486d4fda   梁灏   update Table
97
          name: 'Table',
7f34c510   梁灏   update Table
98
          components: { tableHead, tableBody },
2cb8a6d9   梁灏   commit Table comp...
99
100
101
102
          props: {
              data: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
103
                      return [];
2cb8a6d9   梁灏   commit Table comp...
104
105
106
107
108
                  }
              },
              columns: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
109
                      return [];
2cb8a6d9   梁灏   commit Table comp...
110
111
112
113
                  }
              },
              size: {
                  validator (value) {
f2a051a1   梁灏   publish 0.9.9-rc-6
114
                      return oneOf(value, ['small', 'large', 'default']);
2cb8a6d9   梁灏   commit Table comp...
115
116
                  }
              },
3ef4dfb9   梁灏   update Table
117
118
119
              width: {
                  type: [Number, String]
              },
e7e8c8ff   梁灏   update Table
120
121
122
              height: {
                  type: [Number, String]
              },
2cb8a6d9   梁灏   commit Table comp...
123
124
125
126
127
128
129
130
              stripe: {
                  type: Boolean,
                  default: false
              },
              border: {
                  type: Boolean,
                  default: false
              },
2cb8a6d9   梁灏   commit Table comp...
131
132
133
134
              showHeader: {
                  type: Boolean,
                  default: true
              },
0d136465   梁灏   update Table
135
              highlightRow: {
2cb8a6d9   梁灏   commit Table comp...
136
137
                  type: Boolean,
                  default: false
e7e8c8ff   梁灏   update Table
138
139
140
141
142
143
              },
              rowClassName: {
                  type: Function,
                  default () {
                      return '';
                  }
d0e206c5   梁灏   Table add content...
144
145
146
              },
              content: {
                  type: Object
cf7887ba   Rijn   Fixed #151
147
148
149
              },
              noDataText: {
                  type: String,
4ab11811   梁灏   some component su...
150
151
152
                  default () {
                      return t('i.table.noDataText');
                  }
cf7887ba   Rijn   Fixed #151
153
154
155
              },
              noFilteredDataText: {
                  type: String,
4ab11811   梁灏   some component su...
156
157
158
                  default () {
                      return t('i.table.noFilteredDataText');
                  }
2cb8a6d9   梁灏   commit Table comp...
159
160
161
162
              }
          },
          data () {
              return {
adaeca88   梁灏   update Table
163
                  ready: false,
744eb0af   梁灏   update Table comp...
164
                  tableWidth: 0,
224a3ae5   梁灏   publish 0.9.9-rc-3
165
                  columnsWidth: {},
2cb8a6d9   梁灏   commit Table comp...
166
                  prefixCls: prefixCls,
0d136465   梁灏   update Table
167
                  compiledUids: [],
35ad3764   梁灏   update Table
168
                  objData: this.makeObjData(),     // checkbox or highlight-row
5d0499ce   梁灏   update Table
169
                  rebuildData: [],    // for sort or filter
35ad3764   梁灏   update Table
170
                  cloneColumns: this.makeColumns(),
e7e8c8ff   梁灏   update Table
171
172
                  showSlotHeader: true,
                  showSlotFooter: true,
3d6fa54b   梁灏   update Table
173
                  bodyHeight: 0,
d16dce64   梁灏   fixed #193
174
                  bodyRealHeight: 0,
486d4fda   梁灏   update Table
175
176
                  scrollBarWidth: getScrollBarSize(),
                  currentContent: this.content
b0893113   jingsam   :art: add eslint
177
              };
2cb8a6d9   梁灏   commit Table comp...
178
179
          },
          computed: {
45e7ed7e   梁灏   update Table
180
181
182
183
              wrapClasses () {
                  return [
                      `${prefixCls}-wrapper`,
                      {
0f4ccf44   梁灏   release 0.9.9
184
185
186
                          [`${prefixCls}-hide`]: !this.ready,
                          [`${prefixCls}-with-header`]: this.showSlotHeader,
                          [`${prefixCls}-with-footer`]: this.showSlotFooter
45e7ed7e   梁灏   update Table
187
                      }
b0893113   jingsam   :art: add eslint
188
                  ];
45e7ed7e   梁灏   update Table
189
              },
2cb8a6d9   梁灏   commit Table comp...
190
191
192
193
              classes () {
                  return [
                      `${prefixCls}`,
                      {
0d136465   梁灏   update Table
194
195
                          [`${prefixCls}-${this.size}`]: !!this.size,
                          [`${prefixCls}-border`]: this.border,
e7e8c8ff   梁灏   update Table
196
                          [`${prefixCls}-stripe`]: this.stripe,
e7e8c8ff   梁灏   update Table
197
                          [`${prefixCls}-with-fixed-top`]: !!this.height
2cb8a6d9   梁灏   commit Table comp...
198
                      }
b0893113   jingsam   :art: add eslint
199
                  ];
0d136465   梁灏   update Table
200
              },
e7e8c8ff   梁灏   update Table
201
202
              styles () {
                  let style = {};
3d6fa54b   梁灏   update Table
203
204
205
206
                  if (this.height) {
                      const height = (this.isLeftFixed || this.isRightFixed) ? parseInt(this.height) + this.scrollBarWidth : parseInt(this.height);
                      style.height = `${height}px`;
                  }
b0893113   jingsam   :art: add eslint
207
                  if (this.width) style.width = `${this.width}px`;
e7e8c8ff   梁灏   update Table
208
209
                  return style;
              },
0d136465   梁灏   update Table
210
211
              tableStyle () {
                  let style = {};
3d6fa54b   梁灏   update Table
212
                  if (this.tableWidth !== 0) {
d16dce64   梁灏   fixed #193
213
214
215
216
217
218
219
220
221
222
223
                      let width = '';
                      if (this.bodyHeight === 0) {
                          width = this.tableWidth;
                      } else {
                          if (this.bodyHeight > this.bodyRealHeight) {
                              width = this.tableWidth;
                          } else {
                              width = this.tableWidth - this.scrollBarWidth;
                          }
                      }
  //                    const width = this.bodyHeight === 0 ? this.tableWidth : this.tableWidth - this.scrollBarWidth;
3d6fa54b   梁灏   update Table
224
225
                      style.width = `${width}px`;
                  }
0d136465   梁灏   update Table
226
                  return style;
e7e8c8ff   梁灏   update Table
227
              },
7f34c510   梁灏   update Table
228
229
              fixedTableStyle () {
                  let style = {};
5d0499ce   梁灏   update Table
230
231
                  let width = 0;
                  this.leftFixedColumns.forEach((col) => {
224a3ae5   梁灏   publish 0.9.9-rc-3
232
                      if (col.fixed && col.fixed === 'left') width += col._width;
5d0499ce   梁灏   update Table
233
234
                  });
                  style.width = `${width}px`;
7f34c510   梁灏   update Table
235
236
237
238
                  return style;
              },
              fixedRightTableStyle () {
                  let style = {};
5d0499ce   梁灏   update Table
239
240
                  let width = 0;
                  this.rightFixedColumns.forEach((col) => {
224a3ae5   梁灏   publish 0.9.9-rc-3
241
                      if (col.fixed && col.fixed === 'right') width += col._width;
5d0499ce   梁灏   update Table
242
                  });
3d6fa54b   梁灏   update Table
243
                  width += this.scrollBarWidth;
5d0499ce   梁灏   update Table
244
                  style.width = `${width}px`;
7f34c510   梁灏   update Table
245
246
                  return style;
              },
e7e8c8ff   梁灏   update Table
247
248
              bodyStyle () {
                  let style = {};
3d6fa54b   梁灏   update Table
249
250
251
252
253
                  if (this.bodyHeight !== 0) {
                      // add a height to resolve scroll bug when browser has a scrollBar in fixed type and height prop
                      const height = (this.isLeftFixed || this.isRightFixed) ? this.bodyHeight + this.scrollBarWidth : this.bodyHeight;
                      style.height = `${height}px`;
                  }
e7e8c8ff   梁灏   update Table
254
                  return style;
b8a43000   梁灏   update Table
255
256
257
              },
              fixedBodyStyle () {
                  let style = {};
3d6fa54b   梁灏   update Table
258
                  if (this.bodyHeight !== 0) {
d16dce64   梁灏   fixed #193
259
260
261
262
263
264
265
                      let height = this.bodyHeight + this.scrollBarWidth - 1;
  
                      if (this.width && this.width < this.tableWidth){
                          height = this.bodyHeight;
                      }
  //                    style.height = this.scrollBarWidth > 0 ? `${this.bodyHeight}px` : `${this.bodyHeight - 1}px`;
                      style.height = this.scrollBarWidth > 0 ? `${height}px` : `${height - 1}px`;
3d6fa54b   梁灏   update Table
266
                  }
b8a43000   梁灏   update Table
267
                  return style;
35ad3764   梁灏   update Table
268
269
270
              },
              leftFixedColumns () {
                  let left = [];
5d0499ce   梁灏   update Table
271
                  let other = [];
35ad3764   梁灏   update Table
272
273
274
                  this.cloneColumns.forEach((col) => {
                      if (col.fixed && col.fixed === 'left') {
                          left.push(col);
5d0499ce   梁灏   update Table
275
276
                      } else {
                          other.push(col);
35ad3764   梁灏   update Table
277
278
                      }
                  });
5d0499ce   梁灏   update Table
279
                  return left.concat(other);
35ad3764   梁灏   update Table
280
281
282
              },
              rightFixedColumns () {
                  let right = [];
5d0499ce   梁灏   update Table
283
                  let other = [];
35ad3764   梁灏   update Table
284
285
286
                  this.cloneColumns.forEach((col) => {
                      if (col.fixed && col.fixed === 'right') {
                          right.push(col);
5d0499ce   梁灏   update Table
287
288
                      } else {
                          other.push(col);
35ad3764   梁灏   update Table
289
290
                      }
                  });
5d0499ce   梁灏   update Table
291
                  return right.concat(other);
a81dc06c   梁灏   publish 0.9.9-rc-4
292
293
294
295
296
297
              },
              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...
298
299
300
              }
          },
          methods: {
e7e8c8ff   梁灏   update Table
301
302
303
              rowClsName (index) {
                  return this.rowClassName(this.data[index], index);
              },
a3547c1b   梁灏   update Table
304
              handleResize () {
2cb8a6d9   梁灏   commit Table comp...
305
                  this.$nextTick(() => {
224a3ae5   梁灏   publish 0.9.9-rc-3
306
                      const allWidth = !this.columns.some(cell => !cell.width);    // each column set a width
a3547c1b   梁灏   update Table
307
308
309
310
                      if (allWidth) {
                          this.tableWidth = this.columns.map(cell => cell.width).reduce((a, b) => a + b);
                      } else {
                          this.tableWidth = parseInt(getStyle(this.$el, 'width')) - 1;
2cb8a6d9   梁灏   commit Table comp...
311
                      }
224a3ae5   梁灏   publish 0.9.9-rc-3
312
                      this.columnsWidth = {};
a3547c1b   梁灏   update Table
313
                      this.$nextTick(() => {
224a3ae5   梁灏   publish 0.9.9-rc-3
314
                          let columnsWidth = {};
192e2cb8   梁灏   update Table
315
                          let autoWidthIndex = -1;
224a3ae5   梁灏   publish 0.9.9-rc-3
316
                          if (allWidth) autoWidthIndex = this.cloneColumns.findIndex(cell => !cell.width);//todo 这行可能有问题
192e2cb8   梁灏   update Table
317
  
d0e206c5   梁灏   Table add content...
318
319
320
321
                          if (this.data.length) {
                              const $td = this.$refs.tbody.$el.querySelectorAll('tbody tr')[0].querySelectorAll('td');
                              for (let i = 0; i < $td.length; i++) {    // can not use forEach in Firefox
                                  const column = this.cloneColumns[i];
224a3ae5   梁灏   publish 0.9.9-rc-3
322
  
d0e206c5   梁灏   Table add content...
323
324
325
326
327
                                  let width = parseInt(getStyle($td[i], 'width'));
                                  if (i === autoWidthIndex) {
                                      width = parseInt(getStyle($td[i], 'width')) - 1;
                                  }
                                  if (column.width) width = column.width;
224a3ae5   梁灏   publish 0.9.9-rc-3
328
  
d0e206c5   梁灏   Table add content...
329
                                  this.cloneColumns[i]._width = width;
224a3ae5   梁灏   publish 0.9.9-rc-3
330
  
d0e206c5   梁灏   Table add content...
331
332
                                  columnsWidth[column._index] = {
                                      width: width
b0893113   jingsam   :art: add eslint
333
                                  };
2cb8a6d9   梁灏   commit Table comp...
334
                              }
d0e206c5   梁灏   Table add content...
335
                              this.columnsWidth = columnsWidth;
192e2cb8   梁灏   update Table
336
                          }
744eb0af   梁灏   update Table comp...
337
                      });
d16dce64   梁灏   fixed #193
338
339
                      // get table real height,for fixed when set height prop,but height < table's height,show scrollBarWidth
                      this.bodyRealHeight = parseInt(getStyle(this.$refs.tbody.$el, 'height'));
744eb0af   梁灏   update Table comp...
340
341
                  });
              },
d3dfdb26   梁灏   update Table
342
343
344
              handleMouseIn (_index) {
                  if (this.objData[_index]._isHover) return;
                  this.objData[_index]._isHover = true;
abdec99d   梁灏   update Table
345
              },
d3dfdb26   梁灏   update Table
346
347
              handleMouseOut (_index) {
                  this.objData[_index]._isHover = false;
abdec99d   梁灏   update Table
348
              },
d3dfdb26   梁灏   update Table
349
350
              highlightCurrentRow (_index) {
                  if (!this.highlightRow || this.objData[_index]._isHighlight) return;
0d136465   梁灏   update Table
351
352
  
                  let oldIndex = -1;
d3dfdb26   梁灏   update Table
353
354
355
356
                  for (let i in this.objData) {
                      if (this.objData[i]._isHighlight) {
                          oldIndex = parseInt(i);
                          this.objData[i]._isHighlight = false;
0d136465   梁灏   update Table
357
                      }
d3dfdb26   梁灏   update Table
358
359
360
361
                  }
                  this.objData[_index]._isHighlight = true;
                  const oldData = oldIndex < 0 ? null : JSON.parse(JSON.stringify(this.data[oldIndex]));
                  this.$emit('on-current-change', JSON.parse(JSON.stringify(this.data[_index])), oldData);
0d136465   梁灏   update Table
362
              },
da55375f   Rijn   Added click and d...
363
364
              clickCurrentRow (_index) {
                  this.highlightCurrentRow (_index);
ee975cd4   梁灏   update Table event
365
                  this.$emit('on-row-click', JSON.parse(JSON.stringify(this.data[_index])));
da55375f   Rijn   Added click and d...
366
367
368
              },
              dblclickCurrentRow (_index) {
                  this.highlightCurrentRow (_index);
ee975cd4   梁灏   update Table event
369
                  this.$emit('on-row-dblclick', JSON.parse(JSON.stringify(this.data[_index])));
da55375f   Rijn   Added click and d...
370
              },
0d136465   梁灏   update Table
371
372
              getSelection () {
                  let selectionIndexes = [];
d3dfdb26   梁灏   update Table
373
374
375
                  for (let i in this.objData) {
                      if (this.objData[i]._isChecked) selectionIndexes.push(parseInt(i));
                  }
0d136465   梁灏   update Table
376
377
                  return JSON.parse(JSON.stringify(this.data.filter((data, index) => selectionIndexes.indexOf(index) > -1)));
              },
d3dfdb26   梁灏   update Table
378
              toggleSelect (_index) {
741b987a   梁灏   update Table
379
                  let data = {};
d3dfdb26   梁灏   update Table
380
381
382
383
  
                  for (let i in this.objData) {
                      if (parseInt(i) === _index) {
                          data = this.objData[i];
741b987a   梁灏   update Table
384
385
386
                      }
                  }
                  const status = !data._isChecked;
d3dfdb26   梁灏   update Table
387
388
  
                  this.objData[_index]._isChecked = status;
0d136465   梁灏   update Table
389
390
391
  
                  const selection = this.getSelection();
                  if (status) {
741b987a   梁灏   update Table
392
                      this.$emit('on-select', selection, JSON.parse(JSON.stringify(this.data[_index])));
0d136465   梁灏   update Table
393
394
395
                  }
                  this.$emit('on-selection-change', selection);
              },
3d9e4f20   梁灏   update Table
396
              selectAll (status) {
cd85c675   leonine   修改_checked=true 时...
397
398
399
400
401
402
403
404
405
                  // this.rebuildData.forEach((data) => {
                  //     if(this.objData[data._index]._isDisabled){
                  //         this.objData[data._index]._isChecked = false;
                  //     }else{
                  //         this.objData[data._index]._isChecked = status;
                  //     }
                      
                  // });
                  for(const data of this.rebuildData){
0dcc9482   leonine   itable 添加禁用某行选中的功能
406
                      if(this.objData[data._index]._isDisabled){
cd85c675   leonine   修改_checked=true 时...
407
                          continue;
0dcc9482   leonine   itable 添加禁用某行选中的功能
408
409
410
                      }else{
                          this.objData[data._index]._isChecked = status;
                      }
cd85c675   leonine   修改_checked=true 时...
411
                  }
52874e27   梁灏   update Table
412
                  const selection = this.getSelection();
3d9e4f20   梁灏   update Table
413
                  if (status) {
52874e27   梁灏   update Table
414
                      this.$emit('on-select-all', selection);
3d9e4f20   梁灏   update Table
415
                  }
52874e27   梁灏   update Table
416
                  this.$emit('on-selection-change', selection);
e7e8c8ff   梁灏   update Table
417
418
              },
              fixedHeader () {
b0893113   jingsam   :art: add eslint
419
                  if (this.height) {
e7e8c8ff   梁灏   update Table
420
                      this.$nextTick(() => {
486d4fda   梁灏   update Table
421
422
423
                          const titleHeight = parseInt(getStyle(this.$refs.title, 'height')) || 0;
                          const headerHeight = parseInt(getStyle(this.$refs.header, 'height')) || 0;
                          const footerHeight = parseInt(getStyle(this.$refs.footer, 'height')) || 0;
e7e8c8ff   梁灏   update Table
424
                          this.bodyHeight = this.height - titleHeight - headerHeight - footerHeight;
b0893113   jingsam   :art: add eslint
425
                      });
f2a051a1   梁灏   publish 0.9.9-rc-6
426
427
                  } else {
                      this.bodyHeight = 0;
e7e8c8ff   梁灏   update Table
428
                  }
abdec99d   梁灏   update Table
429
              },
99f80db0   梁灏   update Table
430
431
432
              hideColumnFilter () {
                  this.cloneColumns.forEach((col) => col._filterVisible = false);
              },
192e2cb8   梁灏   update Table
433
              handleBodyScroll (event) {
486d4fda   梁灏   update Table
434
435
436
                  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
437
                  this.hideColumnFilter();
192e2cb8   梁灏   update Table
438
              },
3ef4dfb9   梁灏   update Table
439
440
              handleMouseWheel (event) {
                  const deltaX = event.deltaX;
486d4fda   梁灏   update Table
441
                  const $body = this.$refs.body;
3ef4dfb9   梁灏   update Table
442
443
444
445
446
447
  
                  if (deltaX > 0) {
                      $body.scrollLeft = $body.scrollLeft + 10;
                  } else {
                      $body.scrollLeft = $body.scrollLeft - 10;
                  }
52874e27   梁灏   update Table
448
              },
9f853e3e   梁灏   update Table
449
450
451
452
              sortData (data, type, index) {
                  const key = this.cloneColumns[index].key;
                  data.sort((a, b) => {
                      if (this.cloneColumns[index].sortMethod) {
da020a63   Rijn   Changed parameter...
453
                          return this.cloneColumns[index].sortMethod(a[key], b[key], type);
9f853e3e   梁灏   update Table
454
                      } else {
89670198   梁灏   publish 0.9.9-rc-5
455
456
457
458
459
                          if (type === 'asc') {
                              return a[key] > b[key] ? 1 : -1;
                          } else if (type === 'desc') {
                              return a[key] < b[key] ? 1 : -1;
                          }
9f853e3e   梁灏   update Table
460
461
462
463
                      }
                  });
                  return data;
              },
52874e27   梁灏   update Table
464
              handleSort (index, type) {
35ad3764   梁灏   update Table
465
466
467
                  this.cloneColumns.forEach((col) => col._sortType = 'normal');
  
                  const key = this.cloneColumns[index].key;
642299b9   梁灏   update Table
468
                  if (this.cloneColumns[index].sortable !== 'custom') {    // custom is for remote sort
9f853e3e   梁灏   update Table
469
                      if (type === 'normal') {
97edb2eb   梁灏   update Table
470
                          this.rebuildData = this.makeDataWithFilter();
9f853e3e   梁灏   update Table
471
472
                      } else {
                          this.rebuildData = this.sortData(this.rebuildData, type, index);
642299b9   梁灏   update Table
473
                      }
52874e27   梁灏   update Table
474
                  }
35ad3764   梁灏   update Table
475
476
477
478
479
480
                  this.cloneColumns[index]._sortType = type;
  
                  this.$emit('on-sort-change', {
                      column: JSON.parse(JSON.stringify(this.columns[this.cloneColumns[index]._index])),
                      key: key,
                      order: type
9f853e3e   梁灏   update Table
481
                  });
741b987a   梁灏   update Table
482
              },
adaeca88   梁灏   update Table
483
484
485
              handleFilterHide (index) {    // clear checked that not filter now
                  if (!this.cloneColumns[index]._isFiltered) this.cloneColumns[index]._filterChecked = [];
              },
cb31ede0   梁灏   update Table
486
487
488
              filterData (data, column) {
                  return data.filter((row) => {
                      let status = !column._filterChecked.length;
adaeca88   梁灏   update Table
489
490
491
492
493
494
                      for (let i = 0; i < column._filterChecked.length; i++) {
                          status = column.filterMethod(column._filterChecked[i], row);
                          if (status) break;
                      }
                      return status;
                  });
cb31ede0   梁灏   update Table
495
496
497
498
499
500
501
502
503
504
505
              },
              filterOtherData (data, index) {
                  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
506
                  let filterData = this.makeDataWithSort();
cb31ede0   梁灏   update Table
507
508
509
510
511
  
                  // filter others first, after filter this column
                  filterData = this.filterOtherData(filterData, index);
                  this.rebuildData = this.filterData(filterData, column);
  
adaeca88   梁灏   update Table
512
513
514
                  this.cloneColumns[index]._isFiltered = true;
                  this.cloneColumns[index]._filterVisible = false;
              },
45e7ed7e   梁灏   update Table
515
516
517
518
              handleFilterSelect (index, value) {
                  this.cloneColumns[index]._filterChecked = [value];
                  this.handleFilter(index);
              },
adaeca88   梁灏   update Table
519
520
              handleFilterReset (index) {
                  this.cloneColumns[index]._isFiltered = false;
45e7ed7e   梁灏   update Table
521
522
                  this.cloneColumns[index]._filterVisible = false;
                  this.cloneColumns[index]._filterChecked = [];
cb31ede0   梁灏   update Table
523
  
9f853e3e   梁灏   update Table
524
                  let filterData = this.makeDataWithSort();
cb31ede0   梁灏   update Table
525
526
                  filterData = this.filterOtherData(filterData, index);
                  this.rebuildData = filterData;
adaeca88   梁灏   update Table
527
              },
741b987a   梁灏   update Table
528
529
530
531
              makeData () {
                  let data = deepCopy(this.data);
                  data.forEach((row, index) => row._index = index);
                  return data;
d3dfdb26   梁灏   update Table
532
              },
9f853e3e   梁灏   update Table
533
534
535
536
              makeDataWithSort () {
                  let data = this.makeData();
                  let sortType = 'normal';
                  let sortIndex = -1;
2533a192   梁灏   update DatePicker
537
538
                  let isCustom = false;
  
9f853e3e   梁灏   update Table
539
540
541
542
                  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
543
                          isCustom = this.cloneColumns[i].sortable === 'custom';
9f853e3e   梁灏   update Table
544
545
546
                          break;
                      }
                  }
2533a192   梁灏   update DatePicker
547
                  if (sortType !== 'normal' && !isCustom) data =  this.sortData(data, sortType, sortIndex);
9f853e3e   梁灏   update Table
548
549
                  return data;
              },
97edb2eb   梁灏   update Table
550
551
552
553
554
555
556
557
558
559
              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
560
561
562
563
564
              makeObjData () {
                  let data = {};
                  this.data.forEach((row, index) => {
                      const newRow = deepCopy(row);// todo 直接替换
                      newRow._isHover = false;
c7315098   leonine   修复两个问题:
565
566
567
568
569
                      if(newRow._disabled){
                          newRow._isDisabled = newRow._disabled;
                      }else{
                          newRow._isDisabled = false;
                      }
2404849c   leonine   合并原作者更新
570
                      if (newRow._checked) {
03773f7e   梁灏   update
571
                          newRow._isChecked = newRow._checked;
2404849c   leonine   合并原作者更新
572
                      } else {
1594942f   leonine   itable 添加设置默认选中行的功能
573
574
                          newRow._isChecked = false;
                      }
2404849c   leonine   合并原作者更新
575
576
577
578
579
                      if (newRow._highlight) {
                          newRow._isHighlight = newRow._highlight;
                      } else {
                          newRow._isHighlight = false;
                      }
d3dfdb26   梁灏   update Table
580
581
582
                      data[index] = newRow;
                  });
                  return data;
35ad3764   梁灏   update Table
583
584
585
586
587
588
589
590
              },
              makeColumns () {
                  let columns = deepCopy(this.columns);
                  let left = [];
                  let right = [];
                  let center = [];
  
                  columns.forEach((column, index) => {
35ad3764   梁灏   update Table
591
                      column._index = index;
224a3ae5   梁灏   publish 0.9.9-rc-3
592
                      column._width = column.width ? column.width : '';    // update in handleResize()
99f80db0   梁灏   update Table
593
594
595
596
                      column._sortType = 'normal';
                      column._filterVisible = false;
                      column._isFiltered = false;
                      column._filterChecked = [];
35ad3764   梁灏   update Table
597
  
adaeca88   梁灏   update Table
598
599
600
601
602
                      if ('filterMultiple' in column) {
                          column._filterMultiple = column.filterMultiple;
                      } else {
                          column._filterMultiple = true;
                      }
5d0499ce   梁灏   update Table
603
604
605
606
                      if ('filteredValue' in column) {
                          column._filterChecked = column.filteredValue;
                          column._isFiltered = true;
                      }
adaeca88   梁灏   update Table
607
  
35ad3764   梁灏   update Table
608
609
610
611
612
613
614
615
616
                      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...
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
              },
              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 {
                      columns = this.columns;
                      if (!('original' in params)) params.original = true;
                      datas = params.original ? this.data : this.rebuildData;
                  }
  
                  let noHeader = false;
                  if ('noHeader' in params) noHeader = params.noHeader;
  
                  const data = Csv(columns, datas, ',', noHeader);
                  ExportCsv.download(params.filename, data);
2cb8a6d9   梁灏   commit Table comp...
643
644
              }
          },
486d4fda   梁灏   update Table
645
646
647
648
          created () {
              if (!this.content) this.currentContent = this.$parent;
              this.showSlotHeader = this.$refs.title !== undefined;
              this.showSlotFooter = this.$refs.footer !== undefined;
5d0499ce   梁灏   update Table
649
              this.rebuildData = this.makeDataWithSortAndFilter();
e7e8c8ff   梁灏   update Table
650
          },
486d4fda   梁灏   update Table
651
          mounted () {
a3547c1b   梁灏   update Table
652
              this.handleResize();
e7e8c8ff   梁灏   update Table
653
              this.fixedHeader();
adaeca88   梁灏   update Table
654
              this.$nextTick(() => this.ready = true);
744eb0af   梁灏   update Table comp...
655
656
657
658
              window.addEventListener('resize', this.handleResize, false);
          },
          beforeDestroy () {
              window.removeEventListener('resize', this.handleResize, false);
2cb8a6d9   梁灏   commit Table comp...
659
660
661
662
          },
          watch: {
              data: {
                  handler () {
d3dfdb26   梁灏   update Table
663
                      this.objData = this.makeObjData();
97edb2eb   梁灏   update Table
664
                      this.rebuildData = this.makeDataWithSortAndFilter();
a3547c1b   梁灏   update Table
665
                      this.handleResize();
2cb8a6d9   梁灏   commit Table comp...
666
667
668
669
670
                  },
                  deep: true
              },
              columns: {
                  handler () {
f2a051a1   梁灏   publish 0.9.9-rc-6
671
                      // todo 这里有性能问题,可能是左右固定计算属性影响的
35ad3764   梁灏   update Table
672
                      this.cloneColumns = this.makeColumns();
97edb2eb   梁灏   update Table
673
                      this.rebuildData = this.makeDataWithSortAndFilter();
a3547c1b   梁灏   update Table
674
                      this.handleResize();
2cb8a6d9   梁灏   commit Table comp...
675
676
                  },
                  deep: true
e7e8c8ff   梁灏   update Table
677
678
679
              },
              height () {
                  this.fixedHeader();
2cb8a6d9   梁灏   commit Table comp...
680
681
              }
          }
b0893113   jingsam   :art: add eslint
682
683
      };
  </script>