2024-02-02 09:05:04 -06:00
|
|
|
import { Application } from "@hotwired/stimulus"
|
|
|
|
|
|
|
|
const application = Application.start()
|
|
|
|
|
|
|
|
// Configure Stimulus development experience
|
|
|
|
application.debug = false
|
|
|
|
window.Stimulus = application
|
|
|
|
|
2024-03-29 17:33:49 +00:00
|
|
|
Turbo.setConfirmMethod((message) => {
|
|
|
|
const dialog = document.getElementById("turbo-confirm");
|
|
|
|
|
|
|
|
try {
|
|
|
|
const { title, body, accept } = JSON.parse(message);
|
|
|
|
|
|
|
|
if (title) {
|
|
|
|
document.getElementById("turbo-confirm-title").innerHTML = title;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (body) {
|
|
|
|
document.getElementById("turbo-confirm-body").innerHTML = body;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (accept) {
|
|
|
|
document.getElementById("turbo-confirm-accept").innerHTML = accept;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
document.getElementById("turbo-confirm-title").innerText = message;
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog.showModal();
|
|
|
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
dialog.addEventListener("close", () => {
|
|
|
|
resolve(dialog.returnValue == "confirm")
|
|
|
|
}, { once: true })
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2024-02-02 09:05:04 -06:00
|
|
|
export { application }
|