Blame view

src/components/table/table.vue 33.4 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"
e5337c81   梁灏   fixed some compon...
15
                  v-show="!((!!localeNoDataText && (!data || data.length === 0)) || (!!localeNoFilteredDataText && (!rebuildData || rebuildData.length === 0)))">
b8a43000   梁灏   update Table
16
                  <table-body
486d4fda   梁灏   update Table
17
                      ref="tbody"
7e8e6ef8   forfire   add dragdrop for tr
18
                      :drag="drag"
39311a50   梁灏   update Table
19
                      :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
20
                      :styleObject="tableStyle"
39311a50   梁灏   update Table
21
22
                      :columns="cloneColumns"
                      :data="rebuildData"
224a3ae5   梁灏   publish 0.9.9-rc-3
23
                      :columns-width="columnsWidth"
39311a50   梁灏   update Table
24
                      :obj-data="objData"></table-body>
b8a43000   梁灏   update Table
25
              </div>
2f7660b4   Rijn   fade table body w...
26
27
              <div
                  :class="[prefixCls + '-tip']"
e5337c81   梁灏   fixed some compon...
28
                  v-show="((!!localeNoDataText && (!data || data.length === 0)) || (!!localeNoFilteredDataText && (!rebuildData || rebuildData.length === 0)))">
2f7660b4   Rijn   fade table body w...
29
30
31
32
                  <table cellspacing="0" cellpadding="0" border="0">
                      <tbody>
                          <tr>
                              <td :style="{ 'height': bodyStyle.height }">
e5337c81   梁灏   fixed some compon...
33
34
                                  <span v-html="localeNoDataText" v-if="!data || data.length === 0"></span>
                                  <span v-html="localeNoFilteredDataText" v-else></span>
2f7660b4   Rijn   fade table body w...
35
36
37
38
39
                              </td>
                          </tr>
                      </tbody>
                  </table>
              </div>
a81dc06c   梁灏   publish 0.9.9-rc-4
40
              <div :class="[prefixCls + '-fixed']" :style="fixedTableStyle" v-if="isLeftFixed">
548eac43   梁灏   fixed #1387 and u...
41
                  <div :class="fixedHeaderClasses" v-if="showHeader">
45e7ed7e   梁灏   update Table
42
                      <table-head
5d0499ce   梁灏   update Table
43
                          fixed="left"
39311a50   梁灏   update Table
44
                          :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
45
                          :styleObject="fixedTableStyle"
39311a50   梁灏   update Table
46
47
                          :columns="leftFixedColumns"
                          :obj-data="objData"
68b308ee   梁灏   fixex #1353
48
                          :columns-width="columnsWidth"
39311a50   梁灏   update Table
49
                          :data="rebuildData"></table-head>
45e7ed7e   梁灏   update Table
50
                  </div>
486d4fda   梁灏   update Table
51
                  <div :class="[prefixCls + '-fixed-body']" :style="fixedBodyStyle" ref="fixedBody">
45e7ed7e   梁灏   update Table
52
                      <table-body
5d0499ce   梁灏   update Table
53
                          fixed="left"
7e8e6ef8   forfire   add dragdrop for tr
54
                          :drag="drag"
39311a50   梁灏   update Table
55
                          :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
56
                          :styleObject="fixedTableStyle"
39311a50   梁灏   update Table
57
58
                          :columns="leftFixedColumns"
                          :data="rebuildData"
224a3ae5   梁灏   publish 0.9.9-rc-3
59
                          :columns-width="columnsWidth"
39311a50   梁灏   update Table
60
                          :obj-data="objData"></table-body>
45e7ed7e   梁灏   update Table
61
                  </div>
b8a43000   梁灏   update Table
62
              </div>
a81dc06c   梁灏   publish 0.9.9-rc-4
63
              <div :class="[prefixCls + '-fixed-right']" :style="fixedRightTableStyle" v-if="isRightFixed">
548eac43   梁灏   fixed #1387 and u...
64
                  <div :class="fixedHeaderClasses" v-if="showHeader">
45e7ed7e   梁灏   update Table
65
                      <table-head
5d0499ce   梁灏   update Table
66
                          fixed="right"
39311a50   梁灏   update Table
67
                          :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
68
                          :styleObject="fixedRightTableStyle"
39311a50   梁灏   update Table
69
70
                          :columns="rightFixedColumns"
                          :obj-data="objData"
486d4fda   梁灏   update Table
71
                          :columns-width="columnsWidth"
39311a50   梁灏   update Table
72
                          :data="rebuildData"></table-head>
45e7ed7e   梁灏   update Table
73
                  </div>
486d4fda   梁灏   update Table
74
                  <div :class="[prefixCls + '-fixed-body']" :style="fixedBodyStyle" ref="fixedRightBody">
45e7ed7e   梁灏   update Table
75
                      <table-body
5d0499ce   梁灏   update Table
76
                          fixed="right"
7e8e6ef8   forfire   add dragdrop for tr
77
                          :drag="drag"
39311a50   梁灏   update Table
78
                          :prefix-cls="prefixCls"
