wisemapping-frontend/packages/mindplot/src/components/libraries/bootstrap/BootstrapDialogRequest.js

71 lines
2.3 KiB
JavaScript
Raw Normal View History

2021-12-19 18:56:22 +01:00
/*
2021-12-25 23:39:34 +01:00
* Copyright [2021] [wisemapping]
2021-12-19 18:56:22 +01: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 17:06:42 +01:00
import BootstrapDialog from './BootstrapDialog';
2021-07-16 16:41:58 +02:00
2021-12-05 00:39:20 +01:00
class BootstrapDialogRequest extends BootstrapDialog {
constructor(url, title, options) {
super(title, options);
2021-10-05 02:05:34 +02:00
this.requestOptions = {};
this.requestOptions.cache = false;
const me = this;
2021-12-19 18:56:22 +01:00
this.requestOptions.fail = (xhr) => {
2021-10-05 02:05:34 +02:00
// Intercept form requests ...
console.log('Failure:');
console.log(xhr);
};
2021-12-05 17:14:15 +01:00
this.requestOptions.success = function success() {
2021-10-05 02:05:34 +02:00
// Intercept form requests ...
const forms = me._native.find('form');
2021-12-05 17:14:15 +01:00
forms.forEach((form) => {
2021-10-05 02:05:34 +02: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 16:41:58 +02:00
});
2021-10-05 02:05:34 +02:00
});
};
this._native.find('.modal-body').load(url, () => {
me.acceptButton.unbind('click').click(() => {
if ($defined(global.submitDialogForm) && typeof (global.submitDialogForm) === 'function') {
global.submitDialogForm();
}
2021-10-05 02:05:34 +02:00
});
me._native.on('hidden.bs.modal', function onModalHide() {
2021-10-05 02:05:34 +02:00
$(this).remove();
});
me.show();
});
2021-12-05 00:39:20 +01:00
}
2021-10-05 02:05:34 +02:00
onDialogShown() {
if ($defined(global.onDialogShown) && typeof (global.onDialogShown) === 'function') {
global.onDialogShown();
2021-07-16 16:41:58 +02:00
}
2021-12-05 00:39:20 +01:00
}
}
2021-07-16 16:41:58 +02:00
2021-12-19 17:06:42 +01:00
export default BootstrapDialogRequest;