Add clear buttons in bookmark form (#846)

This commit is contained in:
Sascha Ißbrücker
2024-09-23 11:02:30 +02:00
committed by GitHub
parent c5c5949d20
commit ed57da3c99
5 changed files with 101 additions and 41 deletions

View File

@@ -16,7 +16,24 @@ const mutationObserver = new MutationObserver((mutations) => {
});
});
document.addEventListener("turbo:load", () => {
// Update behaviors on Turbo events
// - turbo:load: initial page load, only listen once, afterward can rely on turbo:render
// - turbo:render: after page navigation, including back/forward, and failed form submissions
// - turbo:before-cache: before page navigation, reset DOM before caching
document.addEventListener(
"turbo:load",
() => {
mutationObserver.observe(document.body, {
childList: true,
subtree: true,
});
applyBehaviors(document.body);
},
{ once: true },
);
document.addEventListener("turbo:render", () => {
mutationObserver.observe(document.body, {
childList: true,
subtree: true,
@@ -41,7 +58,6 @@ Behavior.interacting = false;
export function registerBehavior(name, behavior) {
behaviorRegistry[name] = behavior;
applyBehaviors(document, [name]);
}
export function applyBehaviors(container, behaviorNames = null) {