mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
76 lines
1.8 KiB
TypeScript
76 lines
1.8 KiB
TypeScript
import { defineComponent } from 'vue';
|
|
import { createNamespace, addUnit, unknownProp } from '../utils';
|
|
import { useCustomFieldValue } from '@vant/use';
|
|
import { Loading } from '../loading';
|
|
|
|
const [name, bem] = createNamespace('switch');
|
|
|
|
export default defineComponent({
|
|
name,
|
|
|
|
props: {
|
|
size: [Number, String],
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
modelValue: unknownProp,
|
|
activeColor: String,
|
|
inactiveColor: String,
|
|
activeValue: {
|
|
type: unknownProp,
|
|
default: true as unknown,
|
|
},
|
|
inactiveValue: {
|
|
type: unknownProp,
|
|
default: false as unknown,
|
|
},
|
|
},
|
|
|
|
emits: ['change', 'update:modelValue'],
|
|
|
|
setup(props, { emit }) {
|
|
const isChecked = () => props.modelValue === props.activeValue;
|
|
|
|
const onClick = () => {
|
|
if (!props.disabled && !props.loading) {
|
|
const newValue = isChecked() ? props.inactiveValue : props.activeValue;
|
|
emit('update:modelValue', newValue);
|
|
emit('change', newValue);
|
|
}
|
|
};
|
|
|
|
const renderLoading = () => {
|
|
if (props.loading) {
|
|
const color = isChecked() ? props.activeColor : props.inactiveColor;
|
|
return <Loading class={bem('loading')} color={color} />;
|
|
}
|
|
};
|
|
|
|
useCustomFieldValue(() => props.modelValue);
|
|
|
|
return () => {
|
|
const { size, loading, disabled, activeColor, inactiveColor } = props;
|
|
const checked = isChecked();
|
|
const style = {
|
|
fontSize: addUnit(size),
|
|
backgroundColor: checked ? activeColor : inactiveColor,
|
|
};
|
|
|
|
return (
|
|
<div
|
|
role="switch"
|
|
class={bem({
|
|
on: checked,
|
|
loading,
|
|
disabled,
|
|
})}
|
|
style={style}
|
|
aria-checked={checked}
|
|
onClick={onClick}
|
|
>
|
|
<div class={bem('node')}>{renderLoading()}</div>
|
|
</div>
|
|
);
|
|
};
|
|
},
|
|
});
|