2021-12-13 22:30:37 +01:00
|
|
|
import '../css/editor.less';
|
2022-01-09 19:43:04 +01:00
|
|
|
import { buildDesigner } from '../../../../src/components/DesignerBuilder';
|
2021-12-23 19:51:26 +01:00
|
|
|
import { PersistenceManager, LocalStorageManager } from '../../../../src';
|
2022-01-04 21:11:12 +01:00
|
|
|
import LoadingModal from '../../../../src/components/widget/LoadingModal';
|
2022-01-09 19:43:04 +01:00
|
|
|
import DesignerOptionsBuilder from '../../../../src/components/DesignerOptionsBuilder';
|
2022-01-04 21:11:12 +01:00
|
|
|
|
2022-01-08 02:27:00 +01:00
|
|
|
// Account details ...
|
|
|
|
global.accountName = 'Test User';
|
|
|
|
global.accountEmail = 'test@example.com';
|
|
|
|
|
2022-01-04 21:11:12 +01:00
|
|
|
const loadingModal = new LoadingModal();
|
|
|
|
loadingModal.show();
|
2021-12-13 22:30:37 +01:00
|
|
|
|
2022-01-02 19:37:33 +01:00
|
|
|
const p = new LocalStorageManager('samples/{id}.wxml');
|
2022-01-09 19:43:04 +01:00
|
|
|
const options = DesignerOptionsBuilder.buildOptions({
|
|
|
|
persistenceManager: p
|
|
|
|
});
|
2021-12-24 20:04:50 +01:00
|
|
|
const designer = buildDesigner(options);
|
2021-12-13 22:30:37 +01:00
|
|
|
|
2021-12-24 20:04:50 +01:00
|
|
|
designer.addEvent('loadSuccess', () => {
|
2022-01-04 21:11:12 +01:00
|
|
|
loadingModal.hide();
|
2022-01-09 19:43:04 +01:00
|
|
|
// Hack for automation testing ...
|
2021-12-24 20:04:50 +01:00
|
|
|
document.getElementById('mindplot').classList.add('ready');
|
|
|
|
});
|
2021-12-21 19:05:03 +01:00
|
|
|
|
2021-12-24 20:04:50 +01:00
|
|
|
// Load map from XML file persisted on disk...
|
|
|
|
const mapId = 'welcome';
|
|
|
|
const persistence = PersistenceManager.getInstance();
|
|
|
|
const mindmap = persistence.load(mapId);
|
|
|
|
designer.loadMap(mindmap);
|