Blame view

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