486d4fda   梁灏   update Table
79
                          :styleObject="fixedRightTableStyle"
39311a50   梁灏   update Table
80
81
                          :columns="rightFixedColumns"
                          :data="rebuildData"
224a3ae5   梁灏   publish 0.9.9-rc-3
82
                          :columns-width="columnsWidth"
39311a50   梁灏   update Table
83
                          :obj-data="objData"></table-body>
45e7ed7e   梁灏   update Table
84
                  </div>
b8a43000   梁灏   update Table
85
              </div>
486d4fda   梁灏   update Table
86
              <div :class="[prefixCls + '-footer']" v-if="showSlotFooter" ref="footer"><slot name="footer"></slot></div>
abdec99d   梁灏   update Table
87
          </div>
300bd662   梁灏   fixed #704
88
89
90
          <Spin fix size="large" v-if="loading">
              <slot name="loading"></slot>
          </Spin>
2cb8a6d9   梁灏   commit Table comp...
91
92
93
      </div>
  </template>
  <script>
7f34c510   梁灏   update Table
94
95
      import tableHead from './table-head.vue';
      import tableBody from './table-body.vue';
300bd662   梁灏   fixed #704
96
      import Spin from '../spin/spin.vue';
3d6fa54b   梁灏   update Table
97
      import { oneOf, getStyle, deepCopy, getScrollBarSize } from '../../utils/assist';
f00b5343   梁灏   update Table
98
      import { on, off } from '../../utils/dom';
43509ad8   梁灏   Table support exp...
99
100
      import Csv from '../../utils/csv';
      import ExportCsv from './export-csv';
e5337c81   梁灏   fixed some compon...
101
      import Locale from '../../mixins/locale';
c5beedf8   梁灏   fixed #690
102
      import elementResizeDetectorMaker from 'element-resize-detector';
e5337c81   梁灏   fixed some compon...
103
  
2cb8a6d9   梁灏   commit Table comp...
104
105
      const prefixCls = 'ivu-table';
  
68b308ee   梁灏   fixex #1353
106
107
108
      let rowKey = 1;
      let columnKey = 1;
  
2cb8a6d9   梁灏   commit Table comp...
109
      export default {
486d4fda   梁灏   update Table
110
          name: 'Table',
e5337c81   梁灏   fixed some compon...
111
          mixins: [ Locale ],
300bd662   梁灏   fixed #704
112
          components: { tableHead, tableBody, Spin },
2cb8a6d9   梁灏   commit Table comp...
113
114
115
116
          props: {
              data: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
117
                      return [];
2cb8a6d9   梁灏   commit Table comp...
118
119
120
121
122
                  }
              },
              columns: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
123
                      return [];
2cb8a6d9   梁灏   commit Table comp...
124
125
126
127
                  }
              },
              size: {
                  validator (value) {
f2a051a1   梁灏   publish 0.9.9-rc-6
128
                      return oneOf(value, ['small', 'large', 'default']);
2cb8a6d9   梁灏   commit Table comp...
129
130
                  }
              },
3ef4dfb9   梁灏   update Table
131
132
133
              width: {
                  type: [Number, String]
              },
e7e8c8ff   梁灏   update Table
134
135
136
              height: {
                  type: [Number, String]
              },
2cb8a6d9   梁灏   commit Table comp...
137
138
139
140
141
142
143
144
              stripe: {
                  type: Boolean,
                  default: false
              },
              border: {
                  type: Boolean,
                  default: false
              },
2cb8a6d9   梁灏   commit Table comp...
145
146
147
148
              showHeader: {
                  type: Boolean,
                  default: true
              },
0d136465   梁灏   update Table
149
              highlightRow: {
2cb8a6d9   梁灏   commit Table comp...
150
151
                  type: Boolean,
                  default: false
e7e8c8ff   梁灏   update Table
152
153
154
155
156
157
              },
              rowClassName: {
                  type: Function,
                  default () {
                      return '';
                  }
d0e206c5   梁灏   Table add content...
158
              },
d8892603   梁灏   Table prop: conte...
159
              context: {
d0e206c5   梁灏   Table add content...
160
                  type: Object
cf7887ba   Rijn   Fixed #151
161
162
              },
              noDataText: {
e5337c81   梁灏   fixed some compon...
163
                  type: String
cf7887ba   Rijn   Fixed #151
164
165
              },
              noFilteredDataText: {
e5337c81   梁灏   fixed some compon...
166
                  type: String
2474ee59   Lawrence Lee   add hover-highlig...
167
              },
