proud-librarian-99598
05/13/2023, 1:17 PMmysterious-toddler-20573
05/13/2023, 1:33 PMquick-lamp-41411
05/13/2023, 1:34 PMbitter-machine-55943
05/13/2023, 1:36 PMclean-piano-67951
05/13/2023, 1:49 PMquick-lamp-41411
05/13/2023, 1:50 PMHX-Reswap
headerquick-lamp-41411
05/13/2023, 1:50 PMHX-Retarget
ratherquick-lamp-41411
05/13/2023, 1:52 PMclean-piano-67951
05/13/2023, 1:52 PMclean-piano-67951
05/13/2023, 2:12 PMquick-lamp-41411
05/13/2023, 2:21 PMbland-coat-6833
05/13/2023, 2:25 PMHx-Retarget
header?quick-lamp-41411
05/13/2023, 2:25 PMquick-lamp-41411
05/13/2023, 2:30 PMgreat-cartoon-12331
05/13/2023, 9:10 PMgreat-cartoon-12331
05/13/2023, 9:10 PMlate-king-98305
05/13/2023, 10:01 PMhttps://cdn.discordapp.com/attachments/725789747212976259/1107065139808714923/image.png▾
limited-teacher-83117
05/14/2023, 1:38 AMjs
document.addEventListener('DOMContentLoaded', function () {
document.body.addEventListener('htmx:beforeSwap', function (evt) {
const status = evt.detail.xhr.status
if (status === 400 || status === 500) {
// Stops the error from logging in the console
evt.detail.isError = false
// Create an error dialog box
const errorDialog = document.createElement('div')
errorDialog.classList.add('error-message')
errorDialog.innerText = evt.detail.serverResponse
errorDialog.setAttribute('onclick', 'this.remove()')
// Get the nav and place the element after it
const nav = document.querySelector('.site-nav')
nav.insertAdjacentElement('afterend', errorDialog)
errorDialog.scrollIntoView()
}
})
})
limited-teacher-83117
05/14/2023, 1:41 AMhx-delete
specifically, because it tripped me up the first time and I see it in the discord occasionally: https://htmx.org/attributes/hx-delete/great-cartoon-12331
05/14/2023, 1:43 AMjavascript
// If there's an error response, show it in the toast
document.addEventListener('htmx:responseError', evt => {
document.getElementById('toast').outerHTML =
`<p id="toast" class="error">${evt.detail.xhr.responseText}</p>`;
});
great-cartoon-12331
05/14/2023, 1:44 AM#toast.error
and keeps it fixed in placegreat-cartoon-12331
05/14/2023, 1:50 AM#toast
(hidden by default)mysterious-toddler-20573
05/14/2023, 2:09 AMlimited-teacher-83117
05/14/2023, 2:10 AMlimited-teacher-83117
05/14/2023, 2:29 AMgreat-cartoon-12331
05/14/2023, 2:30 AMmysterious-toddler-20573
05/14/2023, 2:34 AMlimited-teacher-83117
05/14/2023, 2:35 AMadventurous-ocean-93733
05/14/2023, 11:04 AM