Files
mixtape/zero.Web.UI/components/forms/toggle.vue
T
2020-10-15 13:51:38 +02:00

168 lines
3.2 KiB
Vue

<template>
<div class="ui-toggle" :class="{'is-disabled': disabled, 'is-negative': negative, 'is-active': modelValue, 'is-content-left': contentLeft }">
<input type="checkbox" :modelValue="modelValue" @update:modelValue="onChange" :disabled="disabled" />
<span class="ui-toggle-switch" :class="{ 'is-active': modelValue }"><i></i></span>
<i class="fth-minus-circle ui-toggle-off-warning" v-if="offContent && !modelValue && offWarning"></i>
<span class="ui-toggle-text" v-if="onContent && modelValue" v-localize="onContent"></span>
<span class="ui-toggle-text" v-if="offContent && !modelValue" v-localize="offContent"></span>
</div>
</template>
<script>
export default {
name: 'uiToggle',
emits: ['input'],
props: {
modelValue: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
},
negative: {
type: Boolean,
default: false
},
onContent: {
type: String,
default: null
},
offContent: {
type: String,
default: null
},
offWarning: {
type: Boolean,
default: false
},
contentLeft: {
type: Boolean,
default: false
}
},
methods: {
onChange(ev)
{
this.$emit('input', !this.modelValue);
}
}
}
</script>
<style lang="scss">
.ui-toggle
{
display: inline-flex;
align-items: center;
position: relative;
height: 22px;
input
{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
margin: 0;
z-index: 2;
opacity: 0;
cursor: pointer;
}
&.is-disabled input
{
cursor: default;
}
&.is-content-left
{
flex-direction: row-reverse;
.ui-toggle-text
{
margin-left: 0;
margin-right: 12px;
}
}
}
.ui-toggle-text
{
margin-top: 1px;
margin-left: 12px;
.ui-toggle.is-active &
{
font-weight: 600;
}
}
.ui-toggle-switch
{
display: inline-block;
height: 22px;
width: 36px;
background: var(--color-toggle);
border-radius: 20px;
border: 1px solid transparent;
transition: all 0.2s ease;
z-index: 1;
pointer-events: none;
i
{
display: inline-block;
height: 16px;
width: 16px;
border-radius: 20px;
margin: 2px;
background: var(--color-toggle-fg);
transition: all 0.2s ease;
}
&.is-active
{
background: var(--color-toggled);
}
&.is-active i
{
background: var(--color-toggled-fg);
transform: translateX(14px);
}
input:focus + &
{
background-color: var(--color-input-focus-bg);
border: var(--color-input-focus-border);
box-shadow: var(--color-input-focus-shadow);
outline: none;
}
}
.ui-toggle.is-negative .ui-toggle-switch.is-active
{
background: var(--color-negative);
border-color: transparent !important;
i
{
background: white;
}
}
.ui-toggle-off-warning
{
margin: 0 10px 0 -5px;
}
</style>