In my Metronic Laravel project, I am experiencing a problem where JavaScript callbacks defined inside KTUtil.onDOMContentLoaded are being executed multiple times. This behavior results in unintended duplication of actions, such as initializing Quill editors and logging repeated console messages.
The issue is particularly tied to the livewire:navigated event listener inside the onDOMContentLoaded function in KTUtil. The relevant function is as follows:
onDOMContentLoaded: function(callback) {
console.log("KTUtil.onDOMContentLoaded called!");
if (document.readyState === "loading") {
console.log("Adding DOMContentLoaded and livewire:navigated listeners...");
document.addEventListener("DOMContentLoaded", callback);
document.addEventListener("livewire:navigated", callback);
} else {
console.log("DOMContentLoaded already triggered, executing callback directly...");
callback();
}
}
onDOMContentLoaded: function(callback) {
console.log("KTUtil.onDOMContentLoaded called!");
if (document.readyState === "loading") {
console.log("Adding DOMContentLoaded listener...");
document.addEventListener("DOMContentLoaded", callback);
} else {
console.log("DOMContentLoaded already triggered, executing callback directly...");
callback();
}
}
// Handle Livewire-specific logic independently
document.addEventListener("livewire:navigated", function() {
console.log("Livewire navigated triggered...");
// Callbacks or updates specific to Livewire can be handled here
});
let isCallbackExecuted = false;
onDOMContentLoaded: function(callback) {
if (isCallbackExecuted) {
console.warn("Callback already executed. Skipping...");
return;
}
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", () => {
if (!isCallbackExecuted) {
isCallbackExecuted = true;
callback();
}
});
} else {
if (!isCallbackExecuted) {
isCallbackExecuted = true;
callback();
}
}
}
I experienced the same issue. The onDOMContentLoaded is executing the callback multiple times when livewire:navigated is triggered. This happens because Livewire navigations (e.g., when using wire:navigate) fire the livewire:navigated event, causing the callback to run again even after the initial DOMContentLoaded event.
The fix i came up with was: Remove Event Listeners After Execution.
To ensure that the callback is executed only once, I removed the event listeners after they fire.
My updated code is:
onDOMContentLoaded: function(callback) {
console.log("KTUtil.onDOMContentLoaded called!");
function handler() {
console.log("Executing callback...");
callback();
document.removeEventListener("DOMContentLoaded", handler);
document.removeEventListener("livewire:navigated", handler);
}
if (document.readyState === "loading") {
console.log("Adding DOMContentLoaded and livewire:navigated listeners...");
document.addEventListener("DOMContentLoaded", handler);
document.addEventListener("livewire:navigated", handler);
} else {
console.log("DOMContentLoaded already triggered, executing callback directly...");
handler();
}
}
The above appears to work correctly for me.
Thank you,
Nayim.
Puzzle Lover
I usually stick to puzzle games, but slope caught my attention with its simple mechanics and challenging gameplay. It’s almost like solving a fast-paced puzzle where every move has to be calculated within a split second. The satisfaction of making it through tricky sections is unmatched, and the randomness of the obstacles keeps it fresh every time I play.
It sounds like a frustrating issue with the tentLoaded function causing multiple executions! This can definitely lead to confusion, especially with repeated console messages. To mitigate such problems, consider debouncing the event listener. On a lighter note, while troubleshooting, why not take a break with the pacman 30th anniversary game? It's a classic that never gets old!
Hi Omer
Could you please check this post about a similar issue? Hopefully, it helps.
https://devs.keenthemes.com/question/components-freeze-after-livewire-navigate#answers
Thanks