2022-08-05 10:08:29 +00:00
|
|
|
export function handleGlobalEnterQuickSubmit(target) {
|
2024-04-27 14:32:00 +00:00
|
|
|
let form = target.closest('form');
|
2023-06-14 08:01:37 +00:00
|
|
|
if (form) {
|
|
|
|
if (!form.checkValidity()) {
|
|
|
|
form.reportValidity();
|
2024-05-05 13:09:41 +00:00
|
|
|
} else {
|
|
|
|
// here use the event to trigger the submit event (instead of calling `submit()` method directly)
|
|
|
|
// otherwise the `areYouSure` handler won't be executed, then there will be an annoying "confirm to leave" dialog
|
|
|
|
form.dispatchEvent(new SubmitEvent('submit', {bubbles: true, cancelable: true}));
|
2023-06-14 08:01:37 +00:00
|
|
|
}
|
2024-05-05 13:09:41 +00:00
|
|
|
return true;
|
2024-04-27 14:32:00 +00:00
|
|
|
}
|
|
|
|
form = target.closest('.ui.form');
|
|
|
|
if (form) {
|
|
|
|
form.querySelector('.ui.primary.button')?.click();
|
2024-05-05 13:09:41 +00:00
|
|
|
return true;
|
2022-08-05 10:08:29 +00:00
|
|
|
}
|
2024-05-05 13:09:41 +00:00
|
|
|
return false;
|
2022-08-05 10:08:29 +00:00
|
|
|
}
|