Blame view

src/components/tree/node.vue 6.14 KB
75c32d5f   梁灏   rebuild Tree
1
  <template>
eae3e936   Aresn   Tree support tran...
2
      <collapse-transition>
d44420be   Sergio Crisostomo   refactor and make...
3
          <ul :class="classes">
75c32d5f   梁灏   rebuild Tree
4
5
              <li>
                  <span :class="arrowClasses" @click="handleExpand">
d5e329ff   梁灏   fixed #4162
6
                      <Icon v-if="showArrow" type="ios-arrow-forward"></Icon>
929fdf5c   梁灏   update loading icon
7
                      <Icon v-if="showLoading" type="ios-loading" class="ivu-load-loop"></Icon>
75c32d5f   梁灏   rebuild Tree
8
9
                  </span>
                  <Checkbox
eae3e936   Aresn   Tree support tran...
10
11
                          v-if="showCheckbox"
                          :value="data.checked"
d44420be   Sergio Crisostomo   refactor and make...
12
                          :indeterminate="data.indeterminate"
eae3e936   Aresn   Tree support tran...
13
14
                          :disabled="data.disabled || data.disableCheckbox"
                          @click.native.prevent="handleCheck"></Checkbox>
97098fcd   梁灏   update Tree example
15
16
                  <Render v-if="data.render" :render="data.render" :data="data" :node="node"></Render>
                  <Render v-else-if="isParentRender" :render="parentRender" :data="data" :node="node"></Render>
174836c4   梁灏   update Tree Rende...
17
                  <span v-else :class="titleClasses" @click="handleSelect">{{ data.title }}</span>
75c32d5f   梁灏   rebuild Tree
18
                  <Tree-node
d44420be   Sergio Crisostomo   refactor and make...
19
                          v-if="data.expand"
56c7cc0e   vanppo   Add new props 'ch...
20
                          v-for="(item, i) in children"
da76a837   Sergio Crisostomo   fix dom rendering...
21
                          :key="i"
eae3e936   Aresn   Tree support tran...
22
                          :data="item"
eae3e936   Aresn   Tree support tran...
23
                          :multiple="multiple"
56c7cc0e   vanppo   Add new props 'ch...
24
25
                          :show-checkbox="showCheckbox"
                          :children-key="childrenKey">
75c32d5f   梁灏   rebuild Tree
26
27
28
                  </Tree-node>
              </li>
          </ul>
eae3e936   Aresn   Tree support tran...
29
      </collapse-transition>
75c32d5f   梁灏   rebuild Tree
30
31
32
  </template>
  <script>
      import Checkbox from '../checkbox/checkbox.vue';
64633e8c   梁灏   fixed #612
33
      import Icon from '../icon/icon.vue';
174836c4   梁灏   update Tree Rende...
34
      import Render from './render';
eae3e936   Aresn   Tree support tran...
35
      import CollapseTransition from '../base/collapse-transition';
75c32d5f   梁灏   rebuild Tree
36
      import Emitter from '../../mixins/emitter';
b31aab71   梁灏   Tree add async lo...
37
      import { findComponentUpward } from '../../utils/assist';
