primevue-mirror/components/lib/datatable/RowRadioButton.vue

64 lines
1.8 KiB
Vue
Executable File

<template>
<RadioButton :modelValue="checked" :disabled="$attrs.disabled" :name="name" @change="onChange" :unstyled="unstyled" :pt="getColumnPT('rowRadiobutton')" />
</template>
<script>
import BaseComponent from 'primevue/basecomponent';
import RadioButton from 'primevue/radiobutton';
import { mergeProps } from 'vue';
export default {
name: 'RowRadioButton',
hostName: 'DataTable',
extends: BaseComponent,
emits: ['change'],
props: {
value: null,
checked: null,
name: null,
column: null,
index: {
type: Number,
default: null
},
unstyled: {
type: Boolean,
default: undefined
}
},
methods: {
getColumnPT(key) {
const columnMetaData = {
props: this.column.props,
parent: {
instance: this,
props: this.$props,
state: this.$data
},
context: {
index: this.index,
checked: this.checked,
disabled: this.$attrs.disabled
}
};
return mergeProps(this.ptm(`column.${key}`, { column: columnMetaData }), this.ptm(`column.${key}`, columnMetaData), this.ptmo(this.getColumnProp(), key, columnMetaData));
},
getColumnProp() {
return this.column.props && this.column.props.pt ? this.column.props.pt : undefined; //@todo:
},
onChange(event) {
if (!this.$attrs.disabled) {
this.$emit('change', {
originalEvent: event,
data: this.value
});
}
}
},
components: {
RadioButton
}
};
</script>