Sharkey/src/client/app/common/views/components/ui/switch.vue

134 lines
2 KiB
Vue
Raw Normal View History

2018-06-14 08:52:37 +03:00
<template>
<div
class="ui-switch"
:class="{ disabled, checked }"
role="switch"
:aria-checked="checked"
:aria-disabled="disabled"
2018-06-14 15:38:39 +03:00
@click="toggle"
2018-06-14 08:52:37 +03:00
>
<input
type="checkbox"
ref="input"
:disabled="disabled"
2018-06-14 15:38:39 +03:00
@keydown.enter="toggle"
2018-06-14 08:52:37 +03:00
>
<span class="button">
2018-06-14 10:48:49 +03:00
<span></span>
2018-06-14 08:52:37 +03:00
</span>
<span class="label">
<span :aria-hidden="!checked"><slot></slot></span>
<p :aria-hidden="!checked">
2018-09-28 15:48:53 +03:00
<slot name="desc"></slot>
2018-06-14 08:52:37 +03:00
</p>
</span>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
2018-06-14 15:38:39 +03:00
model: {
prop: 'value',
event: 'change'
},
2018-06-14 08:52:37 +03:00
props: {
value: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
}
2018-06-14 15:38:39 +03:00
},
2018-06-14 08:52:37 +03:00
computed: {
checked(): boolean {
return this.value;
}
},
methods: {
2018-06-14 15:38:39 +03:00
toggle() {
2018-06-14 08:52:37 +03:00
this.$emit('change', !this.checked);
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-27 06:55:10 +03:00
.ui-switch
2018-06-14 08:52:37 +03:00
display flex
2018-06-14 10:48:49 +03:00
margin 32px 0
2018-06-14 08:52:37 +03:00
cursor pointer
transition all 0.3s
2018-09-05 07:47:26 +03:00
&:first-child
margin-top 0
&:last-child
margin-bottom 0
2018-06-14 08:52:37 +03:00
> *
user-select none
&.disabled
opacity 0.6
cursor not-allowed
&.checked
> .button
2018-09-26 14:19:35 +03:00
background-color var(--primaryAlpha04)
border-color var(--primaryAlpha04)
2018-06-14 08:52:37 +03:00
2018-06-14 10:48:49 +03:00
> *
2018-09-26 14:19:35 +03:00
background-color var(--primary)
2018-06-14 10:48:49 +03:00
transform translateX(14px)
2018-06-14 08:52:37 +03:00
> input
position absolute
width 0
height 0
opacity 0
margin 0
> .button
display inline-block
2018-09-05 07:47:26 +03:00
flex-shrink 0
2018-06-14 10:48:49 +03:00
margin 3px 0 0 0
width 34px
height 14px
2018-09-27 06:55:10 +03:00
background var(--switchTrack)
2018-06-14 08:52:37 +03:00
outline none
2018-06-14 10:48:49 +03:00
border-radius 14px
2018-06-14 08:52:37 +03:00
transition inherit
> *
position absolute
2018-06-14 10:48:49 +03:00
top -3px
left 0
border-radius 100%
transition background-color 0.3s, transform 0.3s
width 20px
height 20px
2018-06-14 08:52:37 +03:00
background-color #fff
2018-06-14 10:48:49 +03:00
box-shadow 0 2px 1px -1px rgba(#000, 0.2), 0 1px 1px 0 rgba(#000, 0.14), 0 1px 3px 0 rgba(#000, 0.12)
2018-06-14 08:52:37 +03:00
> .label
margin-left 8px
display block
font-size 16px
cursor pointer
transition inherit
> span
display block
2018-06-14 10:48:49 +03:00
line-height 20px
2018-09-27 06:55:10 +03:00
color currentColor
2018-06-14 08:52:37 +03:00
transition inherit
> p
margin 0
2018-09-27 06:55:10 +03:00
opacity 0.7
2018-06-14 08:52:37 +03:00
</style>