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
34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
import '../css/viewmode.less';
|
|
import { buildDesigner } from '../../../../src/components/DesignerBuilder';
|
|
import { PersistenceManager, LocalStorageManager } from '../../../../src';
|
|
import DesignerOptionsBuilder from '../../../../src/components/DesignerOptionsBuilder';
|
|
|
|
|
|
const p = new LocalStorageManager('samples/{id}.wxml');
|
|
const options = DesignerOptionsBuilder.buildOptions({ persistenceManager: p, readOnly: true, saveOnLoad: false });
|
|
|
|
// Obtain map id from query param
|
|
const params = new URLSearchParams(window.location.search.substring(1));
|
|
const mapId = params.get('id') || 'welcome';
|
|
|
|
const designer = buildDesigner(options);
|
|
designer.addEvent('loadSuccess', () => {
|
|
document.getElementById('mindplot').classList.add('ready');
|
|
});
|
|
|
|
// Load map from XML file persisted on disk...
|
|
const persistence = PersistenceManager.getInstance();
|
|
const mindmap = persistence.load(mapId);
|
|
designer.loadMap(mindmap);
|
|
|
|
// Code for selector of map.
|
|
const mapSelectElem = document.getElementById('map-select');
|
|
mapSelectElem.addEventListener('change', (e) => {
|
|
const selectMap = e.target.value;
|
|
window.location = `${window.location.pathname}?id=${selectMap}`;
|
|
});
|
|
|
|
Array.from(mapSelectElem.options).forEach((option) => {
|
|
option.selected = option.value === mapId;
|
|
});
|