StreakingMan / react-simple-mind

轻量配置化思维导图工具

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Simple Mind

轻量配置化思维导图组件,适用于一些不需要编辑,只展示导图的场景

demo

配置项

interface Data {
    title: string;
    url?: string;
    children?: Data[];
}

export interface SimpleMindProps {
    // 嵌套数据
    data: Data;
    className?: string;
    // 元素类名
    elementClassName?: string;
    // 单边、双边布局
    layout?: 'singleSide' | 'doubleSide';
    // 间隙大小
    gap?: number | number[];
    // 连线颜色
    lineColor?: string;
    // 连线宽度
    lineWidth?: number;
}

使用

# npm
npm install --save react-simple-mind
# yarn
yarn add react-simple-mind
.element {
    border: 1px solid gainsboro;
    border-radius: 8px;
    padding: 8px;
    max-width: 200px;
}
import SimpleMind from 'react-simple-mind';
import 'react-simple-mind/dist/style.css';

const testData = {
    title: 'root',
    children:[...]
}

function App() {
    return (
        <SimpleMind
            elementClassName={'element'}
            data={testData}
            gap={[64, 24]}
            lineWidth={4}
            lineColor={'red'}
        />
    );
}

About

轻量配置化思维导图工具


Languages

Language:TypeScript 80.4%Language:SCSS 7.7%Language:JavaScript 7.5%Language:CSS 2.3%Language:HTML 1.6%Language:Shell 0.6%