You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.3 KiB
122 lines
3.3 KiB
11 months ago
|
import { getCurrentInstance, computed, watch, onMounted } from 'vue';
|
||
|
import { isFunction } from '@vue/shared';
|
||
|
import { isClient } from '@vueuse/core';
|
||
|
import { isBool } from '../../utils/util.mjs';
|
||
|
import { buildProp, definePropType } from '../../utils/props.mjs';
|
||
|
|
||
|
const createModelToggleComposable = (name) => {
|
||
|
const useModelToggleProps2 = {
|
||
|
[name]: buildProp({
|
||
|
type: definePropType(Boolean),
|
||
|
default: null
|
||
|
}),
|
||
|
[`onUpdate:${name}`]: buildProp({
|
||
|
type: definePropType(Function)
|
||
|
})
|
||
|
};
|
||
|
const useModelToggleEmits2 = [`update:${name}`];
|
||
|
const useModelToggle2 = ({
|
||
|
indicator,
|
||
|
shouldHideWhenRouteChanges,
|
||
|
shouldProceed,
|
||
|
onShow,
|
||
|
onHide
|
||
|
}) => {
|
||
|
const instance = getCurrentInstance();
|
||
|
const props = instance.props;
|
||
|
const { emit } = instance;
|
||
|
const updateEventKey = `update:${name}`;
|
||
|
const hasUpdateHandler = computed(() => isFunction(props[`onUpdate:${name}`]));
|
||
|
const isModelBindingAbsent = computed(() => props[name] === null);
|
||
|
const doShow = () => {
|
||
|
if (indicator.value === true) {
|
||
|
return;
|
||
|
}
|
||
|
indicator.value = true;
|
||
|
if (isFunction(onShow)) {
|
||
|
onShow();
|
||
|
}
|
||
|
};
|
||
|
const doHide = () => {
|
||
|
if (indicator.value === false) {
|
||
|
return;
|
||
|
}
|
||
|
indicator.value = false;
|
||
|
if (isFunction(onHide)) {
|
||
|
onHide();
|
||
|
}
|
||
|
};
|
||
|
const show = () => {
|
||
|
if (props.disabled === true || isFunction(shouldProceed) && !shouldProceed())
|
||
|
return;
|
||
|
const shouldEmit = hasUpdateHandler.value && isClient;
|
||
|
if (shouldEmit) {
|
||
|
emit(updateEventKey, true);
|
||
|
}
|
||
|
if (isModelBindingAbsent.value || !shouldEmit) {
|
||
|
doShow();
|
||
|
}
|
||
|
};
|
||
|
const hide = () => {
|
||
|
if (props.disabled === true || !isClient)
|
||
|
return;
|
||
|
const shouldEmit = hasUpdateHandler.value && isClient;
|
||
|
if (shouldEmit) {
|
||
|
emit(updateEventKey, false);
|
||
|
}
|
||
|
if (isModelBindingAbsent.value || !shouldEmit) {
|
||
|
doHide();
|
||
|
}
|
||
|
};
|
||
|
const onChange = (val) => {
|
||
|
if (!isBool(val))
|
||
|
return;
|
||
|
if (props.disabled && val) {
|
||
|
if (hasUpdateHandler.value) {
|
||
|
emit(updateEventKey, false);
|
||
|
}
|
||
|
} else if (indicator.value !== val) {
|
||
|
if (val) {
|
||
|
doShow();
|
||
|
} else {
|
||
|
doHide();
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
const toggle = () => {
|
||
|
if (indicator.value) {
|
||
|
hide();
|
||
|
} else {
|
||
|
show();
|
||
|
}
|
||
|
};
|
||
|
watch(() => props[name], onChange);
|
||
|
if (shouldHideWhenRouteChanges && instance.appContext.config.globalProperties.$route !== void 0) {
|
||
|
watch(() => ({
|
||
|
...instance.proxy.$route
|
||
|
}), () => {
|
||
|
if (shouldHideWhenRouteChanges.value && indicator.value) {
|
||
|
hide();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
onMounted(() => {
|
||
|
onChange(props[name]);
|
||
|
});
|
||
|
return {
|
||
|
hide,
|
||
|
show,
|
||
|
toggle
|
||
|
};
|
||
|
};
|
||
|
return {
|
||
|
useModelToggle: useModelToggle2,
|
||
|
useModelToggleProps: useModelToggleProps2,
|
||
|
useModelToggleEmits: useModelToggleEmits2
|
||
|
};
|
||
|
};
|
||
|
const { useModelToggle, useModelToggleProps, useModelToggleEmits } = createModelToggleComposable("modelValue");
|
||
|
|
||
|
export { createModelToggleComposable, useModelToggle, useModelToggleEmits, useModelToggleProps };
|
||
|
//# sourceMappingURL=index.mjs.map
|