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

107 lines
1.9 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and misskey-project
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div :class="[$style.root, { [$style.disabled]: disabled }]">
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"
>
<XButton :checked="checked" :disabled="disabled" @toggle="toggle"/>
2023-05-10 08:53:01 +00:00
<span :class="$style.body">
2021-12-30 12:47:48 +00:00
<!-- TODO: 無名slotの方は廃止 -->
<span :class="$style.label">
<span @click="toggle">
<slot name="label"></slot><slot></slot>
</span>
2023-09-30 19:53:52 +00:00
<span v-if="helpText" v-tooltip:dialog="helpText" class="_button _help" :class="$style.help"><i class="ph-question ph-bold ph-lg"></i></span>
</span>
2023-05-10 08:53:01 +00:00
<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';
import XButton from '@/components/MkSwitch.button.vue';
const props = defineProps<{
modelValue: boolean | Ref<boolean>;
disabled?: boolean;
helpText?: string;
}>();
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
const checked = toRefs(props).modelValue;
const toggle = () => {
if (props.disabled) return;
emit('update:modelValue', !checked.value);
};
</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;
}
}
2023-05-10 08:53:01 +00:00
.input {
position: absolute;
width: 0;
height: 0;
opacity: 0;
margin: 0;
}
.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;
}
}
.help {
margin-left: 0.5em;
font-size: 85%;
vertical-align: top;
}
</style>