forked from jchomaz/Vulture
Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
49
VApp/node_modules/.vite/deps/chunk-6MYZNPKW.js
generated
vendored
Normal file
49
VApp/node_modules/.vite/deps/chunk-6MYZNPKW.js
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
import {
|
||||
IN_BROWSER,
|
||||
refElement
|
||||
} from "./chunk-I4KGD5X4.js";
|
||||
import {
|
||||
onBeforeUnmount,
|
||||
readonly,
|
||||
ref,
|
||||
watch
|
||||
} from "./chunk-PD2AWGJV.js";
|
||||
|
||||
// node_modules/vuetify/lib/composables/resizeObserver.mjs
|
||||
function useResizeObserver(callback) {
|
||||
let box = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "content";
|
||||
const resizeRef = ref();
|
||||
const contentRect = ref();
|
||||
if (IN_BROWSER) {
|
||||
const observer = new ResizeObserver((entries) => {
|
||||
callback == null ? void 0 : callback(entries, observer);
|
||||
if (!entries.length) return;
|
||||
if (box === "content") {
|
||||
contentRect.value = entries[0].contentRect;
|
||||
} else {
|
||||
contentRect.value = entries[0].target.getBoundingClientRect();
|
||||
}
|
||||
});
|
||||
onBeforeUnmount(() => {
|
||||
observer.disconnect();
|
||||
});
|
||||
watch(resizeRef, (newValue, oldValue) => {
|
||||
if (oldValue) {
|
||||
observer.unobserve(refElement(oldValue));
|
||||
contentRect.value = void 0;
|
||||
}
|
||||
if (newValue) observer.observe(refElement(newValue));
|
||||
}, {
|
||||
flush: "post"
|
||||
});
|
||||
}
|
||||
return {
|
||||
resizeRef,
|
||||
contentRect: readonly(contentRect)
|
||||
};
|
||||
}
|
||||
|
||||
export {
|
||||
useResizeObserver
|
||||
};
|
||||
//# sourceMappingURL=chunk-6MYZNPKW.js.map
|
||||
Reference in New Issue
Block a user