b68a131bae
Port FastHTML's proc_htmx as onSwap(selector, initializeElement) in utils.js, built on htmx.onLoad: it runs an initializer once per matching element, on initial page load and inside every htmx-swapped fragment. Migrate search_select.js, range_slider.js, filter_bar.js and add_purchase.js to it, removing the hand-rolled DOMContentLoaded + htmx:afterSwap listeners and per-element guard flags. This also fixes a latent bug: both events passed the Event object as range_slider's "force" parameter, so every htmx swap force-re-initialized all sliders and stacked duplicate listeners. The collapse button's window.initRangeSliders() call was a no-op (handles are positioned in percentages, so hidden-init is safe) and is removed with the global. Add e2e/test_widgets_e2e.py covering the onSwap lifecycle (initial-load init, htmx-swap init, single-fire toggles) plus FilterSelect pills and the add-purchase type toggle. The synthetic page in test_search_select_e2e.py now loads htmx and search_select.js as a module, matching the new initialization path. https://claude.ai/code/session_01BKurBhE3Qj25p7Bfsg7EeK
239 lines
8.2 KiB
JavaScript
239 lines
8.2 KiB
JavaScript
/**
|
|
* @description Runs initializeElement once for each element matching selector,
|
|
* on initial page load and inside every htmx-swapped fragment (a port of
|
|
* FastHTML's proc_htmx). htmx fires htmx:load for the initial document and for
|
|
* each swapped-in element, so a single registration covers both; the WeakSet
|
|
* guarantees once-per-element initialization, replacing the old
|
|
* DOMContentLoaded + htmx:afterSwap + per-element guard-flag pattern.
|
|
* @param {string} selector
|
|
* @param {function(Element): void} initializeElement
|
|
*/
|
|
function onSwap(selector, initializeElement) {
|
|
const initialized = new WeakSet();
|
|
htmx.onLoad((swappedElement) => {
|
|
const elements = Array.from(htmx.findAll(swappedElement, selector));
|
|
if (swappedElement.matches && swappedElement.matches(selector)) {
|
|
elements.unshift(swappedElement);
|
|
}
|
|
for (const element of elements) {
|
|
if (initialized.has(element)) continue;
|
|
initialized.add(element);
|
|
initializeElement(element);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @description Formats Date to a UTC string accepted by the datetime-local input field.
|
|
* @param {Date} date
|
|
* @returns {string}
|
|
*/
|
|
function toISOUTCString(date) {
|
|
function stringAndPad(number) {
|
|
return number.toString().padStart(2, 0);
|
|
}
|
|
const year = date.getFullYear();
|
|
const month = stringAndPad(date.getMonth() + 1);
|
|
const day = stringAndPad(date.getDate());
|
|
const hours = stringAndPad(date.getHours());
|
|
const minutes = stringAndPad(date.getMinutes());
|
|
return `${year}-${month}-${day}T${hours}:${minutes}`;
|
|
}
|
|
|
|
/**
|
|
* @description Sync values between source and target elements based on syncData configuration.
|
|
* @param {Array} syncData - Array of objects to define source and target elements with their respective value types.
|
|
*/
|
|
function syncSelectInputUntilChanged(syncData, parentSelector = document) {
|
|
const parentElement =
|
|
parentSelector === document
|
|
? document
|
|
: document.querySelector(parentSelector);
|
|
|
|
if (!parentElement) {
|
|
console.error(`The parent selector "${parentSelector}" is not valid.`);
|
|
return;
|
|
}
|
|
// Set up a single change event listener on the document for handling all source changes
|
|
parentElement.addEventListener("change", function (event) {
|
|
// Loop through each sync configuration item
|
|
syncData.forEach((syncItem) => {
|
|
// Check if the change event target matches the source selector
|
|
if (event.target.matches(syncItem.source)) {
|
|
const sourceElement = event.target;
|
|
const valueToSync = getValueFromProperty(
|
|
sourceElement,
|
|
syncItem.source_value
|
|
);
|
|
const targetElement = document.querySelector(syncItem.target);
|
|
|
|
if (targetElement && valueToSync !== null) {
|
|
console.log(`Changing value of ${syncItem.target} to ${valueToSync}`)
|
|
targetElement[syncItem.target_value] = valueToSync;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
// Set up a single focus event listener on the document for handling all target focuses
|
|
parentElement.addEventListener(
|
|
"focus",
|
|
function (event) {
|
|
// Loop through each sync configuration item
|
|
syncData.forEach((syncItem) => {
|
|
// Check if the focus event target matches the target selector
|
|
if (event.target.matches(syncItem.target)) {
|
|
// Remove the change event listener to stop syncing
|
|
// This assumes you want to stop syncing once any target receives focus
|
|
// You may need a more sophisticated way to remove listeners if you want to stop
|
|
// syncing selectively based on other conditions
|
|
document.removeEventListener("change", syncSelectInputUntilChanged);
|
|
}
|
|
});
|
|
},
|
|
true
|
|
); // Use capture phase to ensure the event is captured during focus, not bubble
|
|
}
|
|
|
|
/**
|
|
* @description Retrieve the value from the source element based on the provided property.
|
|
* @param {Element} sourceElement - The source HTML element.
|
|
* @param {string} property - The property to retrieve the value from.
|
|
*/
|
|
function getValueFromProperty(sourceElement, property) {
|
|
let source =
|
|
sourceElement instanceof HTMLSelectElement
|
|
? sourceElement.selectedOptions[0]
|
|
: sourceElement;
|
|
if (property.startsWith("dataset.")) {
|
|
let datasetKey = property.slice(8); // Remove 'dataset.' part
|
|
return source.dataset[datasetKey];
|
|
} else if (property in source) {
|
|
return source[property];
|
|
} else {
|
|
console.error(`Property ${property} is not valid for the option element.`);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @description Returns a single element by name.
|
|
* @param {string} selector The selector to look for.
|
|
*/
|
|
function getEl(selector) {
|
|
if (selector.startsWith("#")) {
|
|
return document.getElementById(selector.slice(1));
|
|
} else if (selector.startsWith(".")) {
|
|
return document.getElementsByClassName(selector);
|
|
} else {
|
|
return document.getElementsByTagName(selector);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @description Applies different behaviors to elements based on multiple conditional configurations.
|
|
* Each configuration is an array containing a condition function, an array of target element selectors,
|
|
* and two callback functions for handling matched and unmatched conditions.
|
|
* @param {...Array} configs Each configuration is an array of the form:
|
|
* - 0: {function(): boolean} condition - Function that returns true or false based on a condition.
|
|
* - 1: {string[]} targetElements - Array of CSS selectors for target elements.
|
|
* - 2: {function(HTMLElement): void} callbackfn1 - Function to execute when condition is true.
|
|
* - 3: {function(HTMLElement): void} callbackfn2 - Function to execute when condition is false.
|
|
*/
|
|
function conditionalElementHandler(...configs) {
|
|
configs.forEach(([condition, targetElements, callbackfn1, callbackfn2]) => {
|
|
if (condition()) {
|
|
targetElements.forEach((elementName) => {
|
|
let el = getEl(elementName);
|
|
if (el === null) {
|
|
console.error(`Element ${elementName} doesn't exist.`);
|
|
} else {
|
|
callbackfn1(el);
|
|
}
|
|
});
|
|
} else {
|
|
targetElements.forEach((elementName) => {
|
|
let el = getEl(elementName);
|
|
if (el === null) {
|
|
console.error(`Element ${elementName} doesn't exist.`);
|
|
} else {
|
|
callbackfn2(el);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
function disableElementsWhenValueNotEqual(
|
|
targetSelect,
|
|
targetValue,
|
|
elementList
|
|
) {
|
|
return conditionalElementHandler([
|
|
() => {
|
|
let target = getEl(targetSelect);
|
|
console.debug(
|
|
`${disableElementsWhenTrue.name}: triggered on ${target.id}`
|
|
);
|
|
console.debug(`
|
|
${disableElementsWhenTrue.name}: matching against value(s): ${targetValue}`);
|
|
if (targetValue instanceof Array) {
|
|
if (targetValue.every((value) => target.value != value)) {
|
|
console.debug(
|
|
`${disableElementsWhenTrue.name}: none of the values is equal to ${target.value}, returning true.`
|
|
);
|
|
return true;
|
|
}
|
|
} else {
|
|
console.debug(
|
|
`${disableElementsWhenTrue.name}: none of the values is equal to ${target.value}, returning true.`
|
|
);
|
|
return target.value != targetValue;
|
|
}
|
|
},
|
|
elementList,
|
|
(el) => {
|
|
console.debug(
|
|
`${disableElementsWhenTrue.name}: evaluated true, disabling ${el.id}.`
|
|
);
|
|
el.disabled = "disabled";
|
|
},
|
|
(el) => {
|
|
console.debug(
|
|
`${disableElementsWhenTrue.name}: evaluated false, NOT disabling ${el.id}.`
|
|
);
|
|
el.disabled = "";
|
|
},
|
|
]);
|
|
}
|
|
|
|
function disableElementsWhenTrue(targetSelect, targetValue, elementList) {
|
|
return conditionalElementHandler([
|
|
() => {
|
|
console.log(`${disableElementsWhenTrue.name}: triggered on ${targetSelect}`)
|
|
console.log(`Value of ${targetSelect} is ${targetValue}: ${getEl(targetSelect).value == targetValue}`)
|
|
return getEl(targetSelect).value == targetValue;
|
|
},
|
|
elementList,
|
|
(el) => {
|
|
console.log(`${disableElementsWhenTrue.name}: disabling ${el.id}`)
|
|
el.disabled = "disabled";
|
|
},
|
|
(el) => {
|
|
console.log(`${disableElementsWhenTrue.name}: enabling ${el.id}`)
|
|
el.disabled = "";
|
|
},
|
|
]);
|
|
}
|
|
|
|
export {
|
|
onSwap,
|
|
toISOUTCString,
|
|
syncSelectInputUntilChanged,
|
|
getEl,
|
|
conditionalElementHandler,
|
|
disableElementsWhenValueNotEqual,
|
|
disableElementsWhenTrue,
|
|
getValueFromProperty,
|
|
};
|