174158b1   Lawrence Lee   change disable-ho...
168
              disabledHover: {
2474ee59   Lawrence Lee   add hover-highlig...
169
                  type: Boolean
300bd662   梁灏   fixed #704
170
171
172
173
              },
              loading: {
                  type: Boolean,
                  default: false
7e8e6ef8   forfire   add dragdrop for tr
174
175
176
177
              },
              drag:{
                  type: Boolean,
                  default: false
2cb8a6d9   梁灏   commit Table comp...
178
179
180
181
              }
          },
          data () {
              return {
adaeca88   梁灏   update Table
182
                  ready: false,
744eb0af   梁灏   update Table comp...
183
                  tableWidth: 0,
224a3ae5   梁灏   publish 0.9.9-rc-3
184
                  columnsWidth: {},
2cb8a6d9   梁灏   commit Table comp...
185
                  prefixCls: prefixCls,
0d136465   梁灏   update Table
186
                  compiledUids: [],
35ad3764   梁灏   update Table
187
                  objData: this.makeObjData(),     // checkbox or highlight-row
5d0499ce   梁灏   update Table
188
                  rebuildData: [],    // for sort or filter
35ad3764   梁灏   update Table
189
                  cloneColumns: this.makeColumns(),
e7e8c8ff   梁灏   update Table
190
191
                  showSlotHeader: true,
                  showSlotFooter: true,
3d6fa54b   梁灏   update Table
192
                  bodyHeight: 0,
d16dce64   梁灏   fixed #193
193
                  bodyRealHeight: 0,
486d4fda   梁灏   update Table
194
                  scrollBarWidth: getScrollBarSize(),
d8892603   梁灏   Table prop: conte...
195
                  currentContext: this.context,
63f2e0f4   梁灏   fixed Table bug w...
196
                  cloneData: deepCopy(this.data)    // when Cell has a button to delete row data, clickCurrentRow will throw an error, so clone a data
b0893113   jingsam   :art: add eslint
197
              };
2cb8a6d9   梁灏   commit Table comp...
198
199
          },
          computed: {
e5337c81   梁灏   fixed some compon...
200
201
202
203
204
205
206
207
208
209
210
211
212
213
              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
214
215
216
217
              wrapClasses () {
                  return [
                      `${prefixCls}-wrapper`,
                      {
0f4ccf44   梁灏   release 0.9.9
218
219
220
                          [`${prefixCls}-hide`]: !this.ready,
                          [`${prefixCls}-with-header`]: this.showSlotHeader,
                          [`${prefixCls}-with-footer`]: this.showSlotFooter
45e7ed7e   梁灏   update Table
221
                      }
b0893113   jingsam   :art: add eslint
222
                  ];
45e7ed7e   梁灏   update Table
223
              },
2cb8a6d9   梁灏   commit Table comp...
224
225
226
227
              classes () {
                  return [
                      `${prefixCls}`,
                      {
0d136465   梁灏   update Table
228
229
                          [`${prefixCls}-${this.size}`]: !!this.size,
                          [`${prefixCls}-border`]: this.border,
e7e8c8ff   梁灏   update Table
230
                          [`${prefixCls}-stripe`]: this.stripe,
e7e8c8ff   梁灏   update Table
231
                          [`${prefixCls}-with-fixed-top`]: !!this.height
2cb8a6d9   梁灏   commit Table comp...
232
                      }
b0893113   jingsam   :art: add eslint
233
                  ];
0d136465   梁灏   update Table
234
              },
548eac43   梁灏   fixed #1387 and u...
235
236
237
238
239
240
241
242
              fixedHeaderClasses () {
                  return [
                      `${prefixCls}-fixed-header`,
                      {
                          [`${prefixCls}-fixed-header-with-empty`]: !this.rebuildData.length
                      }
                  ];
              },
e7e8c8ff   梁灏   update Table
243
244
              styles () {
                  let style = {};
3d6fa54b   梁灏   update Table
245
246
247
248
                  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
249
                  if (this.width) style.width = `${this.width}px`;
e7e8c8ff   梁灏   update Table
250
251
                  return style;
              },
0d136465   梁灏   update Table
252
253
              tableStyle () {
                  let style = {};
3d6fa54b   梁灏   update Table
254
                  if (this.tableWidth !== 0) {
d16dce64   梁灏   fixed #193
255
256
257
258
259
260
261
262
263
264
265
                      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
266
267
                      style.width = `${width}px`;
                  }
0d136465   梁灏   update Table
268
                  return style;
e7e8c8ff   梁灏   update Table
269
              },
7f34c510   梁灏   update Table
270
271
              fixedTableStyle () {
                  let style = {};
5d0499ce   梁灏   update Table
272
273
                  let width = 0;
                  this.leftFixedColumns.forEach((col) => {
224a3ae5   梁灏   publish 0.9.9-rc-3
274
                      if (col.fixed && col.fixed === 'left') width += col._width;
5d0499ce   梁灏   update Table
275
276
                  });
                  style.width = `${width}px`;
7f34c510   梁灏   update Table
277
278
279
280
                  return style;
              },
              fixedRightTableStyle () {
                  let style = {};
5d0499ce   梁灏   update Table
281
282
                  let width = 0;
                  this.rightFixedColumns.forEach((col) => {
224a3ae5   梁灏   publish 0.9.9-rc-3
283
                      if (col.fixed && col.fixed === 'right') width += col._width;
5d0499ce   梁灏   update Table
284
                  });
3d6fa54b   梁灏   update Table
285
                  width += this.scrollBarWidth;
5d0499ce   梁灏   update Table
286
                  style.width = `${width}px`;
7f34c510   梁灏   update Table
287
288
                  return style;
              },
e7e8c8ff   梁灏   update Table
289
290
              bodyStyle () {
                  let style = {};
3d6fa54b   梁灏   update Table
291
292
293
294
295
                  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
296
                  return style;
b8a43000   梁灏   update Table
297
298
299
              },
              fixedBodyStyle () {
                  let style = {};
3d6fa54b   梁灏   update Table
300
                  if (this.bodyHeight !== 0) {
d16dce64   梁灏   fixed #193
301
302
                      let height = this.bodyHeight + this.scrollBarWidth - 1;
  
b142865e   梁灏   fixed #2102
303
304
305
                      // #2102 里,如果 Table 没有设置 width,而是集成父级的 width,固定列也应该不包含滚动条高度,所以这里直接计算表格宽度
                      const tableWidth = parseInt(getStyle(this.$el, 'width')) - 1;
                      if ((this.width && this.width < this.tableWidth) || tableWidth < this.tableWidth){
d16dce64   梁灏   fixed #193
306
307
308
309
                          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
310
                  }
b8a43000   梁灏   update Table
311
                  return style;
35ad3764   梁灏   update Table
312
313
314
              },
              leftFixedColumns () {
                  let left = [];
5d0499ce   梁灏   update Table
315
                  let other = [];
35ad3764   梁灏   update Table
316
317
318
                  this.cloneColumns.forEach((col) => {
                      if (col.fixed && col.fixed === 'left') {
                          left.push(col);
5d0499ce   梁灏   update Table
319
320
                      } else {
                          other.push(col);
35ad3764   梁灏   update Table
321
322
                      }
                  });
5d0499ce   梁灏   update Table
323
                  return left.concat(other);
35ad3764   梁灏   update Table
324
325
326
              },
              rightFixedColumns () {
                  let right = [];
5d0499ce   梁灏   update Table
327
                  let other = [];
35ad3764   梁灏   update Table
328
329
330
                  this.cloneColumns.forEach((col) => {
                      if (col.fixed && col.fixed === 'right') {
                          right.push(col);
5d0499ce   梁灏   update Table
331
332
                      } else {
                          other.push(col);
35ad3764   梁灏   update Table
333
334
                      }
                  });
5d0499ce   梁灏   update Table
335
                  return right.concat(other);
a81dc06c   梁灏   publish 0.9.9-rc-4
336
337
338
339
340
341
              },
              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...
342
343
344
              }
          },
          methods: {
e7e8c8ff   梁灏   update Table
345
346
347
              rowClsName (index) {
                  return this.rowClassName(this.data[index], index);
              },
a3547c1b   梁灏   update Table
348
              handleResize () {
2cb8a6d9   梁灏   commit Table comp...
349
                  this.$nextTick(() => {
224a3ae5   梁灏   publish 0.9.9-rc-3
350
                      const allWidth = !this.columns.some(cell => !cell.width);    // each column set a width
a3547c1b   梁灏   update Table
351
                      if (allWidth) {
6a248176   Sergio Crisostomo   Add counter start...
352
                          this.tableWidth = this.columns.map(cell => cell.width).reduce((a, b) => a + b, 0);
a3547c1b   梁灏   update Table
353
354
                      } else {
                          this.tableWidth = parseInt(getStyle(this.$el, 'width')) - 1;
2cb8a6d9   梁灏   commit Table comp...
355
                      }
224a3ae5   梁灏   publish 0.9.9-rc-3
356
                      this.columnsWidth = {};
cbdac015   Aresn   Update table.vue
357
                      if (!this.$refs.tbody) return;
a3547c1b   梁灏   update Table
358
                      this.$nextTick(() => {
224a3ae5   梁灏   publish 0.9.9-rc-3
359
                          let columnsWidth = {};
192e2cb8   梁灏   update Table
360
                          let autoWidthIndex = -1;
224a3ae5   梁灏   publish 0.9.9-rc-3
361
                          if (allWidth) autoWidthIndex = this.cloneColumns.findIndex(cell => !cell.width);//todo 这行可能有问题
192e2cb8   梁灏   update Table
362
  
d0e206c5   梁灏   Table add content...
363
                          if (this.data.length) {
a1bdd0d7   Eric   fix issue: #2352
364
365
366
367
                              const $tr = this.$refs.tbody.$el.querySelectorAll('tbody tr');
                              if ($tr.length === 0) return;
                              const $td = $tr[0].children;
  
d0e206c5   梁灏   Table add content...
368
369
                              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
370
  
d0e206c5   梁灏   Table add content...
371
372
373
374
375
                                  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
376
  
d0e206c5   梁灏   Table add content...
377
                                  this.cloneColumns[i]._width = width;
224a3ae5   梁灏   publish 0.9.9-rc-3
378
  
d0e206c5   梁灏   Table add content...
379
380
                                  columnsWidth[column._index] = {
                                      width: width
b0893113   jingsam   :art: add eslint
381
                                  };
2cb8a6d9   梁灏   commit Table comp...
382
                              }
d0e206c5   梁灏   Table add content...
383
                              this.columnsWidth = columnsWidth;
192e2cb8   梁灏   update Table
384
                          }
744eb0af   梁灏   update Table comp...
385
                      });
d16dce64   梁灏   fixed #193
386
387
                      // 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...
388
389
                  });
              },
