mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
import { use } from '../utils';
|
|
import Loading from '../loading';
|
|
import { switchProps, SharedSwitchProps } from './shared';
|
|
import { emit, inherit } from '../utils/functional';
|
|
|
|
// Types
|
|
import { CreateElement, RenderContext } from 'vue/types';
|
|
import { DefaultSlots } from '../utils/use/sfc';
|
|
|
|
export type SwitchEvents = {
|
|
onChange?(checked: boolean): void;
|
|
};
|
|
|
|
const [sfc, bem] = use('switch');
|
|
|
|
function Switch(
|
|
h: CreateElement,
|
|
props: SharedSwitchProps,
|
|
slots: DefaultSlots,
|
|
ctx: RenderContext<SharedSwitchProps>
|
|
) {
|
|
const { value, loading, disabled, activeValue, inactiveValue } = props;
|
|
|
|
const checked = value === activeValue;
|
|
|
|
const style = {
|
|
fontSize: props.size,
|
|
backgroundColor: checked ? props.activeColor : props.inactiveColor
|
|
};
|
|
|
|
const onClick = () => {
|
|
if (!disabled && !loading) {
|
|
const newValue = checked ? inactiveValue : activeValue;
|
|
emit(ctx, 'input', newValue);
|
|
emit(ctx, 'change', newValue);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div
|
|
class={bem({
|
|
on: checked,
|
|
disabled
|
|
})}
|
|
style={style}
|
|
onClick={onClick}
|
|
{...inherit(ctx)}
|
|
>
|
|
<div class={bem('node')}>
|
|
{loading && <Loading class={bem('loading')} />}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Switch.props = switchProps;
|
|
|
|
export default sfc<SharedSwitchProps, SwitchEvents>(Switch);
|