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

68 lines
2.3 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2024-05-06 15:23:01 +00:00
<Checkbox :modelValue="checked" :binary="true" :disabled="disabled" :aria-label="headerCheckboxAriaLabel" @change="onChange" :pt="getColumnPT('pcHeaderCheckbox')">
2024-01-14 13:38:51 +00:00
<template #icon="slotProps">
<component v-if="headerCheckboxIconTemplate" :is="headerCheckboxIconTemplate" :checked="slotProps.checked" :class="slotProps.class" />
2024-05-06 15:23:01 +00:00
<CheckIcon v-else-if="!headerCheckboxIconTemplate && slotProps.checked" :class="slotProps.class" v-bind="getColumnPT('pcHeaderCheckbox.icon')" />
2024-01-14 13:38:51 +00:00
</template>
</Checkbox>
2022-09-06 12:03:37 +00:00
</template>
<script>
2023-05-08 14:08:06 +00:00
import BaseComponent from 'primevue/basecomponent';
2024-01-14 13:38:51 +00:00
import Checkbox from 'primevue/checkbox';
import CheckIcon from 'primevue/icons/check';
import { mergeProps } from 'vue';
2022-12-08 11:04:25 +00:00
2022-09-06 12:03:37 +00:00
export default {
name: 'HeaderCheckbox',
hostName: 'DataTable',
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
},
methods: {
getColumnPT(key) {
const columnMetaData = {
props: this.column.props,
parent: {
instance: this,
props: this.$props,
state: this.$data
},
2023-05-08 14:08:06 +00:00
context: {
checked: this.checked,
disabled: this.disabled
}
};
return mergeProps(this.ptm(`column.${key}`, { column: columnMetaData }), this.ptm(`column.${key}`, columnMetaData), this.ptmo(this.getColumnProp(), key, columnMetaData));
2023-05-08 14:08:06 +00:00
},
getColumnProp() {
return this.column.props && this.column.props.pt ? this.column.props.pt : undefined; //@todo:
},
2024-01-14 13:38:51 +00:00
onChange(event) {
this.$emit('change', {
originalEvent: event,
checked: !this.checked
});
2022-09-06 12:03:37 +00:00
}
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: {
2024-01-14 13:38:51 +00:00
CheckIcon,
Checkbox
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>