d3dfdb26   梁灏   update Table
390
              handleMouseIn (_index) {
174158b1   Lawrence Lee   change disable-ho...
391
                  if (this.disabledHover) return;
d3dfdb26   梁灏   update Table
392
393
                  if (this.objData[_index]._isHover) return;
                  this.objData[_index]._isHover = true;
abdec99d   梁灏   update Table
394
              },
d3dfdb26   梁灏   update Table
395
              handleMouseOut (_index) {
174158b1   Lawrence Lee   change disable-ho...
396
                  if (this.disabledHover) return;
d3dfdb26   梁灏   update Table
397
                  this.objData[_index]._isHover = false;
abdec99d   梁灏   update Table
398
              },
3aca3d56   梁灏   fixed #1372
399
400
              // 通用处理 highlightCurrentRow 和 clearCurrentRow
              handleCurrentRow (type, _index) {
0d136465   梁灏   update Table
401
                  let oldIndex = -1;
d3dfdb26   梁灏   update Table
402
403
404
405
                  for (let i in this.objData) {
                      if (this.objData[i]._isHighlight) {
                          oldIndex = parseInt(i);
                          this.objData[i]._isHighlight = false;
0d136465   梁灏   update Table
406
                      }
d3dfdb26   梁灏   update Table
407
                  }
3aca3d56   梁灏   fixed #1372
408
                  if (type === 'highlight') this.objData[_index]._isHighlight = true;
63f2e0f4   梁灏   fixed Table bug w...
409
                  const oldData = oldIndex < 0 ? null : JSON.parse(JSON.stringify(this.cloneData[oldIndex]));
3aca3d56   梁灏   fixed #1372
410
411
412
413
414
415
416
417
418
419
                  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
420
              },
