Refactor #3965 - For InputSwitch

pull/3997/head
Tuğçe Küçükoğlu 2023-05-24 14:15:28 +03:00
parent 51f2913c48
commit 5b6fd8ac8e
3 changed files with 119 additions and 80 deletions

View File

@ -0,0 +1,104 @@
<script>
import BaseComponent from 'primevue/basecomponent';
import { useStyle } from 'primevue/usestyle';
const styles = `
.p-inputswitch {
display: inline-block;
}
.p-inputswitch-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid transparent;
}
.p-inputswitch-slider:before {
position: absolute;
content: '';
top: 50%;
}
`;
const inlineStyles = {
root: { position: 'relative' }
};
const classes = {
root: ({ instance, props }) => [
'p-inputswitch p-component',
{
'p-inputswitch-checked': instance.checked,
'p-disabled': props.disabled,
'p-focus': instance.focused
}
],
hiddenInputWrapper: 'p-hidden-accessible',
slider: 'p-inputswitch-slider'
};
const { load: loadStyle, unload: unloadStyle } = useStyle(styles, { id: 'primevue_inputswitch_style', manual: true });
export default {
name: 'BaseInputSwitch',
extends: BaseComponent,
props: {
modelValue: {
type: null,
default: false
},
trueValue: {
type: null,
default: true
},
falseValue: {
type: null,
default: false
},
disabled: {
type: Boolean,
default: false
},
inputId: {
type: String,
default: null
},
inputClass: {
type: [String, Object],
default: null
},
inputStyle: {
type: Object,
default: null
},
inputProps: {
type: null,
default: null
},
'aria-labelledby': {
type: String,
default: null
},
'aria-label': {
type: String,
default: null
}
},
css: {
classes,
inlineStyles
},
watch: {
isUnstyled: {
immediate: true,
handler(newValue) {
!newValue && loadStyle();
}
}
}
};
</script>

View File

@ -104,6 +104,16 @@ export interface InputSwitchProps {
* Establishes a string value that labels the component.
*/
'aria-label'?: string | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {InputSwitchPassThroughMethodOptions}
*/
pt?: InputSwitchPassThroughMethodOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
export interface InputSwitchSlots {}

View File

@ -1,6 +1,6 @@
<template>
<div :class="containerClass" @click="onClick($event)" v-bind="ptm('root')">
<div class="p-hidden-accessible" v-bind="ptm('hiddenInputWrapper')">
<div :class="cx('root')" :style="sx('root')" @click="onClick($event)" v-bind="ptm('root')">
<div :class="cx('hiddenInputWrapper')" :style="sx('hiddenAccessible', isUnstyled)" v-bind="ptm('hiddenInputWrapper')" :data-p-hidden-accessible="true">
<input
ref="input"
:id="inputId"
@ -18,59 +18,17 @@
v-bind="ptm('hiddenInput')"
/>
</div>
<span class="p-inputswitch-slider" v-bind="{ ...inputProps, ...ptm('slider') }"></span>
<span :class="cx('slider')" v-bind="{ ...inputProps, ...ptm('slider') }"></span>
</div>
</template>
<script>
import BaseComponent from 'primevue/basecomponent';
import BaseInputSwitch from './BaseInputSwitch.vue';
export default {
name: 'InputSwitch',
extends: BaseComponent,
extends: BaseInputSwitch,
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
},
inputId: {
type: String,
default: null
},
inputClass: {
type: [String, Object],
default: null
},
inputStyle: {
type: Object,
default: null
},
inputProps: {
type: null,
default: null
},
'aria-labelledby': {
type: String,
default: null
},
'aria-label': {
type: String,
default: null
}
},
data() {
return {
focused: false
@ -100,42 +58,9 @@ export default {
}
},
computed: {
containerClass() {
return [
'p-inputswitch p-component',
{
'p-inputswitch-checked': this.checked,
'p-disabled': this.disabled,
'p-focus': this.focused
}
];
},
checked() {
return this.modelValue === this.trueValue;
}
}
};
</script>
<style>
.p-inputswitch {
position: relative;
display: inline-block;
}
.p-inputswitch-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid transparent;
}
.p-inputswitch-slider:before {
position: absolute;
content: '';
top: 50%;
}
</style>