egirlskey/packages/frontend/src/components/MkSwitch.vue

139 lines
2.5 KiB
Vue
Raw Normal View History

<template>
2023-05-10 08:53:01 +00:00
<div :class="[$style.root, { [$style.disabled]: disabled, [$style.checked]: checked }]">
2021-09-29 15:50:45 +00:00
<input
ref="input"
2021-11-19 10:36:12 +00:00
type="checkbox"
2021-09-29 15:50:45 +00:00
:disabled="disabled"
2023-05-10 08:53:01 +00:00
:class="$style.input"
2021-09-29 15:50:45 +00:00
@keydown.enter="toggle"
>
2023-05-10 08:53:01 +00:00
<span ref="button" v-tooltip="checked ? i18n.ts.itsOn : i18n.ts.itsOff" :class="$style.button" data-cy-switch-toggle @click.prevent="toggle">
<div :class="$style.knob"></div>
2021-09-29 15:50:45 +00:00
</span>
2023-05-10 08:53:01 +00:00
<span :class="$style.body">
2021-12-30 12:47:48 +00:00
<!-- TODO: 無名slotの方は廃止 -->
2023-05-10 08:53:01 +00:00
<span :class="$style.label" @click="toggle"><slot name="label"></slot><slot></slot></span>
<p :class="$style.caption"><slot name="caption"></slot></p>
2021-09-29 15:50:45 +00:00
</span>
</div>
</template>
<script lang="ts" setup>
import { toRefs, Ref } from 'vue';
2022-07-20 13:24:26 +00:00
import { i18n } from '@/i18n';
const props = defineProps<{
modelValue: boolean | Ref<boolean>;
disabled?: boolean;
}>();
2021-12-27 13:59:14 +00:00
const emit = defineEmits<{
(ev: 'update:modelValue', v: boolean): void;
}>();
2021-12-27 13:59:14 +00:00
let button = $shallowRef<HTMLElement>();
const checked = toRefs(props).modelValue;
const toggle = () => {
if (props.disabled) return;
emit('update:modelValue', !checked.value);
2021-12-27 13:59:14 +00:00
if (!checked.value) {
2022-06-26 07:38:27 +00:00
}
};
</script>
2023-05-10 08:53:01 +00:00
<style lang="scss" module>
.root {
2021-09-29 15:50:45 +00:00
position: relative;
display: flex;
2021-12-27 13:59:14 +00:00
transition: all 0.2s ease;
2023-05-10 08:53:01 +00:00
user-select: none;
2021-12-25 16:42:50 +00:00
&:hover {
> .button {
border-color: var(--inputBorderHover) !important;
}
2021-09-29 15:50:45 +00:00
}
2021-09-29 15:50:45 +00:00
&.disabled {
opacity: 0.6;
cursor: not-allowed;
}
&.checked {
> .button {
2023-01-07 06:00:29 +00:00
background-color: var(--switchOnBg) !important;
border-color: var(--switchOnBg) !important;
2022-06-26 07:38:27 +00:00
> .knob {
left: 12px;
2023-01-07 06:00:29 +00:00
background: var(--switchOnFg);
}
}
}
}
2023-05-10 08:53:01 +00:00
.input {
position: absolute;
width: 0;
height: 0;
opacity: 0;
margin: 0;
}
.button {
position: relative;
display: inline-flex;
flex-shrink: 0;
margin: 0;
box-sizing: border-box;
width: 32px;
height: 23px;
outline: none;
background: var(--switchOffBg);
background-clip: content-box;
border: solid 1px var(--switchOffBg);
border-radius: 999px;
cursor: pointer;
transition: inherit;
user-select: none;
}
.knob {
position: absolute;
top: 3px;
left: 3px;
width: 15px;
height: 15px;
background: var(--switchOffFg);
border-radius: 999px;
transition: all 0.2s ease;
}
.body {
margin-left: 12px;
margin-top: 2px;
display: block;
transition: inherit;
color: var(--fg);
}
.label {
display: block;
line-height: 20px;
cursor: pointer;
transition: inherit;
}
.caption {
margin: 8px 0 0 0;
color: var(--fgTransparentWeak);
font-size: 0.85em;
&:empty {
display: none;
}
}
</style>