da55375f   Rijn   Added click and d...
421
422
              clickCurrentRow (_index) {
                  this.highlightCurrentRow (_index);
ade5dbba   梁灏   fixed #693
423
                  this.$emit('on-row-click', JSON.parse(JSON.stringify(this.cloneData[_index])), _index);
da55375f   Rijn   Added click and d...
424
425
426
              },
              dblclickCurrentRow (_index) {
                  this.highlightCurrentRow (_index);
ade5dbba   梁灏   fixed #693
427
                  this.$emit('on-row-dblclick', JSON.parse(JSON.stringify(this.cloneData[_index])), _index);
da55375f   Rijn   Added click and d...
428
              },
0d136465   梁灏   update Table
429
430
              getSelection () {
                  let selectionIndexes = [];
d3dfdb26   梁灏   update Table
431
432
433
                  for (let i in this.objData) {
                      if (this.objData[i]._isChecked) selectionIndexes.push(parseInt(i));
                  }
0d136465   梁灏   update Table
434
435
                  return JSON.parse(JSON.stringify(this.data.filter((data, index) => selectionIndexes.indexOf(index) > -1)));
              },
d3dfdb26   梁灏   update Table
436
              toggleSelect (_index) {
741b987a   梁灏   update Table
437
                  let data = {};
d3dfdb26   梁灏   update Table
438
439
440
441
  
                  for (let i in this.objData) {
                      if (parseInt(i) === _index) {
                          data = this.objData[i];
741b987a   梁灏   update Table
442
443
444
                      }
                  }
                  const status = !data._isChecked;
d3dfdb26   梁灏   update Table
445
446
  
                  this.objData[_index]._isChecked = status;
0d136465   梁灏   update Table
447
448
  
                  const selection = this.getSelection();
b0f1c61f   Rijn   add a event @on-s...
449
                  this.$emit(status ? 'on-select' : 'on-select-cancel', selection, JSON.parse(JSON.stringify(this.data[_index])));
0d136465   梁灏   update Table
450
451
                  this.$emit('on-selection-change', selection);
              },
08fd628d   Aresn   Table support expand
452
453
454
455
456
457
458
459
460
461
462
463
              toggleExpand (_index) {
                  let data = {};
  
                  for (let i in this.objData) {
                      if (parseInt(i) === _index) {
                          data = this.objData[i];
                      }
                  }
                  const status = !data._isExpanded;
                  this.objData[_index]._isExpanded = status;
                  this.$emit('on-expand', JSON.parse(JSON.stringify(this.cloneData[_index])), status);
              },
