All Projects → unicef → react-org-chart

unicef / react-org-chart

Licence: other
Component for displaying an org chart for a large organization. Supports lazy load and export.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-org-chart

align covid
Coronavirus time series aligned by number of cases, not date.
Stars: ✭ 22 (-85.03%)
Mutual labels:  d3
magicbox-kepler-app
Visualizing MagicBox data on country maps using KeplerGL
Stars: ✭ 21 (-85.71%)
Mutual labels:  unicef
simple-square-packing
werehamster.github.io/simple-square-packing/
Stars: ✭ 12 (-91.84%)
Mutual labels:  d3
proteic
Streaming and static data visualization for the modern web.
Stars: ✭ 37 (-74.83%)
Mutual labels:  d3
d3.geometer
[NOT MAINTAINED] A D3js library for drawing polytopes, angles, coordinates, geometries and more.
Stars: ✭ 18 (-87.76%)
Mutual labels:  d3
course-19-20
🎓 tech track · 2019-2020 · curriculum and syllabus 📊
Stars: ✭ 13 (-91.16%)
Mutual labels:  d3
aws-mlu-explain
Visual, Interactive Articles About Machine Learning: https://mlu-explain.github.io/
Stars: ✭ 46 (-68.71%)
Mutual labels:  d3
vue-d3-charts
D3 charts for Vue
Stars: ✭ 66 (-55.1%)
Mutual labels:  d3
leaflet heatmap
简单的可视化湖州通话数据 假设数据量很大,没法用浏览器直接绘制热力图,把绘制热力图这一步骤放到线下计算分析。使用Apache Spark并行计算数据之后,再使用Apache Spark绘制热力图,然后用leafletjs加载OpenStreetMap图层和热力图图层,以达到良好的交互效果。现在使用Apache Spark实现绘制,可能是Apache Spark不擅长这方面的计算或者是我没有设计好算法,并行计算的速度比不上单机计算。Apache Spark绘制热力图和计算代码在这 https://github.com/yuanzhaokang/ParallelizeHeatmap.git .
Stars: ✭ 13 (-91.16%)
Mutual labels:  d3
multi-verse
lit-element components for fast and modular multivariate analysis
Stars: ✭ 34 (-76.87%)
Mutual labels:  d3
visa-chart-components
Visa Chart Components (VCC) is an accessibility focused, framework agnostic set of data experience design systems components for the web. VCC attempts to provide a toolset to enable developers to build equal data experiences for everyone, everywhere.
Stars: ✭ 81 (-44.9%)
Mutual labels:  d3
d3-dotmatrix
Open Source Javascript library to render Dot Matrix Charts
Stars: ✭ 14 (-90.48%)
Mutual labels:  d3
billboard
🎤 Lyrics/associated NLP data for Billboard's Top 100, 1950-2015.
Stars: ✭ 53 (-63.95%)
Mutual labels:  d3
a2d3
Flexible and extensible D3 directives for Angular 2
Stars: ✭ 22 (-85.03%)
Mutual labels:  d3
github-contribution-graph
Add beautiful GitHub contribution/commit graph to your profile README!
Stars: ✭ 37 (-74.83%)
Mutual labels:  d3
tree-chart
Flexible tree chart using Canvas and Svg, powered by D3.js; ✅Support Vue, Vue3 and React;
Stars: ✭ 265 (+80.27%)
Mutual labels:  d3
turkeyvisited
Mark the cities you have visited in Turkey and share the map!
Stars: ✭ 82 (-44.22%)
Mutual labels:  d3
pdf2xml-viewer
A simple viewer and inspection tool for text boxes in PDF documents
Stars: ✭ 82 (-44.22%)
Mutual labels:  d3
game of life-elixir
An implementation of Conway's Game of Life in Elixir
Stars: ✭ 22 (-85.03%)
Mutual labels:  d3
pybraincompare
brain image comparison and visualization methods for python!
Stars: ✭ 16 (-89.12%)
Mutual labels:  d3

React Organizational Chart

npm version

React component for displaying organizational charts.

This component is based on coreseekdev/react-org-chart. On top of it, we added a few customization to fulfill our requirements.

View demo

Features

From the original 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)

What we added:

  • Lazy-load of parents (go up in the tree)
  • Zoom in, zoom out and zoom buttons.
  • Download orgchart as image or PDF

React Props

property type description example
tree Object Nested data model with some of all the employees in the company (Required) See sample below.
nodeWidth Number Width of the component for each individual (Optional) 180
nodeHeight Number Height of the component for each individual (Optional) 100
nodeSpacing Number Spacing between each of the nodes in the chart (Optional) 12
animationDuration Number Duration of the animations in milliseconds (Optional) 350
lineType String Type of line that connects the nodes to each other (Optional) “angle” “curve”
downloadImageId String Id 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 (Optional) "download-image" (default)
downloadPdfId String Id 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 (Optional) (Optional) "download-pdf" (default)
zoomInId String Id 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 (Optional) (Optional) "zoom-in" (default)
zoomOutId String Id 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 (Optional) "zoom-out" (default)
zoomExtentId String Id 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) Function Load parent with one level of children (Optional) See usage below
loadChildren (personData) Function Load the children of particular node (Optional) See usage below
onConfigChange Function To set the latest config to state on change See usage below
loadConfig Function Pass latest config from state to OrgChart See usage below
loadImage(personData) Function To get image of person on API call (Optional) See usage below

Sample tree data

{
  id: 1,
  person: {
    id: 1,
    avatar: 'https://s3.amazonaws.com/uifaces/faces/twitter/spbroma/128.jpg',
    department: '',
    name: 'Jane Doe',
    title: 'CEO',
    totalReports: 5
  },
  hasChild: true,
  hasParent: false,
  isHighlight: true,
  children: [
    {
    id: 2,
    person: {
      id: 2,
      avatar: 'https://s3.amazonaws.com/uifaces/faces/twitter/spbroma/128.jpg',
      department: '',
      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)
      }}
    />
  )
}

Development

git clone https://github.com/unicef/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

About UNICEF

UNICEF works in over 190 countries and territories to protect the rights of every child. UNICEF has spent more than 70 years working to improve the lives of children and their families. In UNICEF, we believe all children have a right to survive, thrive and fulfill their potential – to the benefit of a better world.

Donate

Collaborations and support

Just fork the project and make a pull request. You may also consider donating.

License

Copyright 2019-2020 UNICEF http://www.unicef.org Developed by ICTD, Solutions Center and Support, Digital Tools and Platforms, Custom Applications Team, New York.

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].