mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
cdd044c41d
Improve screenmanager positioning Change several clasess to typescript
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
import '../css/editor.less';
|
|
import { buildDesigner } from '../../../../src/components/DesignerBuilder';
|
|
import { PersistenceManager, LocalStorageManager } from '../../../../src';
|
|
import LoadingModal from '../../../../src/components/widget/LoadingModal';
|
|
import DesignerOptionsBuilder from '../../../../src/components/DesignerOptionsBuilder';
|
|
|
|
// Account details ...
|
|
global.accountName = 'Test User';
|
|
global.accountEmail = 'test@example.com';
|
|
|
|
const loadingModal = new LoadingModal();
|
|
loadingModal.show();
|
|
|
|
const p = new LocalStorageManager('samples/{id}.wxml');
|
|
const options = DesignerOptionsBuilder.buildOptions({
|
|
persistenceManager: p
|
|
});
|
|
const designer = buildDesigner(options);
|
|
|
|
designer.addEvent('loadSuccess', () => {
|
|
loadingModal.hide();
|
|
// Hack for automation testing ...
|
|
document.getElementById('mindplot').classList.add('ready');
|
|
});
|
|
|
|
// Load map from XML file persisted on disk...
|
|
const mapId = 'welcome';
|
|
const persistence = PersistenceManager.getInstance();
|
|
const mindmap = persistence.load(mapId);
|
|
designer.loadMap(mindmap);
|