Blame view

src/components/transfer/transfer.vue 6.38 KB
77f7bb95   梁灏   add Transfer comp...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  <template>
      <div :class="classes">
          <List
              v-ref:left
              :prefix-cls="prefixCls + '-list'"
              :data="leftData"
              :render-format="renderFormat"
              :checked-keys.sync="leftCheckedKeys"
              :valid-keys-count.sync="leftValidKeysCount"
              :style="listStyle"
              :title="titles[0]"
              :filterable="filterable"
              :filter-placeholder="filterPlaceholder"
              :filter-method="filterMethod"
              :not-found-text="notFoundText">
              <slot></slot>
          </List><Operation
              :prefix-cls="prefixCls"
              :operations="operations"
              :left-active="leftValidKeysCount > 0"
              :right-active="rightValidKeysCount > 0"></Operation><List
              v-ref:right
              :prefix-cls="prefixCls + '-list'"
              :data="rightData"
              :render-format="renderFormat"
              :checked-keys.sync="rightCheckedKeys"
              :valid-keys-count.sync="rightValidKeysCount"
              :style="listStyle"
              :title="titles[1]"
              :filterable="filterable"
              :filter-placeholder="filterPlaceholder"
              :filter-method="filterMethod"
              :not-found-text="notFoundText">
              <slot></slot>
          </List>
      </div>
  </template>
  <script>
      import List from './list.vue';
      import Operation from './operation.vue';
012cbf28   梁灏   update locale
41
      import { t } from '../../locale';
77f7bb95   梁灏   add Transfer comp...
42
43
44
45
46
47
48
49
50
  
      const prefixCls = 'ivu-transfer';
  
      export default {
          components: { List, Operation },
          props: {
              data: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
51
                      return [];
77f7bb95   梁灏   add Transfer comp...
52
53
54
55
56
57
58
59
60
61
62
                  }
              },
              renderFormat: {
                  type: Function,
                  default (item) {
                      return item.label || item.key;
                  }
              },
              targetKeys: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
63
                      return [];
77f7bb95   梁灏   add Transfer comp...
64
65
66
67
68
                  }
              },
              selectedKeys: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
69
                      return [];
77f7bb95   梁灏   add Transfer comp...
70
71
72
73
74
                  }
              },
              listStyle: {
                  type: Object,
                  default () {
b0893113   jingsam   :art: add eslint
75
                      return {};
77f7bb95   梁灏   add Transfer comp...
76
77
78
79
80
                  }
              },
              titles: {
                  type: Array,
                  default () {
012cbf28   梁灏   update locale
81
                      return [t('i.transfer.titles.source'), t('i.transfer.titles.target')];
77f7bb95   梁灏   add Transfer comp...
82
83
84
85
86
                  }
              },
              operations: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
87
                      return [];
77f7bb95   梁灏   add Transfer comp...
88
89
90
91
92
93
94
95
                  }
              },
              filterable: {
                  type: Boolean,
                  default: false
              },
              filterPlaceholder: {
                  type: String,
012cbf28   梁灏   update locale
96
97
98
                  default () {
                      return t('i.transfer.filterPlaceholder');
                  }
77f7bb95   梁灏   add Transfer comp...
99
100
101
102
103
104
105
106
107
108
              },
              filterMethod: {
                  type: Function,
                  default (data, query) {
                      const type = ('label' in data) ? 'label' : 'key';
                      return data[type].indexOf(query) > -1;
                  }
              },
              notFoundText: {
                  type: String,
012cbf28   梁灏   update locale
109
110
111
                  default () {
                      return t('i.transfer.notFoundText');
                  }
77f7bb95   梁灏   add Transfer comp...
112
113
114
115
116
117
118
119
120
              }
          },
          data () {
              return {
                  prefixCls: prefixCls,
                  leftData: [],
                  rightData: [],
                  leftCheckedKeys: [],
                  rightCheckedKeys: []
b0893113   jingsam   :art: add eslint
121
              };
77f7bb95   梁灏   add Transfer comp...
122
123
124
125
126
          },
          computed: {
              classes () {
                  return [
                      `${prefixCls}`
b0893113   jingsam   :art: add eslint
127
                  ];
77f7bb95   梁灏   add Transfer comp...
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
              },
              leftValidKeysCount () {
                  return this.getValidKeys('left').length;
              },
              rightValidKeysCount () {
                  return this.getValidKeys('right').length;
              }
          },
          methods: {
              getValidKeys (direction) {
                  return this[`${direction}Data`].filter(data => !data.disabled && this[`${direction}CheckedKeys`].indexOf(data.key) > -1).map(data => data.key);
              },
              splitData (init = false) {
                  this.leftData = [...this.data];
                  this.rightData = [];
                  if (this.targetKeys.length > 0) {
                      this.targetKeys.forEach((targetKey) => {
                          this.rightData.push(
                                  this.leftData.filter((data, index) => {
                                      if (data.key === targetKey) {
                                          this.leftData.splice(index, 1);
                                          return true;
                                      }
                                      return false;
                                  })[0]);
                      });
                  }
                  if (init) {
                      this.splitSelectedKey();
                  }
              },
              splitSelectedKey () {
                  const selectedKeys = this.selectedKeys;
                  if (selectedKeys.length > 0) {
                      this.leftCheckedKeys = this.leftData
                              .filter(data => selectedKeys.indexOf(data.key) > -1)
                              .map(data => data.key);
                      this.rightCheckedKeys = this.rightData
                              .filter(data => selectedKeys.indexOf(data.key) > -1)
                              .map(data => data.key);
                  }
              },
              moveTo (direction) {
                  const targetKeys = this.targetKeys;
                  const opposite = direction === 'left' ? 'right' : 'left';
                  const moveKeys = this.getValidKeys(opposite);
                  const newTargetKeys = direction === 'right' ?
                          moveKeys.concat(targetKeys) :
                          targetKeys.filter(targetKey => !moveKeys.some(checkedKey => targetKey === checkedKey));
  
                  this.$refs[opposite].toggleSelectAll(false);
                  this.$emit('on-change', newTargetKeys, direction, moveKeys);
afd3509a   梁灏   update Transfer
180
                  this.$dispatch('on-form-change', newTargetKeys, direction, moveKeys);
77f7bb95   梁灏   add Transfer comp...
181
182
183
184
185
186
187
188
189
190
              }
          },
          watch: {
              targetKeys () {
                  this.splitData(false);
              }
          },
          created () {
              this.splitData(true);
          }
b0893113   jingsam   :art: add eslint
191
192
      };
  </script>