<template>
|
<label :class="wrapClasses">
|
<span :class="radioClasses">
|
<span :class="innerClasses"></span>
|
<input
|
type="radio"
|
:class="inputClasses"
|
:disabled="itemDisabled"
|
:checked="currentValue"
|
:name="groupName"
|
@change="change"
|
@focus="onFocus"
|
@blur="onBlur">
|
</span><slot>{{ label }}</slot>
|
</label>
|
</template>
|
<script>
|
import { findComponentUpward, oneOf } from '../../utils/assist';
|
import Emitter from '../../mixins/emitter';
|
import mixinsForm from '../../mixins/form';
|
|
const prefixCls = 'ivu-radio';
|
|
export default {
|
name: 'Radio',
|
mixins: [ Emitter, mixinsForm ],
|
props: {
|
value: {
|
type: [String, Number, Boolean],
|
default: false
|
},
|
trueValue: {
|
type: [String, Number, Boolean],
|
default: true
|
},
|
falseValue: {
|
type: [String, Number, Boolean],
|
default: false
|
},
|
label: {
|
type: [String, Number]
|
},
|
disabled: {
|
type: Boolean,
|
default: false
|
},
|
size: {
|
validator (value) {
|
return oneOf(value, ['small', 'large', 'default']);
|
},
|
default () {
|
return !this.$IVIEW || this.$IVIEW.size === '' ? 'default' : this.$IVIEW.size;
|
}
|
},
|
name: {
|
type: String
|
},
|
// 4.0.0
|
border: {
|
type: Boolean,
|
default: false
|
}
|
},
|
data () {
|
return {
|
currentValue: this.value,
|
group: false,
|
groupName: this.name,
|
parent: findComponentUpward(this, 'RadioGroup'),
|
focusWrapper: false,
|
focusInner: false
|
};
|
},
|
computed: {
|
wrapClasses () {
|
return [
|
`${prefixCls}-wrapper`,
|
{
|
[`${prefixCls}-group-item`]: this.group,
|
[`${prefixCls}-wrapper-checked`]: this.currentValue,
|
[`${prefixCls}-wrapper-disabled`]: this.itemDisabled,
|
[`${prefixCls}-${this.size}`]: !!this.size,
|
[`${prefixCls}-focus`]: this.focusWrapper,
|
[`${prefixCls}-border`]: this.border
|
}
|
];
|
},
|
radioClasses () {
|
return [
|
`${prefixCls}`,
|
{
|
[`${prefixCls}-checked`]: this.currentValue,
|
[`${prefixCls}-disabled`]: this.itemDisabled
|
}
|
];
|
},
|
innerClasses () {
|
return [
|
`${prefixCls}-inner`,
|
{
|
[`${prefixCls}-focus`]: this.focusInner
|
}
|
];
|
},
|
inputClasses () {
|
return `${prefixCls}-input`;
|
}
|
},
|
mounted () {
|
if (this.parent) {
|
this.group = true;
|
if (this.name && this.name !== this.parent.name) {
|
/* eslint-disable no-console */
|
if (console.warn) {
|
console.warn('[iview] Name does not match Radio Group name.');
|
}
|
/* eslint-enable no-console */
|
} else {
|
this.groupName = this.parent.name;
|
}
|
}
|
|
if (this.group) {
|
this.parent.updateValue();
|
} else {
|
this.updateValue();
|
}
|
},
|
methods: {
|
change (event) {
|
if (this.itemDisabled) {
|
return false;
|
}
|
|
const checked = event.target.checked;
|
this.currentValue = checked;
|
|
const value = checked ? this.trueValue : this.falseValue;
|
this.$emit('input', value);
|
|
if (this.group) {
|
if (this.label !== undefined) {
|
this.parent.change({
|
value: this.label,
|
checked: this.value
|
});
|
}
|
} else {
|
this.$emit('on-change', value);
|
this.dispatch('FormItem', 'on-form-change', value);
|
}
|
},
|
updateValue () {
|
this.currentValue = this.value === this.trueValue;
|
},
|
onBlur () {
|
this.focusWrapper = false;
|
this.focusInner = false;
|
},
|
onFocus () {
|
if (this.group && this.parent.type === 'button') {
|
this.focusWrapper = true;
|
} else {
|
this.focusInner = true;
|
}
|
}
|
},
|
watch: {
|
value (val) {
|
if (val === this.trueValue || val === this.falseValue) {
|
this.updateValue();
|
} else {
|
throw 'Value should be trueValue or falseValue.';
|
}
|
}
|
}
|
};
|
</script>
|