You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
import { enableUnlimitedInputs } from './unlimitedInput';
|
|
import { updateAdvancedTextarea } from './toggleAdvanced';
|
|
import { showSpinner } from './helpers';
|
|
|
|
export default function handleFormSubmit() {
|
|
const mainForm = document.querySelector('#main-form');
|
|
if (mainForm) {
|
|
mainForm.addEventListener('submit', () => {
|
|
// Show loading spinner
|
|
showSpinner();
|
|
|
|
// Enable any disabled inputs to ensure all fields are submitted
|
|
if (mainForm.classList.contains('js-enable-inputs-on-submit')) {
|
|
document.querySelectorAll('input[disabled]').forEach((input) => {
|
|
input.disabled = false;
|
|
});
|
|
}
|
|
|
|
// Enable any disabled unlimited inputs and set their value to "unlimited"
|
|
enableUnlimitedInputs();
|
|
|
|
// Update the "advanced options" textarea with "basic options" input values
|
|
const basicOptionsWrapper = document.querySelector('.js-basic-options');
|
|
if (basicOptionsWrapper && !basicOptionsWrapper.classList.contains('u-hidden')) {
|
|
updateAdvancedTextarea();
|
|
}
|
|
});
|
|
}
|
|
|
|
const bulkEditForm = document.querySelector('[x-bind="BulkEdit"]');
|
|
if (bulkEditForm) {
|
|
bulkEditForm.addEventListener('submit', () => {
|
|
// Show loading spinner
|
|
showSpinner();
|
|
});
|
|
}
|
|
}
|