react-sortable-tree-theme-bms

1.0.11 • Public • Published

React Sortable Tree BMS Theme

github: last commit code style: prettier

Preview of theme

Features

  • You can click anywhere on a node to drag it.
  • More compact design, with indentation alone used to represent tree depth.

Usage

npm install --save react-sortable-tree-theme-bms
import React, { Component } from 'react';
import SortableTree from 'react-sortable-tree';
import BMSTheme from 'react-sortable-tree-theme-bms';
 
export default class Tree extends Component {
  constructor(props) {
    super(props);
 
    this.state = {
      treeData: [
        { title: 'Incoming Files' },
        {
          title: 'Encyclopedia',
          children: [
            {
              title: 'Culture',
              children: [{ title: 'Art' }, { title: 'Craft' }],
            },
            { title: 'Science' },
          ]
        },
        {
          title: 'Retail',
          children: [
            { title: 'Node 01' },
            { title: 'Node 02' },
            { title: 'Node 03', children: [{ title: 'Subnode 01' }] },
            { title: 'Node 04' },
            { title: 'Node 05' },
          ],
        },
      ],
    };
  }
 
  render() {
    return (
      <div style={{ height: 400 }}>
        <SortableTree
          treeData={this.state.treeData}
          onChange={treeData => this.setState({ treeData })}
          theme={BMSTheme}
          scaffoldBlockPxWidth={16}
        />
      </div>
    );
  }
}

Package Sidebar

Install

npm i react-sortable-tree-theme-bms

Weekly Downloads

4

Version

1.0.11

License

MIT

Unpacked Size

60.7 kB

Total Files

4

Last publish

Collaborators

  • bjorkgard