103 lines
3.4 KiB
Vue
Executable File
103 lines
3.4 KiB
Vue
Executable File
<template>
|
|
<div :class="cx('root')" v-bind="getPTOptions('root')" :data-p-checked="checked" :data-p-indeterminate="d_indeterminate || undefined" :data-p-disabled="disabled">
|
|
<input
|
|
:id="inputId"
|
|
type="checkbox"
|
|
:class="[cx('input'), inputClass]"
|
|
:style="inputStyle"
|
|
:value="value"
|
|
:name="name"
|
|
:checked="checked"
|
|
:tabindex="tabindex"
|
|
:disabled="disabled"
|
|
:readonly="readonly"
|
|
:required="required"
|
|
:aria-labelledby="ariaLabelledby"
|
|
:aria-label="ariaLabel"
|
|
:aria-invalid="invalid || undefined"
|
|
:aria-checked="d_indeterminate ? 'mixed' : undefined"
|
|
@focus="onFocus"
|
|
@blur="onBlur"
|
|
@change="onChange"
|
|
v-bind="getPTOptions('input')"
|
|
/>
|
|
<div :class="cx('box')" v-bind="getPTOptions('box')">
|
|
<slot name="icon" :checked="checked" :class="cx('icon')">
|
|
<CheckIcon v-if="checked" :class="cx('icon')" v-bind="getPTOptions('icon')" />
|
|
<MinusIcon v-else-if="d_indeterminate" :class="cx('icon')" v-bind="getPTOptions('icon')" />
|
|
</slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import CheckIcon from 'primevue/icons/check';
|
|
import MinusIcon from 'primevue/icons/minus';
|
|
import { ObjectUtils } from 'primevue/utils';
|
|
import BaseCheckbox from './BaseCheckbox.vue';
|
|
|
|
export default {
|
|
name: 'Checkbox',
|
|
extends: BaseCheckbox,
|
|
inheritAttrs: false,
|
|
emits: ['update:modelValue', 'change', 'focus', 'blur', 'update:indeterminate'],
|
|
data() {
|
|
return {
|
|
d_indeterminate: this.indeterminate
|
|
};
|
|
},
|
|
watch: {
|
|
indeterminate(newValue) {
|
|
this.d_indeterminate = newValue;
|
|
}
|
|
},
|
|
methods: {
|
|
getPTOptions(key) {
|
|
const _ptm = key === 'root' ? this.ptmi : this.ptm;
|
|
|
|
return _ptm(key, {
|
|
context: {
|
|
checked: this.checked,
|
|
disabled: this.disabled
|
|
}
|
|
});
|
|
},
|
|
onChange(event) {
|
|
if (!this.disabled && !this.readonly) {
|
|
let newModelValue;
|
|
|
|
if (this.binary) {
|
|
newModelValue = this.d_indeterminate ? this.trueValue : this.checked ? this.falseValue : this.trueValue;
|
|
} else {
|
|
if (this.checked || this.d_indeterminate) newModelValue = this.modelValue.filter((val) => !ObjectUtils.equals(val, this.value));
|
|
else newModelValue = this.modelValue ? [...this.modelValue, this.value] : [this.value];
|
|
}
|
|
|
|
if (this.d_indeterminate) {
|
|
this.d_indeterminate = false;
|
|
this.$emit('update:indeterminate', this.d_indeterminate);
|
|
}
|
|
|
|
this.$emit('update:modelValue', newModelValue);
|
|
this.$emit('change', event);
|
|
}
|
|
},
|
|
onFocus(event) {
|
|
this.$emit('focus', event);
|
|
},
|
|
onBlur(event) {
|
|
this.$emit('blur', event);
|
|
}
|
|
},
|
|
computed: {
|
|
checked() {
|
|
return this.d_indeterminate ? false : this.binary ? this.modelValue === this.trueValue : ObjectUtils.contains(this.value, this.modelValue);
|
|
}
|
|
},
|
|
components: {
|
|
CheckIcon,
|
|
MinusIcon
|
|
}
|
|
};
|
|
</script>
|