Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
47
VApp/node_modules/vuetify/lib/directives/mutate/index.mjs
generated
vendored
Normal file
47
VApp/node_modules/vuetify/lib/directives/mutate/index.mjs
generated
vendored
Normal file
@ -0,0 +1,47 @@
|
||||
// Types
|
||||
|
||||
function mounted(el, binding) {
|
||||
const modifiers = binding.modifiers || {};
|
||||
const value = binding.value;
|
||||
const {
|
||||
once,
|
||||
immediate,
|
||||
...modifierKeys
|
||||
} = modifiers;
|
||||
const defaultValue = !Object.keys(modifierKeys).length;
|
||||
const {
|
||||
handler,
|
||||
options
|
||||
} = typeof value === 'object' ? value : {
|
||||
handler: value,
|
||||
options: {
|
||||
attributes: modifierKeys?.attr ?? defaultValue,
|
||||
characterData: modifierKeys?.char ?? defaultValue,
|
||||
childList: modifierKeys?.child ?? defaultValue,
|
||||
subtree: modifierKeys?.sub ?? defaultValue
|
||||
}
|
||||
};
|
||||
const observer = new MutationObserver(function () {
|
||||
let mutations = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
||||
let observer = arguments.length > 1 ? arguments[1] : undefined;
|
||||
handler?.(mutations, observer);
|
||||
if (once) unmounted(el, binding);
|
||||
});
|
||||
if (immediate) handler?.([], observer);
|
||||
el._mutate = Object(el._mutate);
|
||||
el._mutate[binding.instance.$.uid] = {
|
||||
observer
|
||||
};
|
||||
observer.observe(el, options);
|
||||
}
|
||||
function unmounted(el, binding) {
|
||||
if (!el._mutate?.[binding.instance.$.uid]) return;
|
||||
el._mutate[binding.instance.$.uid].observer.disconnect();
|
||||
delete el._mutate[binding.instance.$.uid];
|
||||
}
|
||||
export const Mutate = {
|
||||
mounted,
|
||||
unmounted
|
||||
};
|
||||
export default Mutate;
|
||||
//# sourceMappingURL=index.mjs.map
|
Reference in New Issue
Block a user