Blame view

src/components/table/cell.vue 4.19 KB
a3547c1b   梁灏   update Table
1
  <template>
87a400d8   梁灏   update Table
2
      <div :class="classes" ref="cell">
741b987a   梁灏   update Table
3
          <template v-if="renderType === 'index'">{{naturalIndex + 1}}</template>
3ef4dfb9   梁灏   update Table
4
          <template v-if="renderType === 'selection'">
486d4fda   梁灏   update Table
5
              <Checkbox :value="checked" @on-change="toggleSelect" :disabled="disabled"></Checkbox>
3ef4dfb9   梁灏   update Table
6
          </template>
486d4fda   梁灏   update Table
7
          <template v-if="renderType === 'normal'"><span v-html="row[column.key]"></span></template>
a3547c1b   梁灏   update Table
8
9
10
      </div>
  </template>
  <script>
486d4fda   梁灏   update Table
11
      import Vue from 'vue';
3ef4dfb9   梁灏   update Table
12
13
      import Checkbox from '../checkbox/checkbox.vue';
  
a3547c1b   梁灏   update Table
14
      export default {
486d4fda   梁灏   update Table
15
          name: 'TableCell',
3ef4dfb9   梁灏   update Table
16
          components: { Checkbox },
a3547c1b   梁灏   update Table
17
18
19
20
          props: {
              prefixCls: String,
              row: Object,
              column: Object,
741b987a   梁灏   update Table
21
22
              naturalIndex: Number,    // index of rebuildData
              index: Number,           // _index of data
7f34c510   梁灏   update Table
23
              checked: Boolean,
87379c82   leonine   去掉禁用行的 tr>td 的dis...
24
              disabled: Boolean,
5d0499ce   梁灏   update Table
25
26
27
28
              fixed: {
                  type: [Boolean, String],
                  default: false
              }
a3547c1b   梁灏   update Table
29
30
31
32
          },
          data () {
              return {
                  renderType: '',
d0e206c5   梁灏   Table add content...
33
                  uid: -1,
d8892603   梁灏   Table prop: conte...
34
                  context: this.$parent.$parent.currentContext
b0893113   jingsam   :art: add eslint
35
              };
a3547c1b   梁灏   update Table
36
          },
3ef4dfb9   梁灏   update Table
37
38
39
40
41
          computed: {
              classes () {
                  return [
                      `${this.prefixCls}-cell`,
                      {
eedcba58   Rijn   Added ellipsis pr...
42
43
                          [`${this.prefixCls}-hidden`]: !this.fixed && this.column.fixed && (this.column.fixed === 'left' || this.column.fixed === 'right'),
                          [`${this.prefixCls}-cell-ellipsis`]: this.column.ellipsis || false
3ef4dfb9   梁灏   update Table
44
                      }
b0893113   jingsam   :art: add eslint
45
                  ];
3ef4dfb9   梁灏   update Table
46
47
              }
          },
a3547c1b   梁灏   update Table
48
49
50
          methods: {
              compile () {
                  if (this.column.render) {
d8892603   梁灏   Table prop: conte...
51
                      const $parent = this.context;
a3547c1b   梁灏   update Table
52
53
54
                      const template = this.column.render(this.row, this.column, this.index);
                      const cell = document.createElement('div');
                      cell.innerHTML = template;
99d0429e   梁灏   update Button & T...
55
  
a3547c1b   梁灏   update Table
56
                      this.$el.innerHTML = '';
486d4fda   梁灏   update Table
57
                      let methods = {};
c0b2524d   梁灏   update Table cell...
58
                      Object.keys($parent).forEach(key => {
99d0429e   梁灏   update Button & T...
59
                          const func = $parent[key];
39847b89   梁灏   fixed #454
60
                          if (typeof(func) === 'function' && (func.name  === 'boundFn' || func.name === 'n')) {
99d0429e   梁灏   update Button & T...
61
                              methods[key] = func;
c0b2524d   梁灏   update Table cell...
62
63
                          }
                      });
486d4fda   梁灏   update Table
64
                      const res = Vue.compile(cell.outerHTML);
99d0429e   梁灏   update Button & T...
65
                      // todo 临时解决方案
64f99c05   梁灏   Table support ren...
66
67
68
69
70
71
72
  
                      // 获取父组件使用的局部 component
                      const components = {};
                      Object.getOwnPropertyNames($parent.$options.components).forEach(item => {
                          components[item] = $parent.$options.components[item];
                      });
  
87a400d8   梁灏   update Table
73
                      const component = new Vue({
486d4fda   梁灏   update Table
74
75
                          render: res.render,
                          staticRenderFns: res.staticRenderFns,
99d0429e   梁灏   update Button & T...
76
77
78
                          methods: methods,
                          data () {
                              return $parent._data;
64f99c05   梁灏   Table support ren...
79
80
                          },
                          components: components
486d4fda   梁灏   update Table
81
                      });
aa43b8c8   梁灏   fixed #438
82
83
                      component.row = this.row;
                      component.column = this.column;
99d0429e   梁灏   update Button & T...
84
  
87a400d8   梁灏   update Table
85
86
                      const Cell = component.$mount();
                      this.$refs.cell.appendChild(Cell.$el);
a3547c1b   梁灏   update Table
87
88
89
                  }
              },
              destroy () {
99d0429e   梁灏   update Button & T...
90
  
3ef4dfb9   梁灏   update Table
91
              },
741b987a   梁灏   update Table
92
93
              toggleSelect () {
                  this.$parent.$parent.toggleSelect(this.index);
a3547c1b   梁灏   update Table
94
95
              }
          },
486d4fda   梁灏   update Table
96
          created () {
a3547c1b   梁灏   update Table
97
98
              if (this.column.type === 'index') {
                  this.renderType = 'index';
3ef4dfb9   梁灏   update Table
99
100
              } else if (this.column.type === 'selection') {
                  this.renderType = 'selection';
a3547c1b   梁灏   update Table
101
102
103
104
105
106
              } else if (this.column.render) {
                  this.renderType = 'render';
              } else {
                  this.renderType = 'normal';
              }
          },
486d4fda   梁灏   update Table
107
108
109
110
          mounted () {
              this.$nextTick(() => {
                  this.compile();
              });
a3547c1b   梁灏   update Table
111
112
113
114
115
          },
          beforeDestroy () {
              this.destroy();
          },
          watch: {
741b987a   梁灏   update Table
116
              naturalIndex () {
a3547c1b   梁灏   update Table
117
118
119
120
                  this.destroy();
                  this.compile();
              }
          }
b0893113   jingsam   :art: add eslint
121
122
      };
  </script>