74 lines
2.3 KiB
JavaScript
Raw Normal View History

2021-12-19 09:56:22 -08:00
/*
2021-12-25 14:39:34 -08:00
* Copyright [2021] [wisemapping]
2021-12-19 09:56:22 -08:00
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import $ from 'jquery';
import { $defined } from '@wisemapping/core-js';
2021-12-19 08:06:42 -08:00
import BootstrapDialog from './BootstrapDialog';
2021-07-16 11:41:58 -03:00
2021-12-04 15:39:20 -08:00
class BootstrapDialogRequest extends BootstrapDialog {
constructor(url, title, options) {
super(title, options);
2021-10-04 17:05:34 -07:00
this.requestOptions = {};
this.requestOptions.cache = false;
const me = this;
2021-12-19 09:56:22 -08:00
this.requestOptions.fail = (xhr) => {
2021-10-04 17:05:34 -07:00
// Intercept form requests ...
console.log('Failure:');
console.log(xhr);
};
2021-12-05 08:14:15 -08:00
this.requestOptions.success = function success() {
2021-10-04 17:05:34 -07:00
// Intercept form requests ...
const forms = me._native.find('form');
2021-12-05 08:14:15 -08:00
forms.forEach((form) => {
2021-10-04 17:05:34 -07:00
$(form).on('submit', (event) => {
// Intercept form ...
me.requestOptions.url = form.action;
me.requestOptions.method = form.method ? form.method : 'post';
$.ajax(me.requestOptions);
event.stopPropagation();
return false;
2021-07-16 11:41:58 -03:00
});
2021-10-04 17:05:34 -07:00
});
};
this._native.find('.modal-body').load(url, () => {
me.acceptButton.unbind('click').click(() => {
2022-01-26 19:25:11 +00:00
if (
$defined(global.submitDialogForm)
&& typeof global.submitDialogForm === 'function'
) {
global.submitDialogForm();
}
2021-10-04 17:05:34 -07:00
});
me._native.on('hidden.bs.modal', function onModalHide() {
2021-10-04 17:05:34 -07:00
$(this).remove();
});
me.show();
});
2021-12-04 15:39:20 -08:00
}
2021-10-04 17:05:34 -07:00
onDialogShown() {
2022-01-26 19:25:11 +00:00
if ($defined(global.onDialogShown) && typeof global.onDialogShown === 'function') {
global.onDialogShown();
2021-07-16 11:41:58 -03:00
}
2021-12-04 15:39:20 -08:00
}
}
2021-07-16 11:41:58 -03:00
2021-12-19 08:06:42 -08:00
export default BootstrapDialogRequest;