primevue-mirror/components/lib/inputswitch/InputSwitch.vue

142 lines
3.4 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2023-05-05 13:10:07 +00:00
<div :class="containerClass" @click="onClick($event)" v-bind="ptm('root')">
<div class="p-hidden-accessible" v-bind="ptm('hiddenAccessible')">
2022-09-14 11:26:01 +00:00
<input
ref="input"
:id="inputId"
type="checkbox"
role="switch"
:class="inputClass"
:style="inputStyle"
:checked="checked"
:disabled="disabled"
:aria-checked="checked"
:aria-labelledby="ariaLabelledby"
:aria-label="ariaLabel"
@focus="onFocus($event)"
@blur="onBlur($event)"
2023-05-05 13:10:07 +00:00
v-bind="ptm('inputAria')"
2022-09-14 11:26:01 +00:00
/>
2022-09-06 12:03:37 +00:00
</div>
2023-05-05 13:10:07 +00:00
<span class="p-inputswitch-slider" v-bind="{ ...inputProps, ...ptm('slider') }"></span>
2022-09-06 12:03:37 +00:00
</div>
</template>
<script>
2023-05-05 13:10:07 +00:00
import BaseComponent from 'primevue/basecomponent';
2022-09-06 12:03:37 +00:00
export default {
name: 'InputSwitch',
2023-05-05 13:10:07 +00:00
extends: BaseComponent,
2022-09-06 12:03:37 +00:00
emits: ['click', 'update:modelValue', 'change', 'input', 'focus', 'blur'],
props: {
modelValue: {
type: null,
default: false
},
trueValue: {
type: null,
default: true
},
falseValue: {
type: null,
default: false
},
disabled: {
type: Boolean,
default: false
},
2022-09-14 11:26:01 +00:00
inputId: {
type: String,
default: null
},
inputClass: {
type: [String, Object],
2022-09-14 11:26:01 +00:00
default: null
},
inputStyle: {
type: Object,
2022-09-14 11:26:01 +00:00
default: null
},
inputProps: {
type: null,
default: null
},
2022-09-06 12:03:37 +00:00
'aria-labelledby': {
type: String,
2022-09-14 11:26:01 +00:00
default: null
2022-09-06 12:03:37 +00:00
},
'aria-label': {
type: String,
default: null
}
},
data() {
return {
focused: false
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
},
methods: {
onClick(event) {
if (!this.disabled) {
const newValue = this.checked ? this.falseValue : this.trueValue;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.$emit('click', event);
this.$emit('update:modelValue', newValue);
this.$emit('change', event);
this.$emit('input', newValue);
this.$refs.input.focus();
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
},
onFocus(event) {
this.focused = true;
this.$emit('focus', event);
},
onBlur(event) {
this.focused = false;
this.$emit('blur', event);
}
},
computed: {
containerClass() {
return [
'p-inputswitch p-component',
{
'p-inputswitch-checked': this.checked,
2022-09-14 11:26:01 +00:00
'p-disabled': this.disabled,
2022-09-06 12:03:37 +00:00
'p-focus': this.focused
}
];
},
checked() {
return this.modelValue === this.trueValue;
}
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>
<style>
.p-inputswitch {
position: relative;
display: inline-block;
}
.p-inputswitch-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
2023-02-28 17:49:08 +00:00
border: 1px solid transparent;
2022-09-06 12:03:37 +00:00
}
.p-inputswitch-slider:before {
position: absolute;
2022-09-14 11:26:01 +00:00
content: '';
2022-09-06 12:03:37 +00:00
top: 50%;
}
</style>