ant-design-vue/components/radio/Radio.vue

108 lines
2.7 KiB
Vue
Raw Normal View History

2017-10-27 06:04:48 +00:00
<template>
<label :class="classes">
<span :class="checkboxClass">
<input :name="name" type="radio" :disabled="disabled"
2017-11-02 04:07:20 +00:00
:class="`${prefixCls}-input`" :checked="stateChecked"
2017-10-27 06:04:48 +00:00
@change="handleChange"
/>
<span :class="`${prefixCls}-inner`" />
</span>
<span v-if="hasDefaultSlot">
<slot></slot>
</span>
</label>
</template>
<script>
2018-01-12 08:10:41 +00:00
import hasProp from '../_util/props-util'
2017-10-27 06:04:48 +00:00
export default {
name: 'Radio',
props: {
prefixCls: {
default: 'ant-radio',
type: String,
},
2017-11-02 04:07:20 +00:00
defaultChecked: Boolean,
checked: { type: Boolean, default: undefined },
2017-10-27 06:04:48 +00:00
disabled: Boolean,
isGroup: Boolean,
value: [String, Number, Boolean],
name: String,
},
model: {
prop: 'checked',
},
2017-11-07 03:58:47 +00:00
inject: {
radioGroupContext: { default: undefined },
},
2017-11-02 04:07:20 +00:00
data () {
2017-11-07 03:58:47 +00:00
const { radioGroupContext, checked, defaultChecked, value } = this
let stateChecked
if (radioGroupContext && radioGroupContext.stateValue) {
stateChecked = radioGroupContext.stateValue === value
}
2017-11-02 04:07:20 +00:00
return {
2017-11-07 03:58:47 +00:00
stateChecked: stateChecked === undefined
2017-12-27 10:15:11 +00:00
? !hasProp(this, 'checked') ? defaultChecked : checked
2017-11-07 03:58:47 +00:00
: stateChecked,
2017-11-02 04:07:20 +00:00
}
},
2017-10-27 06:04:48 +00:00
computed: {
hasDefaultSlot () {
return !!this.$slots.default
},
classes () {
2017-11-02 04:07:20 +00:00
const { prefixCls, disabled, stateChecked } = this
2017-10-27 06:04:48 +00:00
return {
[`${prefixCls}-wrapper`]: true,
2017-11-02 04:07:20 +00:00
[`${prefixCls}-wrapper-checked`]: stateChecked,
2017-10-27 06:04:48 +00:00
[`${prefixCls}-wrapper-disabled`]: disabled,
}
},
checkboxClass () {
2017-11-02 04:07:20 +00:00
const { prefixCls, disabled, stateChecked } = this
2017-10-27 06:04:48 +00:00
return {
[`${prefixCls}`]: true,
2017-11-02 04:07:20 +00:00
[`${prefixCls}-checked`]: stateChecked,
2017-10-27 06:04:48 +00:00
[`${prefixCls}-disabled`]: disabled,
}
},
},
methods: {
handleChange (event) {
2017-11-02 04:07:20 +00:00
const targetChecked = event.target.checked
2017-11-07 03:58:47 +00:00
this.$emit('input', targetChecked)
2017-12-27 10:15:11 +00:00
const { name, value, radioGroupContext, stateChecked } = this
if ((!hasProp(this, 'checked') && !radioGroupContext) || (radioGroupContext && radioGroupContext.value === undefined)) {
2017-11-02 04:07:20 +00:00
this.stateChecked = targetChecked
}
2017-10-27 06:04:48 +00:00
const target = {
name,
value,
2017-11-07 03:58:47 +00:00
checked: !stateChecked,
2017-10-27 06:04:48 +00:00
}
2017-11-07 03:58:47 +00:00
if (this.radioGroupContext) {
this.radioGroupContext.handleChange({ target })
} else {
this.$emit('change', {
target,
stopPropagation () {
event.stopPropagation()
},
preventDefault () {
event.preventDefault()
},
})
2017-10-27 06:04:48 +00:00
}
},
},
2017-11-02 04:07:20 +00:00
watch: {
checked (val) {
this.stateChecked = val
},
2017-11-07 03:58:47 +00:00
'radioGroupContext.stateValue': function (stateValue) {
this.stateChecked = stateValue === this.value
},
2017-11-02 04:07:20 +00:00
},
2017-10-27 06:04:48 +00:00
}
</script>