Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anteriovieira/vue-mindmap
VueMindmap is a vue component for mindnode maps
https://github.com/anteriovieira/vue-mindmap
d3 mindmap vue
Last synced: 1 day ago
JSON representation
VueMindmap is a vue component for mindnode maps
- Host: GitHub
- URL: https://github.com/anteriovieira/vue-mindmap
- Owner: anteriovieira
- License: mit
- Created: 2018-01-11T00:21:04.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-30T23:06:49.000Z (over 4 years ago)
- Last Synced: 2025-01-22T12:05:45.209Z (8 days ago)
- Topics: d3, mindmap, vue
- Language: JavaScript
- Homepage: https://codesandbox.io/s/jv7pl7wn15
- Size: 192 KB
- Stars: 602
- Watchers: 13
- Forks: 108
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# VueMindmap
[![npm](https://img.shields.io/npm/v/vue-mindmap.svg)](https://www.npmjs.com/package/vue-mindmap) [![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)
> VueMindmap is a vue component for mindnode maps inspired by [react-mindmap](https://github.com/learn-anything/react-mindmap).
[Live demo](https://codesandbox.io/s/jv7pl7wn15) built on top of the awesome [codesandbox](https://codesandbox.io).
## Installation
```bash
npm install --save vue-mindmap
```## Usage
### Bundler (Webpack, Rollup)
```js
import Vue from 'vue'
import VueMindmap from 'vue-mindmap'
// You need a specific loader for CSS files like https://github.com/webpack/css-loader
import 'vue-mindmap/dist/vue-mindmap.css'Vue.use(VueMindmap)
``````html
export default {
name: 'MyMindmap',
data() {
return {
nodes: [...],
connections: [...]
}
}
}```
### Browser
```html
```
## Props
| Prop | Type | Default | Description |
|-----------------|:-------:|---------|--------------------------------------------------------|
| **nodes** | Array | [ ] | Array of objects used to render nodes. |
| **connections** | Array | [ ] | Array of objects used to render connections. |
| **subnodes** | Array | [ ] | Array of objects used to render subnodes. |
| **editable** | Boolean | false | Enable editor mode, which allows to move around nodes. |### nodes
Array of objects used to render nodes. Below an example of the node structure.
```json
{
"text": "python",
"url": "http://www.wikiwand.com/en/Python_(programming_language)",
"fx": -13.916222252976013,
"fy": -659.1641376795345,
"category": "wiki",
"note": ""
}
```The possible attributes are:
- **text**: title of the node
- **url**: url contained in the node
- **fx** and **fy**: coordinates (if not present they'll be generated)
- **category**: category used to generate an emoji
- **note**: note that will be visible on hover### connections
Array of objects used to render connections. Below an example of the connection
structure.```json
{
"source": "python",
"target": "basics",
"curve": {
"x": -43.5535,
"y": 299.545
}
}
```The possible attributes are:
- **source**: title of the node where the connection starts
- **target**: title of the node where the connection ends
- **curve.x** and **curve.y**: coordinates of the control point of a quadratic bezier curve
(if not specified the connection will be straight)### subnodes
Array of objects used to render subnodes. The structure is the same as for nodes
with two additional attributes:- **parent**: title of the parent node
- **color**: used for the margin color, needs to be a valid CSS color## Styling
Here's a list of all CSS classes for styling:- **.mindmap-svg**: main `svg` element containing the map;
- **.mindmap-node**: `foreignObject` element representing a node;
- **.mindmap-node--editable**: `foreignObject` element representing a node in editor mode;
- **.mindmap-subnode-group-text**: `foreignObject` element containing all subnodes of a given node;
- **.mindmap-subnode-text**: `div` element containing a subnode;
- **.mindmap-connection**: `path` element for each connection;
- **.mindmap-emoji**: `img` tag for emoji## Development
### Launch visual tests
```bash
npm run dev
```### Launch Karma with coverage
```bash
npm run dev:coverage
```### Build
Bundle the js and css of to the `dist` folder:
```bash
npm run build
```## License
[MIT](http://opensource.org/licenses/MIT)