mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
25 lines
742 B
JavaScript
25 lines
742 B
JavaScript
|
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);
|
||
|
|
||
|
// 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);
|