2021-12-13 22:30:37 +01:00
|
|
|
import '../css/embedded.less';
|
|
|
|
import { buildDesigner, loadDesignerOptions, loadExample } from './loader';
|
|
|
|
import { Mindmap, PersistenceManager } from '../../../../src';
|
|
|
|
|
|
|
|
const example = async () => {
|
|
|
|
const mapId = 'welcome';
|
|
|
|
// Set readonly option ...
|
|
|
|
const options = await loadDesignerOptions();
|
|
|
|
options.readOnly = true;
|
|
|
|
const designer = buildDesigner(options);
|
2021-12-21 19:05:03 +01:00
|
|
|
designer.addEvent('loadSuccess', () => {
|
|
|
|
document.getElementById('mindplot').classList.add('ready');
|
|
|
|
});
|
2021-12-13 22:30:37 +01:00
|
|
|
// Load map from XML file persisted on disk...
|
|
|
|
const persistence = PersistenceManager.getInstance();
|
|
|
|
let mindmap;
|
|
|
|
try {
|
|
|
|
mindmap = persistence.load(mapId);
|
|
|
|
} catch (e) {
|
|
|
|
console.error('The map could not be loaded, loading an empty map instead.', e);
|
|
|
|
mindmap = Mindmap.buildEmpty(mapId);
|
|
|
|
}
|
|
|
|
designer.loadMap(mindmap);
|
|
|
|
};
|
|
|
|
|
|
|
|
loadExample(example);
|