完全跑通1.0版本
This commit is contained in:
80
frontend/node_modules/element-plus/es/hooks/use-popper/index.mjs
generated
vendored
Normal file
80
frontend/node_modules/element-plus/es/hooks/use-popper/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
import { fromPairs } from "lodash-unified";
|
||||
import { computed, onBeforeUnmount, ref, shallowRef, unref, watch } from "vue";
|
||||
import { createPopper } from "@popperjs/core";
|
||||
//#region ../../packages/hooks/use-popper/index.ts
|
||||
const usePopper = (referenceElementRef, popperElementRef, opts = {}) => {
|
||||
const stateUpdater = {
|
||||
name: "updateState",
|
||||
enabled: true,
|
||||
phase: "write",
|
||||
fn: ({ state }) => {
|
||||
const derivedState = deriveState(state);
|
||||
Object.assign(states.value, derivedState);
|
||||
},
|
||||
requires: ["computeStyles"]
|
||||
};
|
||||
const options = computed(() => {
|
||||
const { onFirstUpdate, placement, strategy, modifiers } = unref(opts);
|
||||
return {
|
||||
onFirstUpdate,
|
||||
placement: placement || "bottom",
|
||||
strategy: strategy || "absolute",
|
||||
modifiers: [
|
||||
...modifiers || [],
|
||||
stateUpdater,
|
||||
{
|
||||
name: "applyStyles",
|
||||
enabled: false
|
||||
}
|
||||
]
|
||||
};
|
||||
});
|
||||
const instanceRef = shallowRef();
|
||||
const states = ref({
|
||||
styles: {
|
||||
popper: {
|
||||
position: unref(options).strategy,
|
||||
left: "0",
|
||||
top: "0"
|
||||
},
|
||||
arrow: { position: "absolute" }
|
||||
},
|
||||
attributes: {}
|
||||
});
|
||||
const destroy = () => {
|
||||
if (!instanceRef.value) return;
|
||||
instanceRef.value.destroy();
|
||||
instanceRef.value = void 0;
|
||||
};
|
||||
watch(options, (newOptions) => {
|
||||
const instance = unref(instanceRef);
|
||||
if (instance) instance.setOptions(newOptions);
|
||||
}, { deep: true });
|
||||
watch([referenceElementRef, popperElementRef], ([referenceElement, popperElement]) => {
|
||||
destroy();
|
||||
if (!referenceElement || !popperElement) return;
|
||||
instanceRef.value = createPopper(referenceElement, popperElement, unref(options));
|
||||
});
|
||||
onBeforeUnmount(() => {
|
||||
destroy();
|
||||
});
|
||||
return {
|
||||
state: computed(() => ({ ...unref(instanceRef)?.state || {} })),
|
||||
styles: computed(() => unref(states).styles),
|
||||
attributes: computed(() => unref(states).attributes),
|
||||
update: () => unref(instanceRef)?.update(),
|
||||
forceUpdate: () => unref(instanceRef)?.forceUpdate(),
|
||||
instanceRef: computed(() => unref(instanceRef))
|
||||
};
|
||||
};
|
||||
function deriveState(state) {
|
||||
const elements = Object.keys(state.elements);
|
||||
return {
|
||||
styles: fromPairs(elements.map((element) => [element, state.styles[element] || {}])),
|
||||
attributes: fromPairs(elements.map((element) => [element, state.attributes[element]]))
|
||||
};
|
||||
}
|
||||
//#endregion
|
||||
export { usePopper };
|
||||
|
||||
//# sourceMappingURL=index.mjs.map
|
||||
Reference in New Issue
Block a user