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

91 lines
3.0 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<div :class="['p-checkbox p-component', { 'p-checkbox-focused': focused, 'p-disabled': disabled }]" @click="onClick" @keydown.space.prevent="onClick" v-bind="getColumnPTOptions('headerCheckboxWrapper')">
<div class="p-hidden-accessible" v-bind="getColumnPTOptions('hiddenHeaderInputWrapper')">
<input
ref="input"
type="checkbox"
:checked="checked"
:disabled="disabled"
:tabindex="disabled ? null : '0'"
:aria-label="headerCheckboxAriaLabel"
@focus="onFocus($event)"
@blur="onBlur($event)"
v-bind="getColumnPTOptions('hiddenHeaderInput')"
/>
2022-12-08 11:04:25 +00:00
</div>
<div ref="box" :class="['p-checkbox-box p-component', { 'p-highlight': checked, 'p-disabled': disabled, 'p-focus': focused }]" v-bind="getColumnPTOptions('headerCheckbox')">
<component v-if="headerCheckboxIconTemplate" :is="headerCheckboxIconTemplate" :checked="checked" class="p-checkbox-icon" />
<CheckIcon v-else-if="!headerCheckboxIconTemplate && !!checked" class="p-checkbox-icon" v-bind="getColumnPTOptions('headerCheckboxIcon')" />
2022-09-06 12:03:37 +00:00
</div>
</div>
</template>
<script>
2023-05-08 14:08:06 +00:00
import BaseComponent from 'primevue/basecomponent';
import CheckIcon from 'primevue/icons/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: 'HeaderCheckbox',
2023-05-08 14:08:06 +00:00
extends: BaseComponent,
2022-09-06 12:03:37 +00:00
emits: ['change'],
props: {
2022-12-08 11:04:25 +00:00
checked: null,
disabled: null,
column: null,
headerCheckboxIconTemplate: {
type: Function,
default: null
}
2022-09-06 12:03:37 +00:00
},
data() {
return {
focused: false
};
},
methods: {
getColumnPTOptions(key) {
return this.ptmo(this.getColumnProp(), key, {
props: this.column.props,
parent: {
props: this.$props,
state: this.$data
},
2023-05-08 14:08:06 +00:00
context: {
checked: this.checked,
focused: this.focused,
disabled: this.disabled
}
});
},
getColumnProp() {
return this.column.props && this.column.props.pt ? this.column.props.pt : undefined; //@todo:
},
2022-09-06 12:03:37 +00:00
onClick(event) {
2022-12-08 11:04:25 +00:00
if (!this.disabled) {
2022-09-06 12:03:37 +00:00
this.$emit('change', {
originalEvent: event,
checked: !this.checked
});
2022-12-08 11:04:25 +00:00
DomHandler.focus(this.$refs.input);
2022-09-06 12:03:37 +00:00
}
},
onFocus() {
this.focused = true;
},
onBlur() {
this.focused = false;
}
2022-12-08 11:04:25 +00:00
},
computed: {
headerCheckboxAriaLabel() {
return this.$primevue.config.locale.aria ? (this.checked ? this.$primevue.config.locale.aria.selectAll : this.$primevue.config.locale.aria.unselectAll) : undefined;
}
},
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>