mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 05:53:27 +09:00
542 lines
10 KiB
Vue
542 lines
10 KiB
Vue
<script setup lang="ts">
|
|
export type VSwitchBlockColor = 'primary' | 'info' | 'success' | 'warning' | 'danger'
|
|
|
|
export interface VSwitchBlockProps {
|
|
label?: string
|
|
color?: VSwitchBlockColor
|
|
thin?: boolean
|
|
}
|
|
|
|
defineOptions({
|
|
inheritAttrs: false,
|
|
})
|
|
|
|
const modelValue = defineModel<boolean>({
|
|
default: false,
|
|
})
|
|
const props = withDefaults(defineProps<VSwitchBlockProps>(), {
|
|
label: undefined,
|
|
color: undefined,
|
|
})
|
|
|
|
const { field, id } = useVFieldContext({
|
|
create: false,
|
|
help: 'VSwitchBlock',
|
|
})
|
|
|
|
const internal = computed({
|
|
get() {
|
|
if (field?.value) {
|
|
return field.value.value
|
|
}
|
|
else {
|
|
return modelValue.value
|
|
}
|
|
},
|
|
set(value: any) {
|
|
if (field?.value) {
|
|
field.value.setValue(value)
|
|
}
|
|
modelValue.value = value
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
:class="[
|
|
(props.label || 'default' in $slots) && 'switch-block',
|
|
props.thin && (props.label || 'default' in $slots) && 'thin-switch-block',
|
|
]"
|
|
>
|
|
<template v-if="props.thin">
|
|
<VLabel
|
|
raw
|
|
class="thin-switch"
|
|
tabindex="0"
|
|
:class="[props.color && `is-${props.color}`]"
|
|
>
|
|
<input
|
|
:id="id"
|
|
v-model="internal"
|
|
:true-value="true"
|
|
:false-value="false"
|
|
class="input"
|
|
type="checkbox"
|
|
v-bind="$attrs"
|
|
>
|
|
<div class="slider" />
|
|
</VLabel>
|
|
</template>
|
|
<template v-else>
|
|
<VLabel
|
|
raw
|
|
class="form-switch"
|
|
:class="[props.color && `is-${props.color}`]"
|
|
>
|
|
<input
|
|
:id="id"
|
|
v-model="internal"
|
|
:true-value="true"
|
|
:false-value="false"
|
|
type="checkbox"
|
|
class="is-switch"
|
|
v-bind="$attrs"
|
|
>
|
|
<i aria-hidden="true" />
|
|
</VLabel>
|
|
</template>
|
|
|
|
<div
|
|
v-if="props.label || 'default' in $slots"
|
|
class="text"
|
|
>
|
|
<VLabel raw>
|
|
<span>
|
|
<slot>
|
|
{{ props.label }}
|
|
</slot>
|
|
</span>
|
|
</VLabel>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.form-switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
&:focus-within {
|
|
border-radius: 50px;
|
|
outline-offset: var(--accessibility-focus-outline-offset);
|
|
outline-width: var(--accessibility-focus-outline-width);
|
|
outline-style: var(--accessibility-focus-outline-style);
|
|
outline-color: var(--accessibility-focus-outline-color);
|
|
}
|
|
|
|
&.is-primary {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-success {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--success);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-info {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--info);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-warning {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--warning);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-danger {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--danger);
|
|
}
|
|
}
|
|
}
|
|
|
|
i {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 46px;
|
|
height: 26px;
|
|
background-color: #e6e6e6;
|
|
border-radius: 23px;
|
|
vertical-align: text-bottom;
|
|
transition: all 0.3s linear;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset-inline-start: 0;
|
|
width: 42px;
|
|
height: 22px;
|
|
background-color: var(--white);
|
|
border-radius: 11px;
|
|
transform: translate3d(calc(var(--transform-direction) * 2px), 2px, 0)
|
|
scale3d(1, 1, 1);
|
|
transition: all 0.25s linear;
|
|
}
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset-inline-start: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
background-color: var(--white);
|
|
border-radius: 11px;
|
|
box-shadow: 0 2px 2px rgb(0 0 0 / 24%);
|
|
transform: translate3d(calc(var(--transform-direction) * 2px), 2px, 0);
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
}
|
|
|
|
&:active {
|
|
i::after {
|
|
width: 28px;
|
|
transform: translate3d(calc(var(--transform-direction) * 2px), 2px, 0);
|
|
}
|
|
|
|
input {
|
|
&:checked + i::after {
|
|
transform: translate3d(calc(var(--transform-direction) * 16px), 2px, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
|
|
&:checked + i {
|
|
background-color: var(--light-text);
|
|
|
|
&::before {
|
|
transform: translate3d(calc(var(--transform-direction) * 18px), 2px, 0)
|
|
scale3d(0, 0, 0);
|
|
}
|
|
|
|
&::after {
|
|
transform: translate3d(calc(var(--transform-direction) * 22px), 2px, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
small {
|
|
color: var(--muted-grey);
|
|
position: relative;
|
|
top: -4px;
|
|
}
|
|
}
|
|
|
|
.switch-block {
|
|
padding: 10px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.text {
|
|
margin-inline-start: 6px;
|
|
|
|
span {
|
|
display: block;
|
|
position: relative;
|
|
top: -2px;
|
|
color: var(--light-text);
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-dark {
|
|
.form-switch {
|
|
&.is-primary {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--primary) !important;
|
|
|
|
&::after {
|
|
background: var(--white) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-success {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--success) !important;
|
|
|
|
&::after {
|
|
background: var(--white) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-info {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--info) !important;
|
|
|
|
&::after {
|
|
background: var(--white) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-warning {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--warning) !important;
|
|
|
|
&::after {
|
|
background: var(--white) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-danger {
|
|
input {
|
|
&:checked + i {
|
|
background-color: var(--danger) !important;
|
|
|
|
&::after {
|
|
background: var(--white) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
i {
|
|
background: var(--dark-sidebar) !important;
|
|
|
|
&::before {
|
|
background: var(--dark-sidebar) !important;
|
|
}
|
|
|
|
&::after {
|
|
background: color-mix(in oklab, var(--dark-sidebar), white 22%) !important;
|
|
}
|
|
}
|
|
|
|
input {
|
|
&:checked + i {
|
|
&::after {
|
|
background: color-mix(in oklab, var(--dark-sidebar), white 55%) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.thin-switch {
|
|
display: block;
|
|
margin-inline-start: 8px;
|
|
|
|
&:focus-visible .slider::after {
|
|
border-radius: 50px;
|
|
outline-offset: var(--accessibility-focus-outline-offset);
|
|
outline-width: var(--accessibility-focus-outline-width);
|
|
outline-style: var(--accessibility-focus-outline-style);
|
|
outline-color: var(--accessibility-focus-outline-color);
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: none !important;
|
|
}
|
|
|
|
&.is-primary {
|
|
.input:checked ~ .slider {
|
|
background: color-mix(in oklab, var(--primary), white 40%);
|
|
|
|
&::after {
|
|
background: var(--primary);
|
|
border-color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-success {
|
|
.input:checked ~ .slider {
|
|
background: color-mix(in oklab, var(--success), white 40%);
|
|
|
|
&::after {
|
|
background: var(--success);
|
|
border-color: var(--success);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-info {
|
|
.input:checked ~ .slider {
|
|
background: color-mix(in oklab, var(--info), white 40%);
|
|
|
|
&::after {
|
|
background: var(--info);
|
|
border-color: var(--info);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-warning {
|
|
.input:checked ~ .slider {
|
|
background: color-mix(in oklab, var(--warning), white 40%);
|
|
|
|
&::after {
|
|
background: var(--warning);
|
|
border-color: var(--warning);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-danger {
|
|
.input:checked ~ .slider {
|
|
background: color-mix(in oklab, var(--danger), white 40%);
|
|
|
|
&::after {
|
|
background: var(--danger);
|
|
border-color: var(--danger);
|
|
}
|
|
}
|
|
}
|
|
|
|
.slider {
|
|
position: relative;
|
|
display: inline-block;
|
|
height: 8px;
|
|
width: 32px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
background: #c5c5c5;
|
|
transition: all 0.3s; // transition-all test
|
|
|
|
&::after {
|
|
background: var(--light-grey);
|
|
position: absolute;
|
|
inset-inline-start: -8px;
|
|
top: -8.5px;
|
|
display: block;
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: var(--radius-rounded);
|
|
border: 1px solid transparent;
|
|
box-shadow: 0 2px 2px rgba(#000, 0.2);
|
|
content: '';
|
|
transition: all 0.3s; // transition-all test
|
|
}
|
|
}
|
|
|
|
label {
|
|
margin-inline-end: 7px;
|
|
}
|
|
|
|
.input {
|
|
display: none;
|
|
|
|
~ .label {
|
|
margin-inline-start: 8px;
|
|
}
|
|
|
|
&:checked ~ .slider {
|
|
&::after {
|
|
inset-inline-start: 32px - 24px + 8px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.input:checked ~ .slider {
|
|
&::after {
|
|
background: var(--white);
|
|
border: 1px solid var(--fade-grey);
|
|
}
|
|
}
|
|
}
|
|
|
|
.thin-switch-block {
|
|
padding: 10px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.text {
|
|
margin-inline-start: 16px;
|
|
|
|
span {
|
|
display: block;
|
|
position: relative;
|
|
color: var(--light-text);
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-dark {
|
|
.thin-switch {
|
|
&.is-primary {
|
|
.input:checked ~ .slider {
|
|
background: color-mix(in oklab, var(--primary), white 20%);
|
|
|
|
&::after {
|
|
background: var(--primary);
|
|
border-color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-success {
|
|
.input:checked ~ .slider {
|
|
&::after {
|
|
background: var(--success);
|
|
border-color: var(--success);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-info {
|
|
.input:checked ~ .slider {
|
|
&::after {
|
|
background: var(--info);
|
|
border-color: var(--info);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-warning {
|
|
.input:checked ~ .slider {
|
|
&::after {
|
|
background: var(--warning);
|
|
border-color: var(--warning);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.is-danger {
|
|
.input:checked ~ .slider {
|
|
&::after {
|
|
background: var(--danger);
|
|
border-color: var(--danger);
|
|
}
|
|
}
|
|
}
|
|
|
|
.slider {
|
|
background: var(--dark-sidebar);
|
|
|
|
&::after {
|
|
background: color-mix(in oklab, var(--dark-sidebar), white 22%);
|
|
}
|
|
}
|
|
|
|
.input:checked ~ .slider {
|
|
&::after {
|
|
background: color-mix(in oklab, var(--dark-sidebar), white 55%);
|
|
border: color-mix(in oklab, var(--dark-sidebar), white 55%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|