Blame view

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