2022-09-06 12:03:37 +00:00
|
|
|
<template>
|
2024-01-30 14:35:32 +00:00
|
|
|
<div :class="cx('root')" v-bind="getPTOptions('root')" :data-p-highlight="active" :data-p-disabled="disabled">
|
2024-03-21 13:21:57 +00:00
|
|
|
<button v-ripple type="button" :class="cx('button')" :tabindex="tabindex" :aria-pressed="modelValue" :aria-disabled="disabled" @click="onChange" v-bind="getPTOptions('button')">
|
2024-01-14 15:21:43 +00:00
|
|
|
<slot name="icon" :value="modelValue" :class="cx('icon')">
|
|
|
|
<span v-if="onIcon || offIcon" :class="[cx('icon'), modelValue ? onIcon : offIcon]" v-bind="getPTOptions('icon')" />
|
|
|
|
</slot>
|
|
|
|
<span :class="cx('label')" v-bind="getPTOptions('label')">{{ label }}</span>
|
2024-03-21 13:21:57 +00:00
|
|
|
</button>
|
2022-09-06 12:03:37 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Ripple from 'primevue/ripple';
|
2024-01-12 07:07:55 +00:00
|
|
|
import { ObjectUtils } from 'primevue/utils';
|
2023-05-24 14:26:41 +00:00
|
|
|
import BaseToggleButton from './BaseToggleButton.vue';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ToggleButton',
|
2023-05-24 14:26:41 +00:00
|
|
|
extends: BaseToggleButton,
|
2024-02-11 23:48:46 +00:00
|
|
|
inheritAttrs: false,
|
2024-03-21 13:21:57 +00:00
|
|
|
emits: ['update:modelValue', 'change'],
|
2022-09-06 12:03:37 +00:00
|
|
|
methods: {
|
2024-01-12 07:07:55 +00:00
|
|
|
getPTOptions(key) {
|
2024-02-11 23:48:46 +00:00
|
|
|
const _ptm = key === 'root' ? this.ptmi : this.ptm;
|
|
|
|
|
|
|
|
return _ptm(key, {
|
2024-01-12 07:07:55 +00:00
|
|
|
context: {
|
|
|
|
active: this.active,
|
|
|
|
disabled: this.disabled
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onChange(event) {
|
|
|
|
if (!this.disabled && !this.readonly) {
|
2022-09-06 12:03:37 +00:00
|
|
|
this.$emit('update:modelValue', !this.modelValue);
|
|
|
|
this.$emit('change', event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2024-01-12 07:07:55 +00:00
|
|
|
active() {
|
|
|
|
return this.modelValue === true;
|
|
|
|
},
|
2022-09-06 12:03:37 +00:00
|
|
|
hasLabel() {
|
2024-01-12 07:07:55 +00:00
|
|
|
return ObjectUtils.isNotEmpty(this.onLabel) && ObjectUtils.isNotEmpty(this.offLabel);
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
label() {
|
2022-09-14 11:26:01 +00:00
|
|
|
return this.hasLabel ? (this.modelValue ? this.onLabel : this.offLabel) : ' ';
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
directives: {
|
2022-09-14 11:26:01 +00:00
|
|
|
ripple: Ripple
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
|
|
|
</script>
|