element/packages/switch/src/component.vue

131 lines
3.2 KiB
Vue

<template>
<label class="el-switch" :class="{ 'is-disabled': disabled, 'el-switch--wide': hasText }">
<div class="el-switch__mask" v-show="disabled"></div>
<input
class="el-switch__input"
type="checkbox"
@change="handleChange"
v-model="currentValue"
:name="name"
:disabled="disabled">
<span class="el-switch__core" ref="core" :style="{ 'width': coreWidth + 'px' }">
<span class="el-switch__button" :style="buttonStyle"></span>
</span>
<transition name="label-fade">
<div
class="el-switch__label el-switch__label--left"
v-show="value"
:style="{ 'width': coreWidth + 'px' }">
<i :class="[onIconClass]" v-if="onIconClass"></i>
<span v-if="!onIconClass && onText">{{ onText }}</span>
</div>
</transition>
<transition name="label-fade">
<div
class="el-switch__label el-switch__label--right"
v-show="!value"
:style="{ 'width': coreWidth + 'px' }">
<i :class="[offIconClass]" v-if="offIconClass"></i>
<span v-if="!offIconClass && offText">{{ offText }}</span>
</div>
</transition>
</label>
</template>
<script>
export default {
name: 'el-switch',
props: {
value: {
type: Boolean,
default: true
},
disabled: {
type: Boolean,
default: false
},
width: {
type: Number,
default: 0
},
onIconClass: {
type: String,
default: ''
},
offIconClass: {
type: String,
default: ''
},
onText: {
type: String,
default: 'ON'
},
offText: {
type: String,
default: 'OFF'
},
onColor: {
type: String,
default: ''
},
offColor: {
type: String,
default: ''
},
name: {
type: String,
default: ''
}
},
data() {
return {
currentValue: this.value,
coreWidth: this.width,
buttonStyle: {
transform: ''
}
};
},
computed: {
hasText() {
/* istanbul ignore next */
return this.onText || this.offText;
}
},
watch: {
value(val) {
this.currentValue = val;
if (this.onColor || this.offColor) {
this.handleCoreColor();
}
this.handleButtonTransform();
},
currentValue(val) {
this.$emit('input', val);
}
},
methods: {
handleChange(event) {
this.$emit('change', event.currentTarget.checked);
},
handleButtonTransform() {
this.buttonStyle.transform = this.value ? `translate(${ this.coreWidth - 20 }px, 2px)` : 'translate(2px, 2px)';
},
handleCoreColor() {
this.$refs.core.style.borderColor = this.value ? this.onColor : this.offColor;
this.$refs.core.style.backgroundColor = this.value ? this.onColor : this.offColor;
}
},
mounted() {
/* istanbul ignore if */
if (this.width === 0) {
this.coreWidth = this.hasText ? 58 : 46;
}
this.handleButtonTransform();
if ((this.onColor || this.offColor) && !this.disabled) {
this.handleCoreColor();
}
}
};
</script>