3d9e4f20   梁灏   update Table
464
              selectAll (status) {
cd85c675   leonine   修改_checked=true 时...
465
466
467
468
469
470
                  // 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...
471
  
cd85c675   leonine   修改_checked=true 时...
472
473
                  // });
                  for(const data of this.rebuildData){
0dcc9482   leonine   itable 添加禁用某行选中的功能
474
                      if(this.objData[data._index]._isDisabled){
cd85c675   leonine   修改_checked=true 时...
475
                          continue;
0dcc9482   leonine   itable 添加禁用某行选中的功能
476
477
478
                      }else{
                          this.objData[data._index]._isChecked = status;
                      }
cd85c675   leonine   修改_checked=true 时...
479
                  }
52874e27   梁灏   update Table
480
                  const selection = this.getSelection();
3d9e4f20   梁灏   update Table
481
                  if (status) {
52874e27   梁灏   update Table
482
                      this.$emit('on-select-all', selection);
3d9e4f20   梁灏   update Table
483
                  }
52874e27   梁灏   update Table
484
                  this.$emit('on-selection-change', selection);
e7e8c8ff   梁灏   update Table
485
486
              },
              fixedHeader () {
b0893113   jingsam   :art: add eslint
487
                  if (this.height) {
e7e8c8ff   梁灏   update Table
488
                      this.$nextTick(() => {
486d4fda   梁灏   update Table
489
490
491
                          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
492
                          this.bodyHeight = this.height - titleHeight - headerHeight - footerHeight;
b0893113   jingsam   :art: add eslint
493
                      });
f2a051a1   梁灏   publish 0.9.9-rc-6
494
495
                  } else {
                      this.bodyHeight = 0;
e7e8c8ff   梁灏   update Table
496
                  }
abdec99d   梁灏   update Table
497
              },
99f80db0   梁灏   update Table
498
499
500
              hideColumnFilter () {
                  this.cloneColumns.forEach((col) => col._filterVisible = false);
              },
192e2cb8   梁灏   update Table
501
              handleBodyScroll (event) {
486d4fda   梁灏   update Table
502
503
504
                  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
505
                  this.hideColumnFilter();
192e2cb8   梁灏   update Table
506
              },
3ef4dfb9   梁灏   update Table
507
508
              handleMouseWheel (event) {
                  const deltaX = event.deltaX;
486d4fda   梁灏   update Table
509
                  const $body = this.$refs.body;
3ef4dfb9   梁灏   update Table
510
511
512
513
514
515
  
                  if (deltaX > 0) {
                      $body.scrollLeft = $body.scrollLeft + 10;
                  } else {
                      $body.scrollLeft = $body.scrollLeft - 10;
                  }
52874e27   梁灏   update Table
516
              },
9f853e3e   梁灏   update Table
517
518
519
520
              sortData (data, type, index) {
                  const key = this.cloneColumns[index].key;
                  data.sort((a, b) => {
                      if (this.cloneColumns[index].sortMethod) {
da020a63   Rijn   Changed parameter...
521
                          return this.cloneColumns[index].sortMethod(a[key], b[key], type);
9f853e3e   梁灏   update Table
522
                      } else {
89670198   梁灏   publish 0.9.9-rc-5
523
524
525
526
527
                          if (type === 'asc') {
                              return a[key] > b[key] ? 1 : -1;
                          } else if (type === 'desc') {
                              return a[key] < b[key] ? 1 : -1;
                          }
9f853e3e   梁灏   update Table
528
529
530
531
                      }
                  });
                  return data;
              },
b34e09b8   梁灏   fixed #2832
532
533
              handleSort (_index, type) {
                  const index = this.GetOriginalIndex(_index);
35ad3764   梁灏   update Table
534
535
536
                  this.cloneColumns.forEach((col) => col._sortType = 'normal');
  
                  const key = this.cloneColumns[index].key;
642299b9   梁灏   update Table
537
                  if (this.cloneColumns[index].sortable !== 'custom') {    // custom is for remote sort
9f853e3e   梁灏   update Table
538
                      if (type === 'normal') {
97edb2eb   梁灏   update Table
539
                          this.rebuildData = this.makeDataWithFilter();
9f853e3e   梁灏   update Table
540
541
                      } else {
                          this.rebuildData = this.sortData(this.rebuildData, type, index);
642299b9   梁灏   update Table
542
                      }
52874e27   梁灏   update Table
543
                  }
35ad3764   梁灏   update Table
544
545
546
547
548
549
                  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
550
                  });
741b987a   梁灏   update Table
551
              },
adaeca88   梁灏   update Table
552
553
554
              handleFilterHide (index) {    // clear checked that not filter now
                  if (!this.cloneColumns[index]._isFiltered) this.cloneColumns[index]._filterChecked = [];
              },
