import { cloneDeep, mapValues } from 'lodash' import * as React from 'react' import { FlowChart } from '../src' import * as actions from '../src/container/actions' import { Page } from './components' import { chartSimple } from './misc/exampleChartState' /** * State is external to the Element * * You could easily move this state to Redux or similar by creating your own callback actions. */ export class ExternalReactState extends React.Component { public state = cloneDeep(chartSimple) public render () { const chart = this.state const stateActions = mapValues(actions, (func: any) => (...args: any) => this.setState(func(...args))) as typeof actions return ( ) } }