2022-08-05 10:08:29 +00:00
|
|
|
export function handleGlobalEnterQuickSubmit(target) {
|
2023-06-14 08:01:37 +00:00
|
|
|
const form = target.closest('form');
|
|
|
|
if (form) {
|
|
|
|
if (!form.checkValidity()) {
|
|
|
|
form.reportValidity();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-05 10:08:29 +00:00
|
|
|
// 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
|
2024-02-16 20:03:50 +00:00
|
|
|
form.dispatchEvent(new SubmitEvent('submit', {bubbles: true, cancelable: true}));
|
2022-08-05 10:08:29 +00:00
|
|
|
} else {
|
|
|
|
// if no form, then the editor is for an AJAX request, dispatch an event to the target, let the target's event handler to do the AJAX request.
|
|
|
|
// the 'ce-' prefix means this is a CustomEvent
|
2023-06-14 08:01:37 +00:00
|
|
|
target.dispatchEvent(new CustomEvent('ce-quick-submit', {bubbles: true}));
|
2022-08-05 10:08:29 +00:00
|
|
|
}
|
|
|
|
}
|