cb31ede0   梁灏   update Table
555
556
              filterData (data, column) {
                  return data.filter((row) => {
73ae27d8   梁灏   update Table filt...
557
                      //如果定义了远程过滤方法则忽略此方法
257bc4e6   H   filterRemote过滤时,单...
558
                      if (typeof column.filterRemote === 'function') return true;
73ae27d8   梁灏   update Table filt...
559
  
cb31ede0   梁灏   update Table
560
                      let status = !column._filterChecked.length;
adaeca88   梁灏   update Table
561
562
563
564
565
566
                      for (let i = 0; i < column._filterChecked.length; i++) {
                          status = column.filterMethod(column._filterChecked[i], row);
                          if (status) break;
                      }
                      return status;
                  });
cb31ede0   梁灏   update Table
567
568
              },
              filterOtherData (data, index) {
12bcf7bd   H   添加 remoteFilter方法...
569
                  let column = this.cloneColumns[index];
73ae27d8   梁灏   update Table filt...
570
571
                  if (typeof column.filterRemote === 'function') {
                      column.filterRemote.call(this.$parent, column._filterChecked, column.key, column);
12bcf7bd   H   添加 remoteFilter方法...
572
573
                  }
  
cb31ede0   梁灏   update Table
574
575
576
577
578
579
580
581
582
                  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
583
                  let filterData = this.makeDataWithSort();
cb31ede0   梁灏   update Table
584
585
586
587
588
  
                  // filter others first, after filter this column
                  filterData = this.filterOtherData(filterData, index);
                  this.rebuildData = this.filterData(filterData, column);
  
adaeca88   梁灏   update Table
589
590
                  this.cloneColumns[index]._isFiltered = true;
                  this.cloneColumns[index]._filterVisible = false;
6c634aa6   梁灏   fixed #2078
591
                  this.$emit('on-filter-change', column);
adaeca88   梁灏   update Table
592
              },
