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

74 lines
2.1 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2022-12-08 11:04:25 +00:00
<div :class="['p-checkbox p-component', { 'p-checkbox-focused': focused }]" @click="onClick">
<div class="p-hidden-accessible">
<input ref="input" type="checkbox" :checked="checked" :disabled="$attrs.disabled" :tabindex="$attrs.disabled ? null : '0'" :aria-label="checkboxAriaLabel" @focus="onFocus($event)" @blur="onBlur($event)" @keydown="onKeydown" />
</div>
<div ref="box" :class="['p-checkbox-box p-component', { 'p-highlight': checked, 'p-disabled': $attrs.disabled, 'p-focus': focused }]">
<component :is="rowCheckboxIconTemplate || 'CheckIcon'" :checked="checked" class="p-checkbox-icon" />
2022-09-06 12:03:37 +00:00
</div>
</div>
</template>
<script>
import CheckIcon from 'primevue/icon/check';
2022-12-08 11:04:25 +00:00
import { DomHandler } from 'primevue/utils';
2022-09-06 12:03:37 +00:00
export default {
name: 'RowCheckbox',
emits: ['change'],
props: {
2022-09-14 11:26:01 +00:00
value: null,
checked: null,
rowCheckboxIconTemplate: {
type: Function,
default: null
}
2022-09-06 12:03:37 +00:00
},
data() {
return {
focused: false
};
},
methods: {
onClick(event) {
if (!this.$attrs.disabled) {
this.$emit('change', {
originalEvent: event,
data: this.value
});
2022-12-08 11:04:25 +00:00
DomHandler.focus(this.$refs.input);
2022-09-06 12:03:37 +00:00
}
2022-12-08 11:04:25 +00:00
event.preventDefault();
2022-09-06 12:03:37 +00:00
},
onFocus() {
this.focused = true;
},
onBlur() {
this.focused = false;
2022-12-08 11:04:25 +00:00
},
onKeydown(event) {
switch (event.code) {
case 'Space': {
this.onClick(event);
break;
}
default:
break;
}
}
},
computed: {
checkboxAriaLabel() {
return this.$primevue.config.locale.aria ? (this.checked ? this.$primevue.config.locale.aria.selectRow : this.$primevue.config.locale.aria.unselectRow) : undefined;
2022-09-06 12:03:37 +00:00
}
},
components: {
CheckIcon: CheckIcon
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>