vant/packages/checkbox/index.vue
2017-09-20 20:10:47 +08:00

113 lines
2.5 KiB
Vue

<template>
<div
:class="[
'van-checkbox',
`van-checkbox--${shape}`, {
'van-checkbox--disabled': isDisabled
}]">
<span class="van-checkbox__input">
<input
v-model="currentValue"
type="checkbox"
class="van-checkbox__control"
:disabled="isDisabled"
/>
<van-icon name="success" />
</span>
<span class="van-checkbox__label" @click="onClickLabel">
<slot></slot>
</span>
</div>
</template>
<script>
import Icon from '../Icon';
import findParent from '../mixins/findParent';
export default {
name: 'van-checkbox',
components: {
[Icon.name]: Icon
},
mixins: [findParent],
props: {
value: {},
disabled: Boolean,
name: [String, Number],
shape: {
type: String,
default: 'round'
}
},
watch: {
value(val) {
this.$emit('change', val);
}
},
computed: {
// checkbox 是否在 van-checkbox-group 中
isGroup() {
return !!this.findParentByComponentName('van-checkbox-group');
},
currentValue: {
get() {
return this.isGroup && this.parentGroup ? this.parentGroup.value.indexOf(this.name) !== -1 : this.value;
},
set(val) {
if (this.isGroup && this.parentGroup) {
const parentValue = this.parentGroup.value.slice();
if (val) {
/* istanbul ignore else */
if (parentValue.indexOf(this.name) === -1) {
parentValue.push(this.name);
this.parentGroup.$emit('input', parentValue);
}
} else {
const index = parentValue.indexOf(this.name);
/* istanbul ignore else */
if (index !== -1) {
parentValue.splice(index, 1);
this.parentGroup.$emit('input', parentValue);
}
}
} else {
this.$emit('input', val);
}
}
},
isChecked() {
const currentValue = this.currentValue;
console.log('this.currentValue:', this.currentValue);
if ({}.toString.call(currentValue) === '[object Boolean]') {
return currentValue;
} else if (currentValue !== null && currentValue !== undefined) {
return currentValue === this.name;
}
},
isDisabled() {
return this.isGroup && this.parentGroup
? this.parentGroup.disabled
: this.disabled;
}
},
methods: {
onClickLabel() {
if (this.isDisabled) {
return;
}
this.currentValue = !this.currentValue;
}
}
};
</script>