Files
Atay-Makhzan/web_src/js/htmx.ts
T

22 lines
824 B
TypeScript
Raw Normal View History

import {showErrorToast} from './modules/toast.ts';
2025-03-16 10:04:18 +01:00
import 'idiomorph/htmx';
2024-08-28 18:32:38 +02:00
import type {HtmxResponseInfo} from 'htmx.org';
2024-08-28 18:32:38 +02:00
type HtmxEvent = Event & {detail: HtmxResponseInfo};
// https://htmx.org/reference/#config
2024-07-11 12:20:51 +02:00
window.htmx.config.requestClass = 'is-loading';
window.htmx.config.scrollIntoViewOnBoost = false;
// https://htmx.org/events/#htmx:sendError
document.body.addEventListener('htmx:sendError', (event: Partial<HtmxEvent>) => {
// TODO: add translations
showErrorToast(`Network error when calling ${event.detail.requestConfig.path}`);
});
// https://htmx.org/events/#htmx:responseError
document.body.addEventListener('htmx:responseError', (event: Partial<HtmxEvent>) => {
// TODO: add translations
showErrorToast(`Error ${event.detail.xhr.status} when calling ${event.detail.requestConfig.path}`);
});