delete-group.js
3 months ago
edit-group.js
1 month ago
form-submission.js
3 months ago
forms.css
3 months ago
icons.css
3 months ago
listShowMore.js
3 months ago
listing.css
3 months ago
listing.js
3 months ago
sort-ads.js
3 months ago
table.css
3 months ago
form-submission.js
170 lines
| 1 | import jQuery from 'jquery'; |
| 2 | import apiFetch from '@wordpress/api-fetch'; |
| 3 | |
| 4 | /** |
| 5 | * Disable inputs on a form |
| 6 | * |
| 7 | * @param {Node} form the form. |
| 8 | * @param {boolean} disabled disable inputs if `true`. |
| 9 | */ |
| 10 | function disable(form, disabled) { |
| 11 | if ('undefined' === typeof disabled) { |
| 12 | disabled = true; |
| 13 | } |
| 14 | |
| 15 | if (!form.useableInputs) { |
| 16 | form.useableInputs = jQuery(form) |
| 17 | .closest('dialog') |
| 18 | .find('select,input,textarea,button,a.button') |
| 19 | .not(':disabled'); |
| 20 | } |
| 21 | |
| 22 | form.useableInputs.prop('disabled', disabled); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Edit group form |
| 27 | * |
| 28 | * @param {Node} form the form node. |
| 29 | */ |
| 30 | function submitUpdateGroup(form) { |
| 31 | const $form = jQuery(form), |
| 32 | formData = $form.serialize(); |
| 33 | |
| 34 | disable(form); |
| 35 | apiFetch({ |
| 36 | path: '/advanced-ads/v1/group', |
| 37 | method: 'PUT', |
| 38 | data: { |
| 39 | fields: formData, |
| 40 | }, |
| 41 | }).then(function (response) { |
| 42 | if (response.error) { |
| 43 | // Show an error message if there is an "error" field in the response |
| 44 | disable(form, false); |
| 45 | form.closest('dialog').close(); |
| 46 | window.advancedAds.notifications.addError(response.error); |
| 47 | return; |
| 48 | } |
| 49 | |
| 50 | const dialog = form.closest('dialog'); |
| 51 | dialog.advadsTermination.resetInitialValues(); |
| 52 | |
| 53 | if (response.reload) { |
| 54 | // Reload the page if needed. |
| 55 | localStorage.setItem( |
| 56 | 'advadsUpdateMessage', |
| 57 | JSON.stringify({ |
| 58 | type: 'success', |
| 59 | message: window.advancedAds.i18n.groups.updated, |
| 60 | }) |
| 61 | ); |
| 62 | window.location.reload(); |
| 63 | return; |
| 64 | } |
| 65 | |
| 66 | window.advancedAds.notifications.addSuccess( |
| 67 | window.advancedAds.i18n.groups.updated |
| 68 | ); |
| 69 | |
| 70 | dialog.close(); |
| 71 | }); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Create new group |
| 76 | * |
| 77 | * @param {Node} form the form. |
| 78 | */ |
| 79 | function submitNewGroup(form) { |
| 80 | const $form = jQuery(form), |
| 81 | formData = $form.serialize(); |
| 82 | disable(form); |
| 83 | apiFetch({ |
| 84 | path: '/advanced-ads/v1/group', |
| 85 | method: 'POST', |
| 86 | data: { |
| 87 | fields: formData, |
| 88 | }, |
| 89 | }).then(function (response) { |
| 90 | if (response.error) { |
| 91 | // Show an error message if there is an "error" field in the response |
| 92 | disable(form, false); |
| 93 | form.closest('dialog').close(); |
| 94 | window.advancedAds.notifications.addError(response.error); |
| 95 | return; |
| 96 | } |
| 97 | |
| 98 | const dialog = form.closest('dialog'); |
| 99 | dialog.advadsTermination.resetInitialValues(); |
| 100 | document.location.href = `#modal-group-edit-${response.group_data.id}`; |
| 101 | localStorage.setItem( |
| 102 | 'advadsUpdateMessage', |
| 103 | JSON.stringify({ |
| 104 | type: 'success', |
| 105 | message: window.advancedAds.i18n.groups.saveNew, |
| 106 | }) |
| 107 | ); |
| 108 | document.location.reload(); |
| 109 | }); |
| 110 | } |
| 111 | |
| 112 | export default function () { |
| 113 | // Stop create group form submission. |
| 114 | wp.hooks.addFilter( |
| 115 | 'advanced-ads-submit-modal-form', |
| 116 | 'advancedAds', |
| 117 | function (send, form) { |
| 118 | if ('advads-group-new-form' === form.id) { |
| 119 | submitNewGroup(form); |
| 120 | return false; |
| 121 | } |
| 122 | return send; |
| 123 | } |
| 124 | ); |
| 125 | |
| 126 | // Stop edit group form submission. |
| 127 | wp.hooks.addFilter( |
| 128 | 'advanced-ads-submit-modal-form', |
| 129 | 'advancedAds', |
| 130 | function (send, form) { |
| 131 | if ('update-group' === form.name) { |
| 132 | submitUpdateGroup(form); |
| 133 | return false; |
| 134 | } |
| 135 | return send; |
| 136 | } |
| 137 | ); |
| 138 | |
| 139 | // Add custom submit button for each edit group form. |
| 140 | jQuery('[id^="modal-group-edit-"]').each(function () { |
| 141 | jQuery(this) |
| 142 | .find('.advads-modal-footer') |
| 143 | .html( |
| 144 | `<button class="button button-primary submit-edit-group">${window.advancedAds.i18n.groups.save}</button>` |
| 145 | ); |
| 146 | }); |
| 147 | |
| 148 | // Add custom submit button for the create group form. |
| 149 | jQuery('#modal-group-new') |
| 150 | .find('.advads-modal-footer') |
| 151 | .html( |
| 152 | `<button class="button button-primary" id="submit-new-group">${window.advancedAds.i18n.groups.saveNew}</button>` |
| 153 | ); |
| 154 | |
| 155 | // Click on custom submit button of an edit group form. |
| 156 | jQuery(document).on('click', '.submit-edit-group', function () { |
| 157 | submitUpdateGroup(jQuery(this).closest('dialog').find('form')[0]); |
| 158 | }); |
| 159 | |
| 160 | // Click on the submit button for the create group form. |
| 161 | jQuery(document).on('click', '#submit-new-group', function () { |
| 162 | const $form = jQuery('#advads-group-new-form'), |
| 163 | validation = $form.closest('dialog')[0].closeValidation; |
| 164 | if (!window[validation.function](validation.modal_id)) { |
| 165 | return; |
| 166 | } |
| 167 | submitNewGroup($form[0]); |
| 168 | }); |
| 169 | } |
| 170 |