0.4.24 • Published 3 years ago

@bitumin/react-org-chart v0.4.24

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

React Organizational Chart

npm version

React component for displaying organizational charts.

This component is based on unicef/react-org-chart.

Features

From the previous package:

  • High-performance D3-based SVG rendering
  • Lazy-load children with a custom function
  • Handle up to 1 million collapsed nodes and 5,000 expanded nodes
  • Pan (drag and drop)
  • Zoom in zoom out (with mouse wheel/scroll)
  • Lazy-load of parents (go up in the tree)
  • Zoom in, zoom out and zoom buttons.
  • Download org chart as image or PDF

What we added:

  • Renamed person to entity throughout the codebase
  • Removed department
  • Added subTitle text element under the title.
  • Added config props functions to get all the text values (getName, getTitle, getSubTitle, getCount)
  • Added config props for all text values on click events (onNameClick, onTitleClick, onSubTitleClick, onCountClick)
  • Added config props for the font sizes (nameFontSize, titleFontSize, subTitleFontSize, countFontSize)
  • Added config props for the text truncation (nameTruncateLength, titleTruncateLength, subTitleTruncateLength)
  • Added tooltips to all text values since we now support truncation

React Props

PropertyTypeRequiredDescriptionDefault / Example
treeObjectRequiredNested data model with some of all the employees in the companySee sample below
onConfigChangeFunctionRequiredTo set the latest config to state on changeSee usage below
loadConfigFunctionRequiredPass latest config from state to OrgChartSee usage below
getNameFunctionOptionalFunction to get custom formatting / values for the name. Called with (data) argumentsSee usage below
getTitleFunctionOptionalFunction to get custom formatting / values for the title. Called with (data) argumentsSee usage below
getSubTitleFunctionOptionalFunction to get custom formatting / values for the sub title. Called with (data) argumentsSee usage below
getCountFunctionOptionalFunction to get custom formatting / values for the count. Called with (data) argumentsSee usage below
onNameClickFunctionOptionalFunction to call on click of the name. Called with (data) argumentsSee usage below
onTitleClickFunctionOptionalFunction to call on click of the title. Called with (data) argumentsSee usage below
onSubTitleClickFunctionOptionalFunction to call on click of the sub title. Called with (data) argumentsSee usage below
onCountClickFunctionOptionalFunction to call on click of the count. Called with (data) argumentsSee usage below
nameFontSizeNumberOptionalThe font size of the name text element14
titleFontSizeNumberOptionalThe font size of the title text element13
subTitleFontSizeNumberOptionalThe font size of the title text element14
countFontSizeNumberOptionalThe font size of the count text element14
nodeWidthNumberOptionalWidth of the component for each individual180
nodeHeightNumberOptionalHeight of the component for each individual100
nodeSpacingNumberOptionalSpacing between each of the nodes in the chart12
animationDurationNumberOptionalDuration of the animations in milliseconds350
lineTypeStringOptionalType of line that connects the nodes to each other“angle” “curve”
downloadImageIdStringOptionalId of the DOM element that, on click, will trigger the download of the org chart as PNG. OrgChart will bind the click event to the DOM element with this ID"download-image" (default)
downloadPdfIdStringOptionalId of the DOM element that, on click, will trigger the download of the org chart as PDF. OrgChart will bind the click event to the DOM element with this ID"download-pdf" (default)
zoomInIdStringOptionalId of the DOM element that, on click, will trigger a zoom of the org chart. OrgChart will bind the click event to the DOM element with this ID"zoom-in" (default)
zoomOutIdStringOptionalId of the DOM element that, on click, will trigger the zoom out of the org chart. OrgChart will bind the click event to the DOM element with this ID"zoom-out" (default)
zoomExtentIdStringOptionalId of the DOM element that, on click, will display whole org chart svg fit to screen. OrgChart will bind the click event to the DOM element with this ID(Optional)"zoom-extent" (default)
loadParent(personData)FunctionOptionalLoad parent with one level of childrenSee usage below
loadChildren (personData)FunctionOptionalLoad the children of particular nodeSee usage below
loadImage(personData)FunctionOptionalTo get image of person on API callSee usage below

Sample tree data

{
  id: 1,
  entity: {
    id: 1,
    avatar: 'https://s3.amazonaws.com/uifaces/faces/twitter/spbroma/128.jpg',
    name: 'Jane Doe',
    title: 'IT',
    subTitle: 'CEO',
    totalReports: 5
  },
  hasChild: true,
  hasParent: false,
  isHighlight: true,
  children: [
    {
    id: 2,
    entity: {
      id: 2,
      avatar: 'https://s3.amazonaws.com/uifaces/faces/twitter/spbroma/128.jpg',
      name: 'John Foo',
      title: 'CTO',
      totalReports: 0
    },
    hasChild: false,
    hasParent: true,
    isHighlight: false,
    children: []
  },
  ...
  ]
}

Usage

You have a complete working example in the examples/ folder

import React from 'react'
import OrgChart from '@unicef/react-org-chart'

handleLoadConfig = () => {
   const { config } = this.state
   return config
}

render(){
  return (
    <OrgChart
      tree={tree}
      downloadImageId="download-image"
      downloadPdfId="download-pdf"
      onConfigChange={config => {
        // Setting latest config to state
        this.setState({ config: config })
      }}
      loadConfig={d => {
         // Called from d3 to get latest version of the config.
        const config = this.handleLoadConfig(d)
        return config
      }}
      loadParent={personData => {
        // getParentData(): To get the parent data from API
        const loadedParent = this.getParentData(personData)
        return Promise.resolve(loadedParent)
      }}
      loadChildren={personData => {
        // getChildrenData(): To get the children data from API
        const loadedChildren = this.getChildrenData(personData)
        return Promise.resolve(loadedChildren)
      }}
      loadImage={personData => {
        // getImage(): To get the image from API
        const image = getImage(personData.email)
        return Promise.resolve(image)
      }}
      // getTitle / getSubTitle / getCount work the same way & with the same args
      getName={(data, truncate, truncateLength) => `The great ${data.person.name}${truncate}`}
      // onTitleClick / onSubTitleClick / onCountClick work the same way  & with the same arg
      onNameClick={data => console.log(data.person.name)}
    />
  )
}

Development

git clone https://github.com/bitumin/react-org-chart.git
cd react-org-chart
npm install

To build in watch mode:

npm start

To build for production

npm run build

Running the example:

cd example/
npm install # Only first time
npm start

To deploy the example to gh-pages site

npm run deploy

Collaborations and support

Just fork the project and make a pull request.

License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.