mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
Remove modal dialog
This commit is contained in:
parent
c80b538a12
commit
f3eaed07b2
@ -1,45 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright [2022] [wisemapping]
|
|
||||||
*
|
|
||||||
* 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';
|
|
||||||
|
|
||||||
class LoadingModal {
|
|
||||||
constructor() {
|
|
||||||
this.element = $(
|
|
||||||
`<div id="load" class="modal fade" data-keyboard="false" data-backdrop="static"
|
|
||||||
style="display: flex; flex-direction: column; justify-content: center">
|
|
||||||
<div class="modal-dialog" >
|
|
||||||
<div style="height: 120px; text-align: center; border: 2px solid orange" class="modal-content">
|
|
||||||
<img style="margin-top:25px; text-align: center" src="images/ajax-loader.gif">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>`,
|
|
||||||
);
|
|
||||||
this.element.modal('hide');
|
|
||||||
this.element.appendTo(document.body);
|
|
||||||
}
|
|
||||||
|
|
||||||
show() {
|
|
||||||
this.element.modal('show');
|
|
||||||
}
|
|
||||||
|
|
||||||
hide() {
|
|
||||||
this.element.modal('hide');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LoadingModal;
|
|
@ -22,7 +22,6 @@ import jquery from 'jquery';
|
|||||||
import {
|
import {
|
||||||
$notify,
|
$notify,
|
||||||
} from './components/widget/ToolbarNotifier';
|
} from './components/widget/ToolbarNotifier';
|
||||||
import LoadingModal from './components/widget/LoadingModal';
|
|
||||||
import {
|
import {
|
||||||
buildDesigner,
|
buildDesigner,
|
||||||
} from './components/DesignerBuilder';
|
} from './components/DesignerBuilder';
|
||||||
@ -37,9 +36,6 @@ import DesignerOptionsBuilder from './components/DesignerOptionsBuilder';
|
|||||||
global.jQuery = jquery;
|
global.jQuery = jquery;
|
||||||
require('@libraries/bootstrap/js/bootstrap');
|
require('@libraries/bootstrap/js/bootstrap');
|
||||||
|
|
||||||
const loadingModal = new LoadingModal();
|
|
||||||
loadingModal.show();
|
|
||||||
|
|
||||||
// Configure designer options ...
|
// Configure designer options ...
|
||||||
let persistence:PersistenceManager;
|
let persistence:PersistenceManager;
|
||||||
if (!global.memoryPersistence && !global.readOnly) {
|
if (!global.memoryPersistence && !global.readOnly) {
|
||||||
@ -71,10 +67,6 @@ const options = DesignerOptionsBuilder.buildOptions(
|
|||||||
// Build designer ...
|
// Build designer ...
|
||||||
const designer = buildDesigner(options);
|
const designer = buildDesigner(options);
|
||||||
|
|
||||||
designer.addEvent('loadSuccess', () => {
|
|
||||||
loadingModal.hide();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Load map from XML file persisted on disk...
|
// Load map from XML file persisted on disk...
|
||||||
const instance = PersistenceManager.getInstance();
|
const instance = PersistenceManager.getInstance();
|
||||||
const mindmap = instance.load(global.mapId);
|
const mindmap = instance.load(global.mapId);
|
||||||
|
@ -1,16 +1,12 @@
|
|||||||
import '../css/editor.css';
|
import '../css/editor.css';
|
||||||
import { buildDesigner } from '../../../../src/components/DesignerBuilder';
|
import { buildDesigner } from '../../../../src/components/DesignerBuilder';
|
||||||
import { PersistenceManager, LocalStorageManager } from '../../../../src';
|
import { PersistenceManager, LocalStorageManager } from '../../../../src';
|
||||||
import LoadingModal from '../../../../src/components/widget/LoadingModal';
|
|
||||||
import DesignerOptionsBuilder from '../../../../src/components/DesignerOptionsBuilder';
|
import DesignerOptionsBuilder from '../../../../src/components/DesignerOptionsBuilder';
|
||||||
|
|
||||||
// Account details ...
|
// Account details ...
|
||||||
global.accountName = 'Test User';
|
global.accountName = 'Test User';
|
||||||
global.accountEmail = 'test@example.com';
|
global.accountEmail = 'test@example.com';
|
||||||
|
|
||||||
const loadingModal = new LoadingModal();
|
|
||||||
loadingModal.show();
|
|
||||||
|
|
||||||
const p = new LocalStorageManager('samples/{id}.wxml');
|
const p = new LocalStorageManager('samples/{id}.wxml');
|
||||||
const options = DesignerOptionsBuilder.buildOptions({
|
const options = DesignerOptionsBuilder.buildOptions({
|
||||||
persistenceManager: p
|
persistenceManager: p
|
||||||
@ -18,7 +14,6 @@ const options = DesignerOptionsBuilder.buildOptions({
|
|||||||
const designer = buildDesigner(options);
|
const designer = buildDesigner(options);
|
||||||
|
|
||||||
designer.addEvent('loadSuccess', () => {
|
designer.addEvent('loadSuccess', () => {
|
||||||
loadingModal.hide();
|
|
||||||
// Hack for automation testing ...
|
// Hack for automation testing ...
|
||||||
document.getElementById('mindplot').classList.add('ready');
|
document.getElementById('mindplot').classList.add('ready');
|
||||||
});
|
});
|
||||||
|
@ -3,7 +3,6 @@ import { buildDesigner } from '../../../../src/components/DesignerBuilder';
|
|||||||
import { PersistenceManager, LocalStorageManager } from '../../../../src';
|
import { PersistenceManager, LocalStorageManager } from '../../../../src';
|
||||||
import DesignerOptionsBuilder from '../../../../src/components/DesignerOptionsBuilder';
|
import DesignerOptionsBuilder from '../../../../src/components/DesignerOptionsBuilder';
|
||||||
|
|
||||||
|
|
||||||
const p = new LocalStorageManager('samples/{id}.wxml');
|
const p = new LocalStorageManager('samples/{id}.wxml');
|
||||||
const options = DesignerOptionsBuilder.buildOptions({ persistenceManager: p, readOnly: true, saveOnLoad: false });
|
const options = DesignerOptionsBuilder.buildOptions({ persistenceManager: p, readOnly: true, saveOnLoad: false });
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user