"puppeteer": "^5.2.1",
"puppeteer-to-istanbul": "^1.4.0",
Mind elixir is a free open source mind map core.
中文
Use now
![mindelixir](https://raw.githubusercontent.com/ssshooter/mind-elixir-core/master/screenshot.png)
https://mindelixir.ink/#/
Playground
https://codepen.io/ssshooter/pen/GVQRYK
with React https://codesandbox.io/s/mind-elixir-react-9sisb
with Vue https://codesandbox.io/s/mind-elixir-vue-nqjjl
Use in your project
Install
NPM
npm i mind-elixir -S
import MindElixir, { E } from 'mind-elixir'
Script tag
<script src="https://cdn.jsdelivr.net/npm/regenerator-runtime"></script>
<script src="https://cdn.jsdelivr.net/npm/mind-elixir/dist/mind-elixir.js"></script>
HTML structure
<div id="map"></div>
<style>
#map {
height: 500px;
width: 100%;
}
</style>
Init
let options = {
el: '#map',
direction: MindElixir.LEFT,
data: MindElixir.new('new topic'),
data: {...},
draggable: true,
contextMenu: true,
toolBar: true,
nodeMenu: true,
keypress: true,
locale: 'en',
overflowHidden: false,
primaryLinkStyle: 2,
primaryNodeVerticalGap: 15,
primaryNodeHorizontalGap: 15,
contextMenuOption: {
focus: true,
link: true,
extend: [
{
name: 'Node edit',
onclick: () => {
alert('extend menu')
},
},
],
},
allowUndo: false,
before: {
insertSibling(el, obj) {
return true
},
async addChild(el, obj) {
await sleep()
return true
},
},
}
let mind = new MindElixir(options)
mind.init()
E('node-id')
Data Structure
{
topic: 'node topic',
id: 'bd1c24420cd2c2f5',
style: { fontSize: '32', color: '#3298db', background: '#ecf0f1' },
parent: null,
tags: ['Tag'],
icons: ['😀'],
hyperLink: 'https://github.com/ssshooter/mind-elixir-core',
}
Event Handling
mind.bus.addListener('operation', operation => {
console.log(operation)
})
mind.bus.addListener('selectNode', node => {
console.log(node)
})
Data Export
mind.getAllData()
mind.getAllDataString()
mind.getAllDataMd()
Export as image
import painter from 'mind-elixir/dist/painter'
painter.exportSvg()
painter.exportPng()
Operation Guards
let mind = new MindElixir({
...
before: {
insertSibling(el, obj) {
console.log(el, obj)
if (this.currentNode.nodeObj.parent.root) {
return false
}
return true
},
async addChild(el, obj) {
await sleep()
if (this.currentNode.nodeObj.parent.root) {
return false
}
return true
},
},
})
Doc
https://doc.mindelixir.ink/