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

90 lines
2.0 KiB
Vue
Raw Normal View History

2017-10-27 06:04:48 +00:00
<script>
import Radio from './Radio.vue'
export default {
name: 'RadioGroup',
props: {
prefixCls: {
default: 'ant-radio-group',
type: String,
},
2017-11-02 04:07:20 +00:00
defaultValue: {
default: undefined,
type: [String, Number],
},
value: {
default: undefined,
type: [String, Number],
},
2017-10-27 06:04:48 +00:00
size: {
default: 'default',
validator (value) {
return ['large', 'default', 'small'].includes(value)
},
},
options: {
default: () => [],
type: Array,
},
2017-11-07 03:58:47 +00:00
disabled: Boolean,
name: String,
2017-10-27 06:04:48 +00:00
},
data () {
2017-11-02 04:07:20 +00:00
const { value, defaultValue } = this
2017-10-27 06:04:48 +00:00
return {
2017-11-02 04:07:20 +00:00
stateValue: value || defaultValue,
2017-10-27 06:04:48 +00:00
}
},
model: {
prop: 'value',
},
2017-11-07 03:58:47 +00:00
provide () {
return {
radioGroupContext: this,
}
2017-10-27 06:04:48 +00:00
},
2017-11-07 03:58:47 +00:00
computed: {
radioOptions () {
const { disabled } = this
return this.options.map(option => {
return typeof option === 'string'
? { label: option, value: option }
: { ...option, disabled: option.disabled === undefined ? disabled : option.disabled }
})
},
classes () {
const { prefixCls, size } = this
return {
[`${prefixCls}`]: true,
[`${prefixCls}-${size}`]: size,
}
},
2017-10-27 06:04:48 +00:00
},
methods: {
handleChange (event) {
const target = event.target
2017-11-02 04:07:20 +00:00
const { value: targetValue } = target
if (this.value === undefined) {
this.stateValue = targetValue
}
this.$emit('input', targetValue)
2017-11-03 10:46:18 +00:00
this.$emit('change', event)
2017-10-27 06:04:48 +00:00
},
},
watch: {
value (val) {
2017-11-02 04:07:20 +00:00
this.stateValue = val
2017-10-27 06:04:48 +00:00
},
},
2018-01-15 10:54:26 +00:00
render () {
const { radioOptions, classes, $slots, name } = this
return (
<div class={classes}>
{radioOptions.map(({ value, disabled, label }) =>
<Radio key={value} value={value} disabled={disabled} name={name}>{label}</Radio>)}
{ radioOptions.length === 0 && ($slots.default || []).filter(c => c.tag || c.text.trim() !== '')}
</div>
)
2017-10-27 06:04:48 +00:00
},
}
</script>