Blame view

src/components/checkbox/checkbox.vue 4.65 KB
7fa943eb   梁灏   init
1
  <template>
98252a9e   Xotic750   Checkbox WIP
2
3
4
5
      <label 
          :class="wrapClasses" 
          @keydown.space.prevent="$el.click()"
          tabindex="0">
7fa943eb   梁灏   init
6
7
8
9
10
          <span :class="checkboxClasses">
              <span :class="innerClasses"></span>
              <input
                  v-if="group"
                  type="checkbox"
98252a9e   Xotic750   Checkbox WIP
11
                   tabindex="-1"
7fa943eb   梁灏   init
12
13
                  :class="inputClasses"
                  :disabled="disabled"
cbe03a12   梁灏   support Checkbox
14
                  :value="label"
7fa943eb   梁灏   init
15
                  v-model="model"
0460a1e8   梁灏   fixed #812
16
                  :name="name"
7fa943eb   梁灏   init
17
18
19
20
                  @change="change">
              <input
                  v-if="!group"
                  type="checkbox"
98252a9e   Xotic750   Checkbox WIP
21
                   tabindex="-1"
7fa943eb   梁灏   init
22
23
                  :class="inputClasses"
                  :disabled="disabled"
cbe03a12   梁灏   support Checkbox
24
                  :checked="currentValue"
0460a1e8   梁灏   fixed #812
25
                  :name="name"
7fa943eb   梁灏   init
26
27
                  @change="change">
          </span>
7c2ed52c   梁灏   update Checkbox
28
          <slot><span v-if="showSlot">{{ label }}</span></slot>
7fa943eb   梁灏   init
29
30
31
      </label>
  </template>
  <script>
77f1cc2e   梁灏   Checkbox add size...
32
      import { findComponentUpward, oneOf } from '../../utils/assist';
cd78c9c4   梁灏   some comps suppor...
33
34
      import Emitter from '../../mixins/emitter';
  
7fa943eb   梁灏   init
35
36
37
      const prefixCls = 'ivu-checkbox';
  
      export default {
cbe03a12   梁灏   support Checkbox
38
          name: 'Checkbox',
cd78c9c4   梁灏   some comps suppor...
39
          mixins: [ Emitter ],
7fa943eb   梁灏   init
40
41
42
43
44
45
          props: {
              disabled: {
                  type: Boolean,
                  default: false
              },
              value: {
a81253ec   Rijn   Update checkbox t...
46
47
48
49
50
51
52
53
54
                  type: [String, Number, Boolean],
                  default: false
              },
              trueValue: {
                  type: [String, Number, Boolean],
                  default: true
              },
              falseValue: {
                  type: [String, Number, Boolean],
7fa943eb   梁灏   init
55
                  default: false
b923c818   梁灏   update Tree
56
              },
cbe03a12   梁灏   support Checkbox
57
58
59
              label: {
                  type: [String, Number, Boolean]
              },
b923c818   梁灏   update Tree
60
61
62
              indeterminate: {
                  type: Boolean,
                  default: false
77f1cc2e   梁灏   Checkbox add size...
63
64
65
66
67
              },
              size: {
                  validator (value) {
                      return oneOf(value, ['small', 'large', 'default']);
                  }
0460a1e8   梁灏   fixed #812
68
69
70
              },
              name: {
                  type: String
7fa943eb   梁灏   init
71
72
73
74
75
              }
          },
          data () {
              return {
                  model: [],
cbe03a12   梁灏   support Checkbox
76
                  currentValue: this.value,
71699f6b   梁灏   optimize Checkbox...
77
                  group: false,
99cde29d   梁灏   update Checkbox
78
79
                  showSlot: true,
                  parent: findComponentUpward(this, 'CheckboxGroup')
b0893113   jingsam   :art: add eslint
80
              };
7fa943eb   梁灏   init
81
82
83
84
85
86
87
          },
          computed: {
              wrapClasses () {
                  return [
                      `${prefixCls}-wrapper`,
                      {
                          [`${prefixCls}-group-item`]: this.group,
cbe03a12   梁灏   support Checkbox
88
                          [`${prefixCls}-wrapper-checked`]: this.currentValue,
77f1cc2e   梁灏   Checkbox add size...
89
90
                          [`${prefixCls}-wrapper-disabled`]: this.disabled,
                          [`${prefixCls}-${this.size}`]: !!this.size
7fa943eb   梁灏   init
91
                      }
b0893113   jingsam   :art: add eslint
92
                  ];
7fa943eb   梁灏   init
93
94
95
96
97
              },
              checkboxClasses () {
                  return [
                      `${prefixCls}`,
                      {
cbe03a12   梁灏   support Checkbox
98
                          [`${prefixCls}-checked`]: this.currentValue,
b923c818   梁灏   update Tree
99
100
                          [`${prefixCls}-disabled`]: this.disabled,
                          [`${prefixCls}-indeterminate`]: this.indeterminate
7fa943eb   梁灏   init
101
                      }
b0893113   jingsam   :art: add eslint
102
                  ];
7fa943eb   梁灏   init
103
104
105
106
107
108
109
110
              },
              innerClasses () {
                  return `${prefixCls}-inner`;
              },
              inputClasses () {
                  return `${prefixCls}-input`;
              }
          },
cbe03a12   梁灏   support Checkbox
111
          mounted () {
99cde29d   梁灏   update Checkbox
112
113
              this.parent = findComponentUpward(this, 'CheckboxGroup');
              if (this.parent) this.group = true;
7fa943eb   梁灏   init
114
115
              if (!this.group) {
                  this.updateModel();
7c2ed52c   梁灏   update Checkbox
116
                  this.showSlot = this.$slots.default !== undefined;
01b8d340   梁灏   fixed #778
117
118
              } else {
                  this.parent.updateModel(true);
7fa943eb   梁灏   init
119
120
121
122
              }
          },
          methods: {
              change (event) {
7fa943eb   梁灏   init
123
124
125
126
                  if (this.disabled) {
                      return false;
                  }
  
cbe03a12   梁灏   support Checkbox
127
128
                  const checked = event.target.checked;
                  this.currentValue = checked;
a81253ec   Rijn   Update checkbox t...
129
130
131
  
                  let value = checked ? this.trueValue : this.falseValue;
                  this.$emit('input', value);
7fa943eb   梁灏   init
132
133
  
                  if (this.group) {
9c83f0e5   Aresn   fixed Checkbox bug
134
                      this.parent.change(this.model);
7fa943eb   梁灏   init
135
                  } else {
a81253ec   Rijn   Update checkbox t...
136
137
                      this.$emit('on-change', value);
                      this.dispatch('FormItem', 'on-form-change', value);
7fa943eb   梁灏   init
138
139
140
                  }
              },
              updateModel () {
a81253ec   Rijn   Update checkbox t...
141
                  this.currentValue = this.value === this.trueValue;
7fa943eb   梁灏   init
142
143
144
              }
          },
          watch: {
a81253ec   Rijn   Update checkbox t...
145
146
147
148
              value (val) {
                  if (val !== this.trueValue && val !== this.falseValue) {
                      throw 'Value should be trueValue or falseValue.';
                  }
7fa943eb   梁灏   init
149
150
151
                  this.updateModel();
              }
          }
b0893113   jingsam   :art: add eslint
152
153
      };
  </script>