2018-03-02 03:46:08 -06:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
class="mk-switch"
|
|
|
|
:class="{ disabled, checked }"
|
|
|
|
role="switch"
|
|
|
|
:aria-checked="checked"
|
|
|
|
:aria-disabled="disabled"
|
|
|
|
@click="switchValue"
|
|
|
|
@mouseover="mouseenter"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
@change="handleChange"
|
|
|
|
ref="input"
|
|
|
|
:disabled="disabled"
|
|
|
|
@keydown.enter="switchValue"
|
|
|
|
>
|
|
|
|
<span class="button">
|
|
|
|
<span :style="{ transform }"></span>
|
|
|
|
</span>
|
|
|
|
<span class="label">
|
|
|
|
<span :aria-hidden="!checked">{{ text }}</span>
|
|
|
|
<p :aria-hidden="!checked">
|
|
|
|
<slot></slot>
|
|
|
|
</p>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
text: String
|
|
|
|
},/*
|
|
|
|
created() {
|
|
|
|
if (!~[true, false].indexOf(this.value)) {
|
|
|
|
this.$emit('input', false);
|
|
|
|
}
|
|
|
|
},*/
|
|
|
|
computed: {
|
|
|
|
checked(): boolean {
|
|
|
|
return this.value;
|
|
|
|
},
|
|
|
|
transform(): string {
|
|
|
|
return this.checked ? 'translate3d(20px, 0, 0)' : '';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
value() {
|
2018-03-05 05:09:26 -06:00
|
|
|
(this.$el).style.transition = 'all 0.3s';
|
2018-03-02 03:46:08 -06:00
|
|
|
(this.$refs.input as any).checked = this.checked;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
(this.$refs.input as any).checked = this.checked;
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
mouseenter() {
|
|
|
|
(this.$el).style.transition = 'all 0s';
|
|
|
|
},
|
|
|
|
handleChange() {
|
|
|
|
(this.$el).style.transition = 'all 0.3s';
|
|
|
|
this.$emit('input', !this.checked);
|
|
|
|
this.$emit('change', !this.checked);
|
|
|
|
this.$nextTick(() => {
|
|
|
|
// set input's checked property
|
|
|
|
// in case parent refuses to change component's value
|
|
|
|
(this.$refs.input as any).checked = this.checked;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
switchValue() {
|
|
|
|
!this.disabled && this.handleChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-02 22:47:55 -06:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-19 14:51:04 -05:00
|
|
|
root(isDark)
|
2018-03-02 03:46:08 -06:00
|
|
|
display flex
|
2018-03-02 23:25:36 -06:00
|
|
|
margin 12px 0
|
2018-03-02 03:46:08 -06:00
|
|
|
cursor pointer
|
|
|
|
transition all 0.3s
|
|
|
|
|
|
|
|
> *
|
|
|
|
user-select none
|
|
|
|
|
|
|
|
&.disabled
|
|
|
|
opacity 0.6
|
|
|
|
cursor not-allowed
|
|
|
|
|
|
|
|
&.checked
|
|
|
|
> .button
|
|
|
|
background-color $theme-color
|
|
|
|
border-color $theme-color
|
|
|
|
|
|
|
|
> .label
|
|
|
|
> span
|
|
|
|
color $theme-color
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
> .label
|
|
|
|
> span
|
|
|
|
color darken($theme-color, 10%)
|
|
|
|
|
|
|
|
> .button
|
|
|
|
background darken($theme-color, 10%)
|
|
|
|
border-color darken($theme-color, 10%)
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
> .label
|
|
|
|
> span
|
2018-04-19 14:51:04 -05:00
|
|
|
color isDark ? #fff : #2e3338
|
2018-03-02 03:46:08 -06:00
|
|
|
|
|
|
|
> .button
|
2018-04-19 14:51:04 -05:00
|
|
|
$color = isDark ? #15181d : #ced2da
|
|
|
|
background $color
|
|
|
|
border-color $color
|
2018-03-02 03:46:08 -06:00
|
|
|
|
|
|
|
> input
|
|
|
|
position absolute
|
|
|
|
width 0
|
|
|
|
height 0
|
|
|
|
opacity 0
|
|
|
|
margin 0
|
|
|
|
|
2018-03-04 03:27:22 -06:00
|
|
|
&:focus + .button
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
pointer-events none
|
|
|
|
position absolute
|
|
|
|
top -5px
|
|
|
|
right -5px
|
|
|
|
bottom -5px
|
|
|
|
left -5px
|
|
|
|
border 2px solid rgba($theme-color, 0.3)
|
|
|
|
border-radius 14px
|
|
|
|
|
2018-03-02 03:46:08 -06:00
|
|
|
> .button
|
2018-04-19 14:51:04 -05:00
|
|
|
$color = isDark ? #1c1f25 : #dcdfe6
|
|
|
|
|
2018-03-02 03:46:08 -06:00
|
|
|
display inline-block
|
|
|
|
margin 0
|
|
|
|
width 40px
|
2018-03-02 16:32:18 -06:00
|
|
|
min-width 40px
|
2018-03-02 03:46:08 -06:00
|
|
|
height 20px
|
2018-03-02 16:32:18 -06:00
|
|
|
min-height 20px
|
2018-04-19 14:51:04 -05:00
|
|
|
background $color
|
|
|
|
border 1px solid $color
|
2018-03-02 03:46:08 -06:00
|
|
|
outline none
|
|
|
|
border-radius 10px
|
|
|
|
transition inherit
|
|
|
|
|
|
|
|
> *
|
|
|
|
position absolute
|
|
|
|
top 1px
|
|
|
|
left 1px
|
|
|
|
border-radius 100%
|
|
|
|
transition transform 0.3s
|
|
|
|
width 16px
|
|
|
|
height 16px
|
|
|
|
background-color #fff
|
|
|
|
|
|
|
|
> .label
|
|
|
|
margin-left 8px
|
|
|
|
display block
|
2018-03-02 18:49:47 -06:00
|
|
|
font-size 15px
|
2018-03-02 03:46:08 -06:00
|
|
|
cursor pointer
|
|
|
|
transition inherit
|
|
|
|
|
|
|
|
> span
|
2018-03-02 16:32:18 -06:00
|
|
|
display block
|
2018-03-02 03:46:08 -06:00
|
|
|
line-height 20px
|
2018-04-19 14:51:04 -05:00
|
|
|
color isDark ? #c4ccd2 : #4a535a
|
2018-03-02 03:46:08 -06:00
|
|
|
transition inherit
|
|
|
|
|
|
|
|
> p
|
|
|
|
margin 0
|
2018-03-02 18:49:47 -06:00
|
|
|
//font-size 90%
|
2018-04-19 14:51:04 -05:00
|
|
|
color isDark ? #78858e : #9daab3
|
|
|
|
|
|
|
|
.mk-switch[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-switch:not([data-darkmode])
|
|
|
|
root(false)
|
2018-03-02 03:46:08 -06:00
|
|
|
|
|
|
|
</style>
|