b34e09b8   梁灏   fixed #2832
593
594
595
596
597
598
599
600
601
602
603
604
              /**
               * #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
605
606
607
                  this.cloneColumns[index]._filterChecked = [value];
                  this.handleFilter(index);
              },
b34e09b8   梁灏   fixed #2832
608
609
              handleFilterReset (_index) {
                  const index = this.GetOriginalIndex(_index);
adaeca88   梁灏   update Table
610
                  this.cloneColumns[index]._isFiltered = false;
45e7ed7e   梁灏   update Table
611
612
                  this.cloneColumns[index]._filterVisible = false;
                  this.cloneColumns[index]._filterChecked = [];
cb31ede0   梁灏   update Table
613
  
9f853e3e   梁灏   update Table
614
                  let filterData = this.makeDataWithSort();
cb31ede0   梁灏   update Table
615
616
                  filterData = this.filterOtherData(filterData, index);
                  this.rebuildData = filterData;
6c634aa6   梁灏   fixed #2078
617
                  this.$emit('on-filter-change', this.cloneColumns[index]);
adaeca88   梁灏   update Table
618
              },
741b987a   梁灏   update Table
619
620
              makeData () {
                  let data = deepCopy(this.data);
68b308ee   梁灏   fixex #1353
621
622
623
624
                  data.forEach((row, index) => {
                      row._index = index;
                      row._rowKey = rowKey++;
                  });
741b987a   梁灏   update Table
625
                  return data;
d3dfdb26   梁灏   update Table
626
              },
9f853e3e   梁灏   update Table
627
628
629
630
              makeDataWithSort () {
                  let data = this.makeData();
                  let sortType = 'normal';
                  let sortIndex = -1;
2533a192   梁灏   update DatePicker
631
632
                  let isCustom = false;
  
9f853e3e   梁灏   update Table
633
634
635
636
                  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
637
                          isCustom = this.cloneColumns[i].sortable === 'custom';
9f853e3e   梁灏   update Table
638
639
640
                          break;
                      }
                  }
2533a192   梁灏   update DatePicker
641
                  if (sortType !== 'normal' && !isCustom) data =  this.sortData(data, sortType, sortIndex);
9f853e3e   梁灏   update Table
642
643
                  return data;
              },
97edb2eb   梁灏   update Table
644
645
646
647
648
649
650
651
652
653
              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
654
655
656
657
658
              makeObjData () {
                  let data = {};
                  this.data.forEach((row, index) => {
                      const newRow = deepCopy(row);// todo 直接替换
                      newRow._isHover = false;
08fd628d   Aresn   Table support expand
659
                      if (newRow._disabled) {
c7315098   leonine   修复两个问题:
660
                          newRow._isDisabled = newRow._disabled;
08fd628d   Aresn   Table support expand
661
                      } else {
c7315098   leonine   修复两个问题:
662
663
                          newRow._isDisabled = false;
                      }
2404849c   leonine   合并原作者更新
664
                      if (newRow._checked) {
03773f7e   梁灏   update
665
                          newRow._isChecked = newRow._checked;
2404849c   leonine   合并原作者更新
666
                      } else {
1594942f   leonine   itable 添加设置默认选中行的功能
667
668
                          newRow._isChecked = false;
                      }
08fd628d   Aresn   Table support expand
669
670
671
672
673
                      if (newRow._expanded) {
                          newRow._isExpanded = newRow._expanded;
                      } else {
                          newRow._isExpanded = false;
                      }
2404849c   leonine   合并原作者更新
674
675
676
677
678
                      if (newRow._highlight) {
                          newRow._isHighlight = newRow._highlight;
                      } else {
                          newRow._isHighlight = false;
                      }
d3dfdb26   梁灏   update Table
679
680
681
                      data[index] = newRow;
                  });
                  return data;
35ad3764   梁灏   update Table
682
683
684
685
686
687
688
689
              },
              makeColumns () {
                  let columns = deepCopy(this.columns);
                  let left = [];
                  let right = [];
                  let center = [];
  
                  columns.forEach((column, index) => {
35ad3764   梁灏   update Table
690
                      column._index = index;
68b308ee   梁灏   fixex #1353
691
                      column._columnKey = columnKey++;
224a3ae5   梁灏   publish 0.9.9-rc-3
692
                      column._width = column.width ? column.width : '';    // update in handleResize()
99f80db0   梁灏   update Table
693
694
695
696
                      column._sortType = 'normal';
                      column._filterVisible = false;
                      column._isFiltered = false;
                      column._filterChecked = [];
35ad3764   梁灏   update Table
697
  
adaeca88   梁灏   update Table
698
699
700
701
702
                      if ('filterMultiple' in column) {
                          column._filterMultiple = column.filterMultiple;
                      } else {
                          column._filterMultiple = true;
                      }
5d0499ce   梁灏   update Table
703
704
705
706
                      if ('filteredValue' in column) {
                          column._filterChecked = column.filteredValue;
                          column._isFiltered = true;
                      }
adaeca88   梁灏   update Table
707
  
835b37ff   梁灏   fixed #1403
708
709
710
711
                      if ('sortType' in column) {
                          column._sortType = column.sortType;
                      }
  
35ad3764   梁灏   update Table
712
713
714
715
716
717
718
719
720
                      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...
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
              },
              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;
  
fb847998   Sergio Crisostomo   Improve export to...
745
746
747
                  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
748
749
750
              },
              dragAndDrop(a,b) {
                  this.$emit('on-drag-drop', a,b);
2cb8a6d9   梁灏   commit Table comp...
751
752
              }
          },
486d4fda   梁灏   update Table
753
          created () {
d8892603   梁灏   Table prop: conte...
754
              if (!this.context) this.currentContext = this.$parent;
7409cb3c   梁灏   fixed #549
755
756
              this.showSlotHeader = this.$slots.header !== undefined;
              this.showSlotFooter = this.$slots.footer !== undefined;
5d0499ce   梁灏   update Table
757
              this.rebuildData = this.makeDataWithSortAndFilter();
e7e8c8ff   梁灏   update Table
758
          },
486d4fda   梁灏   update Table
759
          mounted () {
a3547c1b   梁灏   update Table
760
              this.handleResize();
e7e8c8ff   梁灏   update Table
761
              this.fixedHeader();
adaeca88   梁灏   update Table
762
              this.$nextTick(() => this.ready = true);
c5beedf8   梁灏   fixed #690
763
  
f00b5343   梁灏   update Table
764
              on(window, 'resize', this.handleResize);
c5beedf8   梁灏   fixed #690
765
766
767
              this.observer = elementResizeDetectorMaker();
              this.observer.listenTo(this.$el, this.handleResize);
  
67c9b1c8   梁灏   fixed #591
768
              this.$on('on-visible-change', (val) => {
a6eee4e5   梁灏   update Table
769
770
771
772
                  if (val) {
                      this.handleResize();
                      this.fixedHeader();
                  }
67c9b1c8   梁灏   fixed #591
773
              });
744eb0af   梁灏   update Table comp...
774
775
          },
          beforeDestroy () {
f00b5343   梁灏   update Table
776
              off(window, 'resize', this.handleResize);
c5beedf8   梁灏   fixed #690
777
              this.observer.removeListener(this.$el, this.handleResize);
2cb8a6d9   梁灏   commit Table comp...
778
779
780
781
          },
          watch: {
              data: {
                  handler () {
119eeafe   梁灏   fixed a Table bug
782
                      const oldDataLen = this.rebuildData.length;
d3dfdb26   梁灏   update Table
783
                      this.objData = this.makeObjData();
97edb2eb   梁灏   update Table
784
                      this.rebuildData = this.makeDataWithSortAndFilter();
a3547c1b   梁灏   update Table
785
                      this.handleResize();
119eeafe   梁灏   fixed a Table bug
786
787
788
                      if (!oldDataLen) {
                          this.fixedHeader();
                      }
63f2e0f4   梁灏   fixed Table bug w...
789
790
791
792
                      // here will trigger before clickCurrentRow, so use async
                      setTimeout(() => {
                          this.cloneData = deepCopy(this.data);
                      }, 0);
2cb8a6d9   梁灏   commit Table comp...
793
794
795
796
797
                  },
                  deep: true
              },
              columns: {
                  handler () {
f2a051a1   梁灏   publish 0.9.9-rc-6
798
                      // todo 这里有性能问题,可能是左右固定计算属性影响的
35ad3764   梁灏   update Table
799
                      this.cloneColumns = this.makeColumns();
97edb2eb   梁灏   update Table
800
                      this.rebuildData = this.makeDataWithSortAndFilter();
a3547c1b   梁灏   update Table
801
                      this.handleResize();
2cb8a6d9   梁灏   commit Table comp...
802
803
                  },
                  deep: true
e7e8c8ff   梁灏   update Table
804
805
806
              },
              height () {
                  this.fixedHeader();
2cb8a6d9   梁灏   commit Table comp...
807
808
              }
          }
b0893113   jingsam   :art: add eslint
809
810
      };
  </script>