75c32d5f   梁灏   rebuild Tree
38
39
40
41
42
43
  
      const prefixCls = 'ivu-tree';
  
      export default {
          name: 'TreeNode',
          mixins: [ Emitter ],
9b24f1ab   梁灏   Tree add Render f...
44
          components: { Checkbox, Icon, CollapseTransition, Render },
75c32d5f   梁灏   rebuild Tree
45
46
47
48
49
50
51
52
53
54
55
          props: {
              data: {
                  type: Object,
                  default () {
                      return {};
                  }
              },
              multiple: {
                  type: Boolean,
                  default: false
              },
56c7cc0e   vanppo   Add new props 'ch...
56
57
58
59
              childrenKey: {
                  type: String,
                  default: 'children'
              },
75c32d5f   梁灏   rebuild Tree
60
61
62
              showCheckbox: {
                  type: Boolean,
                  default: false
75c32d5f   梁灏   rebuild Tree
63
64
65
66
              }
          },
          data () {
              return {
d44420be   Sergio Crisostomo   refactor and make...
67
                  prefixCls: prefixCls
75c32d5f   梁灏   rebuild Tree
68
69
              };
          },
75c32d5f   梁灏   rebuild Tree
70
71
72
73
          computed: {
              classes () {
                  return [
                      `${prefixCls}-children`
3c145e6f   梁灏   update Tree
74
                  ];
75c32d5f   梁灏   rebuild Tree
75
76
77
78
79
80
81
82
83
84
85
86
87
              },
              selectedCls () {
                  return [
                      {
                          [`${prefixCls}-node-selected`]: this.data.selected
                      }
                  ];
              },
              arrowClasses () {
                  return [
                      `${prefixCls}-arrow`,
                      {
                          [`${prefixCls}-arrow-disabled`]: this.data.disabled,
b31aab71   梁灏   Tree add async lo...
88
                          [`${prefixCls}-arrow-open`]: this.data.expand
75c32d5f   梁灏   rebuild Tree
89
90
91
92
93
94
95
96
97
98
                      }
                  ];
              },
              titleClasses () {
                  return [
                      `${prefixCls}-title`,
                      {
                          [`${prefixCls}-title-selected`]: this.data.selected
                      }
                  ];
b31aab71   梁灏   Tree add async lo...
99
100
              },
              showArrow () {
56c7cc0e   vanppo   Add new props 'ch...
101
                  return (this.data[this.childrenKey] && this.data[this.childrenKey].length) || ('loading' in this.data && !this.data.loading);
b31aab71   梁灏   Tree add async lo...
102
103
104
              },
              showLoading () {
                  return 'loading' in this.data && this.data.loading;
174836c4   梁灏   update Tree Rende...
105
106
107
108
109
110
111
112
113
114
115
116
              },
              isParentRender () {
                  const Tree = findComponentUpward(this, 'Tree');
                  return Tree && Tree.render;
              },
              parentRender () {
                  const Tree = findComponentUpward(this, 'Tree');
                  if (Tree && Tree.render) {
                      return Tree.render;
                  } else {
                      return null;
                  }
97098fcd   梁灏   update Tree example
117
118
119
120
              },
              node () {
                  const Tree = findComponentUpward(this, 'Tree');
                  if (Tree) {
6ff0e340   梁灏   update Tree Rende...
121
122
                      // 将所有的 node(即flatState)和当前 node 都传递
                      return [Tree.flatState, Tree.flatState.find(item => item.nodeKey === this.data.nodeKey)];
97098fcd   梁灏   update Tree example
123
                  } else {
6ff0e340   梁灏   update Tree Rende...
124
                      return [];
97098fcd   梁灏   update Tree example
125
                  }
56c7cc0e   vanppo   Add new props 'ch...
126
127
128
              },
              children () {
                  return this.data[this.childrenKey];
75c32d5f   梁灏   rebuild Tree
129
130
131
132
              }
          },
          methods: {
              handleExpand () {
b31aab71   梁灏   Tree add async lo...
133
134
135
136
                  const item = this.data;
                  if (item.disabled) return;
  
                  // async loading
56c7cc0e   vanppo   Add new props 'ch...
137
                  if (item[this.childrenKey].length === 0) {
b31aab71   梁灏   Tree add async lo...
138
139
                      const tree = findComponentUpward(this, 'Tree');
                      if (tree && tree.loadData) {
da76a837   Sergio Crisostomo   fix dom rendering...
140
141
142
143
                          this.$set(this.data, 'loading', true);
                          tree.loadData(item, children => {
                              this.$set(this.data, 'loading', false);
                              if (children.length) {
56c7cc0e   vanppo   Add new props 'ch...
144
                                  this.$set(this.data, this.childrenKey, children);
da76a837   Sergio Crisostomo   fix dom rendering...
145
                                  this.$nextTick(() => this.handleExpand());
b31aab71   梁灏   Tree add async lo...
146
147
148
149
150
151
                              }
                          });
                          return;
                      }
                  }
  
56c7cc0e   vanppo   Add new props 'ch...
152
                  if (item[this.childrenKey] && item[this.childrenKey].length) {
b31aab71   梁灏   Tree add async lo...
153
154
155
                      this.$set(this.data, 'expand', !this.data.expand);
                      this.dispatch('Tree', 'toggle-expand', this.data);
                  }
75c32d5f   梁灏   rebuild Tree
156
157
158
              },
              handleSelect () {
                  if (this.data.disabled) return;
d44420be   Sergio Crisostomo   refactor and make...
159
                  this.dispatch('Tree', 'on-selected', this.data.nodeKey);
75c32d5f   梁灏   rebuild Tree
160
161
              },
              handleCheck () {
d44420be   Sergio Crisostomo   refactor and make...
162
163
164
165
166
167
                  if (this.data.disabled) return;
                  const changes = {
                      checked: !this.data.checked && !this.data.indeterminate,
                      nodeKey: this.data.nodeKey
                  };
                  this.dispatch('Tree', 'on-check', changes);
75c32d5f   梁灏   rebuild Tree
168
              }
75c32d5f   梁灏   rebuild Tree
169
170
          }
      };
d44420be   Sergio Crisostomo   refactor and make...
171
  </script>