Blame view

src/components/transfer/transfer.vue 6.75 KB
77f7bb95   梁灏   add Transfer comp...
1
2
3
  <template>
      <div :class="classes">
          <List
5b19b5f5   梁灏   support Transfer
4
              ref="left"
77f7bb95   梁灏   add Transfer comp...
5
6
7
              :prefix-cls="prefixCls + '-list'"
              :data="leftData"
              :render-format="renderFormat"
5b19b5f5   梁灏   support Transfer
8
9
10
              :checked-keys="leftCheckedKeys"
              @on-checked-keys-change="handleLeftCheckedKeysChange"
              :valid-keys-count="leftValidKeysCount"
77f7bb95   梁灏   add Transfer comp...
11
12
13
14
15
16
17
18
19
20
21
22
              :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
5b19b5f5   梁灏   support Transfer
23
              ref="right"
77f7bb95   梁灏   add Transfer comp...
24
25
26
              :prefix-cls="prefixCls + '-list'"
              :data="rightData"
              :render-format="renderFormat"
5b19b5f5   梁灏   support Transfer
27
28
29
              :checked-keys="rightCheckedKeys"
              @on-checked-keys-change="handleRightCheckedKeysChange"
              :valid-keys-count="rightValidKeysCount"
77f7bb95   梁灏   add Transfer comp...
30
31
32
33
34
35
              :style="listStyle"
              :title="titles[1]"
              :filterable="filterable"
              :filter-placeholder="filterPlaceholder"
              :filter-method="filterMethod"
              :not-found-text="notFoundText">
5b19b5f5   梁灏   support Transfer
36
              <slot name="right"></slot>
77f7bb95   梁灏   add Transfer comp...
37
38
39
40
41
42
          </List>
      </div>
  </template>
  <script>
      import List from './list.vue';
      import Operation from './operation.vue';
012cbf28   梁灏   update locale
43
      import { t } from '../../locale';
77f7bb95   梁灏   add Transfer comp...
44
45
46
47
48
49
50
51
52
  
      const prefixCls = 'ivu-transfer';
  
      export default {
          components: { List, Operation },
          props: {
              data: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
53
                      return [];
77f7bb95   梁灏   add Transfer comp...
54
55
56
57
58
59
60
61
62
63
64
                  }
              },
              renderFormat: {
                  type: Function,
                  default (item) {
                      return item.label || item.key;
                  }
              },
              targetKeys: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
65
                      return [];
77f7bb95   梁灏   add Transfer comp...
66
67
68
69
70
                  }
              },
              selectedKeys: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
71
                      return [];
77f7bb95   梁灏   add Transfer comp...
72
73
74
75
76
                  }
              },
              listStyle: {
                  type: Object,
                  default () {
b0893113   jingsam   :art: add eslint
77
                      return {};
77f7bb95   梁灏   add Transfer comp...
78
79
80
81
82
                  }
              },
              titles: {
                  type: Array,
                  default () {
012cbf28   梁灏   update locale
83
                      return [t('i.transfer.titles.source'), t('i.transfer.titles.target')];
77f7bb95   梁灏   add Transfer comp...
84
85
86
87
88
                  }
              },
              operations: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
89
                      return [];
77f7bb95   梁灏   add Transfer comp...
90
91
92
93
94
95
96
97
                  }
              },
              filterable: {
                  type: Boolean,
                  default: false
              },
              filterPlaceholder: {
                  type: String,
012cbf28   梁灏   update locale
98
99
100
                  default () {
                      return t('i.transfer.filterPlaceholder');
                  }
77f7bb95   梁灏   add Transfer comp...
101
102
103
104
105
106
107
108
109
110
              },
              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
111
112
113
                  default () {
                      return t('i.transfer.notFoundText');
                  }
77f7bb95   梁灏   add Transfer comp...
114
115
116
117
118
119
120
121
122
              }
          },
          data () {
              return {
                  prefixCls: prefixCls,
                  leftData: [],
                  rightData: [],
                  leftCheckedKeys: [],
                  rightCheckedKeys: []
b0893113   jingsam   :art: add eslint
123
              };
77f7bb95   梁灏   add Transfer comp...
124
125
126
127
128
          },
          computed: {
              classes () {
                  return [
                      `${prefixCls}`
b0893113   jingsam   :art: add eslint
129
                  ];
77f7bb95   梁灏   add Transfer comp...
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
180
181
              },
              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);
5b19b5f5   梁灏   support Transfer
182
183
184
185
186
187
188
189
                  // todo 事件
  //                this.$dispatch('on-form-change', newTargetKeys, direction, moveKeys);
              },
              handleLeftCheckedKeysChange (keys) {
                  this.leftCheckedKeys = keys;
              },
              handleRightCheckedKeysChange (keys) {
                  this.rightCheckedKeys = keys;
77f7bb95   梁灏   add Transfer comp...
190
191
192
193
194
195
196
197
198
199
              }
          },
          watch: {
              targetKeys () {
                  this.splitData(false);
              }
          },
          created () {
              this.splitData(true);
          }
b0893113   jingsam   :art: add eslint
200
201
      };
  </script>