Blame view

src/components/cascader/caspanel.vue 4.53 KB
c463ab87   梁灏   add Cascader
1
  <template>
47a7f21d   梁灏   support Cascader
2
3
4
5
      <span>
          <ul v-if="data && data.length" :class="[prefixCls + '-menu']">
              <Casitem
                  v-for="item in data"
8ac8d1ed   梁灏   修复警告
6
                  :key="item"
47a7f21d   梁灏   support Cascader
7
8
9
10
11
12
13
                  :prefix-cls="prefixCls"
                  :data="item"
                  :tmp-item="tmpItem"
                  @click.native.stop="handleClickItem(item)"
                  @mouseenter.native.stop="handleHoverItem(item)"></Casitem>
          </ul><Caspanel v-if="sublist && sublist.length" :prefix-cls="prefixCls" :data="sublist" :disabled="disabled" :trigger="trigger" :change-on-select="changeOnSelect"></Caspanel>
      </span>
c463ab87   梁灏   add Cascader
14
15
16
  </template>
  <script>
      import Casitem from './casitem.vue';
47a7f21d   梁灏   support Cascader
17
      import Emitter from '../../mixins/emitter';
c463ab87   梁灏   add Cascader
18
19
20
  
      export default {
          name: 'Caspanel',
47a7f21d   梁灏   support Cascader
21
          mixins: [ Emitter ],
c463ab87   梁灏   add Cascader
22
23
24
25
26
          components: { Casitem },
          props: {
              data: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
27
                      return [];
c463ab87   梁灏   add Cascader
28
29
                  }
              },
c463ab87   梁灏   add Cascader
30
31
              disabled: Boolean,
              changeOnSelect: Boolean,
bd4e3b9b   梁灏   update Cascader
32
              trigger: String,
c463ab87   梁灏   add Cascader
33
34
35
36
37
              prefixCls: String
          },
          data () {
              return {
                  tmpItem: {},
47a7f21d   梁灏   support Cascader
38
39
                  result: [],
                  sublist: []
b0893113   jingsam   :art: add eslint
40
              };
c463ab87   梁灏   add Cascader
41
          },
47a7f21d   梁灏   support Cascader
42
43
44
45
46
          watch: {
              data () {
                  this.sublist = [];
              }
          },
c463ab87   梁灏   add Cascader
47
48
          methods: {
              handleClickItem (item) {
bd4e3b9b   梁灏   update Cascader
49
                  if (this.trigger !== 'click' && item.children) return;
c463ab87   梁灏   add Cascader
50
51
52
                  this.handleTriggerItem(item);
              },
              handleHoverItem (item) {
bd4e3b9b   梁灏   update Cascader
53
                  if (this.trigger !== 'hover' || !item.children) return;
c463ab87   梁灏   add Cascader
54
55
                  this.handleTriggerItem(item);
              },
bd4e3b9b   梁灏   update Cascader
56
              handleTriggerItem (item, fromInit = false) {
c463ab87   梁灏   add Cascader
57
58
                  if (item.disabled) return;
  
83b73885   梁灏   fixed #718
59
                  // return value back recursion  // 向上递归,设置临时选中值(并非真实选中)
bd4e3b9b   梁灏   update Cascader
60
61
62
63
                  const backItem = this.getBaseItem(item);
                  this.tmpItem = backItem;
                  this.emitUpdate([backItem]);
  
c463ab87   梁灏   add Cascader
64
65
                  if (item.children && item.children.length){
                      this.sublist = item.children;
47a7f21d   梁灏   support Cascader
66
67
68
69
70
71
  //                    this.$dispatch('on-result-change', false, this.changeOnSelect, fromInit);
                      this.dispatch('Cascader', 'on-result-change', {
                          lastValue: false,
                          changeOnSelect: this.changeOnSelect,
                          fromInit: fromInit
                      });
c463ab87   梁灏   add Cascader
72
73
                  } else {
                      this.sublist = [];
47a7f21d   梁灏   support Cascader
74
75
76
77
78
79
  //                    this.$dispatch('on-result-change', true, this.changeOnSelect, fromInit);
                      this.dispatch('Cascader', 'on-result-change', {
                          lastValue: true,
                          changeOnSelect: this.changeOnSelect,
                          fromInit: fromInit
                      });
c463ab87   梁灏   add Cascader
80
                  }
c463ab87   梁灏   add Cascader
81
82
83
              },
              updateResult (item) {
                  this.result = [this.tmpItem].concat(item);
bd4e3b9b   梁灏   update Cascader
84
                  this.emitUpdate(this.result);
c463ab87   梁灏   add Cascader
85
86
87
88
89
90
91
92
              },
              getBaseItem (item) {
                  let backItem = Object.assign({}, item);
                  if (backItem.children) {
                      delete backItem.children;
                  }
  
                  return backItem;
bd4e3b9b   梁灏   update Cascader
93
94
95
96
97
98
99
              },
              emitUpdate (result) {
                  if (this.$parent.$options.name === 'Caspanel') {
                      this.$parent.updateResult(result);
                  } else {
                      this.$parent.$parent.updateResult(result);
                  }
c463ab87   梁灏   add Cascader
100
101
              }
          },
47a7f21d   梁灏   support Cascader
102
103
104
          mounted () {
              this.$on('on-find-selected', (params) => {
                  const val = params.value;
bd4e3b9b   梁灏   update Cascader
105
106
107
108
109
110
111
                  let value = [...val];
                  for (let i = 0; i < value.length; i++) {
                      for (let j = 0; j < this.data.length; j++) {
                          if (value[i] === this.data[j].value) {
                              this.handleTriggerItem(this.data[j], true);
                              value.splice(0, 1);
                              this.$nextTick(() => {
47a7f21d   梁灏   support Cascader
112
113
114
                                  this.broadcast('Caspanel', 'on-find-selected', {
                                      value: value
                                  });
bd4e3b9b   梁灏   update Cascader
115
116
117
118
119
                              });
                              return false;
                          }
                      }
                  }
47a7f21d   梁灏   support Cascader
120
121
              });
              this.$on('on-clear', () => {
165bb7c9   梁灏   update Cascader
122
123
                  this.sublist = [];
                  this.tmpItem = {};
47a7f21d   梁灏   support Cascader
124
              });
c463ab87   梁灏   add Cascader
125
          }
b0893113   jingsam   :art: add eslint
126
127
      };
  </script>