2021-12-13 22:30:37 +01:00
|
|
|
import '../css/editor.less';
|
2021-12-24 20:04:50 +01:00
|
|
|
import { buildDesigner, buildOptions } 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';
|
|
|
|
|
|
|
|
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');
|
2021-12-24 20:04:50 +01:00
|
|
|
const options = buildOptions({ persistenceManager: p });
|
|
|
|
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();
|
2021-12-24 20:04:50 +01:00
|
|
|
document.getElementById('mindplot').classList.add('ready');
|
|
|
|
});
|
2021-12-21 19:05:03 +01:00
|
|
|
|
2022-01-06 23:18:47 +01:00
|
|
|
const zoomInButton = document.getElementById('zoom-plus');
|
|
|
|
const zoomOutButton = document.getElementById('zoom-minus');
|
|
|
|
|
|
|
|
if (zoomInButton) {
|
|
|
|
zoomInButton.addEventListener('click', () => {
|
|
|
|
designer.zoomIn();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (zoomOutButton) {
|
|
|
|
zoomOutButton.addEventListener('click', () => {
|
|
|
|
designer.zoomOut();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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);
|