├── .gitignore ├── INSTRUCTION.md ├── README.md ├── package.json ├── public ├── Test1.js ├── Test2.js ├── Test3.js ├── api │ └── workFlowList.json ├── components │ └── Test.js ├── favicon.ico ├── index.html ├── main.js └── manifest.json ├── src ├── App.js ├── common │ ├── ReverseRender.js │ ├── Util.js │ ├── VirtualDOMHandle.js │ ├── VirtualDOMHandleReverse.js │ ├── axiosInterceptors.js │ ├── config.js │ ├── stateAndDispatch.js │ └── withDragDropContext.js ├── components │ ├── DraggableNodeFlow │ │ ├── End.js │ │ ├── ExclusiveGateWay.js │ │ ├── InclusiveGateWay.js │ │ ├── ParallelGateWay.js │ │ ├── PoolLaneDirection.js │ │ ├── PoolLaneOrientation.js │ │ ├── PoolsDirection.js │ │ ├── PoolsOrientation.js │ │ ├── ServiceTask.js │ │ ├── Start.js │ │ └── UserTask.js │ ├── ExhibitionJSPlumbFlow │ │ ├── common │ │ │ ├── VirtualDOMExhibition-1.js │ │ │ └── VirtualDOMExhibition.js │ │ ├── components │ │ │ ├── MainContainerRender.js │ │ │ ├── PoolLaneDirection.js │ │ │ ├── PoolLaneOrientation.js │ │ │ ├── PoolsDirection.js │ │ │ └── PoolsOrientation.js │ │ └── index.js │ ├── HocUI │ │ ├── HocFormComponent.js │ │ ├── HocNodeFlowMenu.js │ │ ├── HocUIHeader.js │ │ ├── HocUIProperty.js │ │ ├── ToolBar.js │ │ └── component │ │ │ ├── HocFormPagination.js │ │ │ └── HocInputRules.js │ ├── JSPlumbFlow │ │ └── index.js │ ├── NodeFlowRightMenu │ │ └── index.js │ ├── ReverseJSPlumbFlow │ │ └── index.js │ ├── ToolsBar.js │ ├── leftTools │ │ ├── Activities.js │ │ ├── EndEvents.js │ │ ├── GateWays.js │ │ ├── PoolLane.js │ │ ├── StartEvents.js │ │ ├── Swimlanes.js │ │ ├── ToolsLeft.js │ │ └── component │ │ │ ├── ConnectLineTools.js │ │ │ ├── End.js │ │ │ ├── Event.js │ │ │ ├── ExclusiveGateWay.js │ │ │ ├── FreedomActivity.js │ │ │ ├── InclusiveGateWay.js │ │ │ ├── InnerChildFlowNode.js │ │ │ ├── MainContainer.js │ │ │ ├── MouseMoveTools.js │ │ │ ├── OuterChildFlowNode.js │ │ │ ├── ParallelGateWay.js │ │ │ ├── PoolLaneDirection.js │ │ │ ├── PoolLaneOrientation.js │ │ │ ├── PoolsDirection.js │ │ │ ├── PoolsOrientation.js │ │ │ ├── ServiceTask.js │ │ │ ├── Start.js │ │ │ └── UserTask.js │ ├── property │ │ ├── End.js │ │ ├── ExclusiveGateWay.js │ │ ├── GlobalForm.js │ │ ├── InclusiveGateWay.js │ │ ├── ParallelGateWay.js │ │ ├── PoolLaneDirection.js │ │ ├── PoolLaneOrientation.js │ │ ├── PoolsDirection.js │ │ ├── PoolsOrientation.js │ │ ├── ServiceTask.js │ │ ├── Start.js │ │ ├── UserTask.js │ │ └── component │ │ │ ├── PropertyUsersGroupSelectModal.js │ │ │ └── ServiceTaskRuleInputEdit.js │ └── rightTools │ │ └── component │ │ ├── ConnectLine.js │ │ ├── NodeFlow.js │ │ └── NoneData.js ├── index.js ├── indexForward.js ├── indexReverse.js ├── static │ ├── css │ │ ├── App.css │ │ ├── HocFormComponent.css │ │ ├── HocNodeFlowMenu.css │ │ ├── HocTool.css │ │ ├── HocUIHeader.css │ │ ├── HocUIProperty.css │ │ ├── LeftNode.css │ │ ├── NodeFlowRightMenu.css │ │ ├── ToolBtn.css │ │ ├── container.css │ │ ├── index.css │ │ ├── newWorkFlow.css │ │ ├── rightAttr.css │ │ ├── save.js │ │ └── toolsBar.css │ └── img │ │ ├── 1111.png │ │ ├── grid.jpeg │ │ └── logo.png ├── store │ ├── index.js │ └── reducer.js ├── storeGlobal │ ├── actionCreators.js │ ├── constants.js │ ├── index.js │ └── reducer.js ├── storeGlobalReverse │ ├── actionCreators.js │ ├── constants.js │ ├── index.js │ └── reducer.js ├── storeProperty │ ├── actionCreators.js │ ├── constants.js │ ├── index.js │ └── reducer.js ├── storePropertyReverse │ ├── actionCreators.js │ ├── constants.js │ ├── index.js │ └── reducer.js ├── storeTool │ ├── actionCreators.js │ ├── constants.js │ ├── index.js │ └── reducer.js └── storeToolReverse │ ├── actionCreators.js │ ├── constants.js │ ├── index.js │ └── reducer.js ├── webpack.config.js ├── webpack.dev.config.js ├── webpack.pub.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTRUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/INSTRUCTION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/package.json -------------------------------------------------------------------------------- /public/Test1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/Test1.js -------------------------------------------------------------------------------- /public/Test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/Test2.js -------------------------------------------------------------------------------- /public/Test3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/Test3.js -------------------------------------------------------------------------------- /public/api/workFlowList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/api/workFlowList.json -------------------------------------------------------------------------------- /public/components/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/components/Test.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/index.html -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/main.js -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/App.js -------------------------------------------------------------------------------- /src/common/ReverseRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/common/ReverseRender.js -------------------------------------------------------------------------------- /src/common/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/common/Util.js -------------------------------------------------------------------------------- /src/common/VirtualDOMHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/common/VirtualDOMHandle.js -------------------------------------------------------------------------------- /src/common/VirtualDOMHandleReverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/common/VirtualDOMHandleReverse.js -------------------------------------------------------------------------------- /src/common/axiosInterceptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/common/axiosInterceptors.js -------------------------------------------------------------------------------- /src/common/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/common/config.js -------------------------------------------------------------------------------- /src/common/stateAndDispatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/common/stateAndDispatch.js -------------------------------------------------------------------------------- /src/common/withDragDropContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/common/withDragDropContext.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/End.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/End.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/ExclusiveGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/ExclusiveGateWay.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/InclusiveGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/InclusiveGateWay.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/ParallelGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/ParallelGateWay.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/PoolLaneDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/PoolLaneDirection.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/PoolLaneOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/PoolLaneOrientation.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/PoolsDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/PoolsDirection.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/PoolsOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/PoolsOrientation.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/ServiceTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/ServiceTask.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/Start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/Start.js -------------------------------------------------------------------------------- /src/components/DraggableNodeFlow/UserTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/DraggableNodeFlow/UserTask.js -------------------------------------------------------------------------------- /src/components/ExhibitionJSPlumbFlow/common/VirtualDOMExhibition-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ExhibitionJSPlumbFlow/common/VirtualDOMExhibition-1.js -------------------------------------------------------------------------------- /src/components/ExhibitionJSPlumbFlow/common/VirtualDOMExhibition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ExhibitionJSPlumbFlow/common/VirtualDOMExhibition.js -------------------------------------------------------------------------------- /src/components/ExhibitionJSPlumbFlow/components/MainContainerRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ExhibitionJSPlumbFlow/components/MainContainerRender.js -------------------------------------------------------------------------------- /src/components/ExhibitionJSPlumbFlow/components/PoolLaneDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ExhibitionJSPlumbFlow/components/PoolLaneDirection.js -------------------------------------------------------------------------------- /src/components/ExhibitionJSPlumbFlow/components/PoolLaneOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ExhibitionJSPlumbFlow/components/PoolLaneOrientation.js -------------------------------------------------------------------------------- /src/components/ExhibitionJSPlumbFlow/components/PoolsDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ExhibitionJSPlumbFlow/components/PoolsDirection.js -------------------------------------------------------------------------------- /src/components/ExhibitionJSPlumbFlow/components/PoolsOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ExhibitionJSPlumbFlow/components/PoolsOrientation.js -------------------------------------------------------------------------------- /src/components/ExhibitionJSPlumbFlow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ExhibitionJSPlumbFlow/index.js -------------------------------------------------------------------------------- /src/components/HocUI/HocFormComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/HocUI/HocFormComponent.js -------------------------------------------------------------------------------- /src/components/HocUI/HocNodeFlowMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/HocUI/HocNodeFlowMenu.js -------------------------------------------------------------------------------- /src/components/HocUI/HocUIHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/HocUI/HocUIHeader.js -------------------------------------------------------------------------------- /src/components/HocUI/HocUIProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/HocUI/HocUIProperty.js -------------------------------------------------------------------------------- /src/components/HocUI/ToolBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/HocUI/ToolBar.js -------------------------------------------------------------------------------- /src/components/HocUI/component/HocFormPagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/HocUI/component/HocFormPagination.js -------------------------------------------------------------------------------- /src/components/HocUI/component/HocInputRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/HocUI/component/HocInputRules.js -------------------------------------------------------------------------------- /src/components/JSPlumbFlow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/JSPlumbFlow/index.js -------------------------------------------------------------------------------- /src/components/NodeFlowRightMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/NodeFlowRightMenu/index.js -------------------------------------------------------------------------------- /src/components/ReverseJSPlumbFlow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ReverseJSPlumbFlow/index.js -------------------------------------------------------------------------------- /src/components/ToolsBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/ToolsBar.js -------------------------------------------------------------------------------- /src/components/leftTools/Activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/Activities.js -------------------------------------------------------------------------------- /src/components/leftTools/EndEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/EndEvents.js -------------------------------------------------------------------------------- /src/components/leftTools/GateWays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/GateWays.js -------------------------------------------------------------------------------- /src/components/leftTools/PoolLane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/PoolLane.js -------------------------------------------------------------------------------- /src/components/leftTools/StartEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/StartEvents.js -------------------------------------------------------------------------------- /src/components/leftTools/Swimlanes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/Swimlanes.js -------------------------------------------------------------------------------- /src/components/leftTools/ToolsLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/ToolsLeft.js -------------------------------------------------------------------------------- /src/components/leftTools/component/ConnectLineTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/ConnectLineTools.js -------------------------------------------------------------------------------- /src/components/leftTools/component/End.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/End.js -------------------------------------------------------------------------------- /src/components/leftTools/component/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/Event.js -------------------------------------------------------------------------------- /src/components/leftTools/component/ExclusiveGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/ExclusiveGateWay.js -------------------------------------------------------------------------------- /src/components/leftTools/component/FreedomActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/FreedomActivity.js -------------------------------------------------------------------------------- /src/components/leftTools/component/InclusiveGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/InclusiveGateWay.js -------------------------------------------------------------------------------- /src/components/leftTools/component/InnerChildFlowNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/InnerChildFlowNode.js -------------------------------------------------------------------------------- /src/components/leftTools/component/MainContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/MainContainer.js -------------------------------------------------------------------------------- /src/components/leftTools/component/MouseMoveTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/MouseMoveTools.js -------------------------------------------------------------------------------- /src/components/leftTools/component/OuterChildFlowNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/OuterChildFlowNode.js -------------------------------------------------------------------------------- /src/components/leftTools/component/ParallelGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/ParallelGateWay.js -------------------------------------------------------------------------------- /src/components/leftTools/component/PoolLaneDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/PoolLaneDirection.js -------------------------------------------------------------------------------- /src/components/leftTools/component/PoolLaneOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/PoolLaneOrientation.js -------------------------------------------------------------------------------- /src/components/leftTools/component/PoolsDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/PoolsDirection.js -------------------------------------------------------------------------------- /src/components/leftTools/component/PoolsOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/PoolsOrientation.js -------------------------------------------------------------------------------- /src/components/leftTools/component/ServiceTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/ServiceTask.js -------------------------------------------------------------------------------- /src/components/leftTools/component/Start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/Start.js -------------------------------------------------------------------------------- /src/components/leftTools/component/UserTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/leftTools/component/UserTask.js -------------------------------------------------------------------------------- /src/components/property/End.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/End.js -------------------------------------------------------------------------------- /src/components/property/ExclusiveGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/ExclusiveGateWay.js -------------------------------------------------------------------------------- /src/components/property/GlobalForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/GlobalForm.js -------------------------------------------------------------------------------- /src/components/property/InclusiveGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/InclusiveGateWay.js -------------------------------------------------------------------------------- /src/components/property/ParallelGateWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/ParallelGateWay.js -------------------------------------------------------------------------------- /src/components/property/PoolLaneDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/PoolLaneDirection.js -------------------------------------------------------------------------------- /src/components/property/PoolLaneOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/PoolLaneOrientation.js -------------------------------------------------------------------------------- /src/components/property/PoolsDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/PoolsDirection.js -------------------------------------------------------------------------------- /src/components/property/PoolsOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/PoolsOrientation.js -------------------------------------------------------------------------------- /src/components/property/ServiceTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/ServiceTask.js -------------------------------------------------------------------------------- /src/components/property/Start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/Start.js -------------------------------------------------------------------------------- /src/components/property/UserTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/UserTask.js -------------------------------------------------------------------------------- /src/components/property/component/PropertyUsersGroupSelectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/component/PropertyUsersGroupSelectModal.js -------------------------------------------------------------------------------- /src/components/property/component/ServiceTaskRuleInputEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/property/component/ServiceTaskRuleInputEdit.js -------------------------------------------------------------------------------- /src/components/rightTools/component/ConnectLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/rightTools/component/ConnectLine.js -------------------------------------------------------------------------------- /src/components/rightTools/component/NodeFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/rightTools/component/NodeFlow.js -------------------------------------------------------------------------------- /src/components/rightTools/component/NoneData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/components/rightTools/component/NoneData.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/index.js -------------------------------------------------------------------------------- /src/indexForward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/indexForward.js -------------------------------------------------------------------------------- /src/indexReverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/indexReverse.js -------------------------------------------------------------------------------- /src/static/css/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/App.css -------------------------------------------------------------------------------- /src/static/css/HocFormComponent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/HocFormComponent.css -------------------------------------------------------------------------------- /src/static/css/HocNodeFlowMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/HocNodeFlowMenu.css -------------------------------------------------------------------------------- /src/static/css/HocTool.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/HocTool.css -------------------------------------------------------------------------------- /src/static/css/HocUIHeader.css: -------------------------------------------------------------------------------- 1 | /* 2 | ** 这里重写一下ant的默认样式 3 | */ 4 | .ant-card-body{ 5 | padding:0 !important; 6 | } -------------------------------------------------------------------------------- /src/static/css/HocUIProperty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/HocUIProperty.css -------------------------------------------------------------------------------- /src/static/css/LeftNode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/LeftNode.css -------------------------------------------------------------------------------- /src/static/css/NodeFlowRightMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/NodeFlowRightMenu.css -------------------------------------------------------------------------------- /src/static/css/ToolBtn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/ToolBtn.css -------------------------------------------------------------------------------- /src/static/css/container.css: -------------------------------------------------------------------------------- 1 | .active{ 2 | color: #ff6627 !important; 3 | } -------------------------------------------------------------------------------- /src/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/index.css -------------------------------------------------------------------------------- /src/static/css/newWorkFlow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/newWorkFlow.css -------------------------------------------------------------------------------- /src/static/css/rightAttr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/rightAttr.css -------------------------------------------------------------------------------- /src/static/css/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/save.js -------------------------------------------------------------------------------- /src/static/css/toolsBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/css/toolsBar.css -------------------------------------------------------------------------------- /src/static/img/1111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/img/1111.png -------------------------------------------------------------------------------- /src/static/img/grid.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/img/grid.jpeg -------------------------------------------------------------------------------- /src/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/static/img/logo.png -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/store/reducer.js -------------------------------------------------------------------------------- /src/storeGlobal/actionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeGlobal/actionCreators.js -------------------------------------------------------------------------------- /src/storeGlobal/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeGlobal/constants.js -------------------------------------------------------------------------------- /src/storeGlobal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeGlobal/index.js -------------------------------------------------------------------------------- /src/storeGlobal/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeGlobal/reducer.js -------------------------------------------------------------------------------- /src/storeGlobalReverse/actionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeGlobalReverse/actionCreators.js -------------------------------------------------------------------------------- /src/storeGlobalReverse/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeGlobalReverse/constants.js -------------------------------------------------------------------------------- /src/storeGlobalReverse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeGlobalReverse/index.js -------------------------------------------------------------------------------- /src/storeGlobalReverse/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeGlobalReverse/reducer.js -------------------------------------------------------------------------------- /src/storeProperty/actionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeProperty/actionCreators.js -------------------------------------------------------------------------------- /src/storeProperty/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeProperty/constants.js -------------------------------------------------------------------------------- /src/storeProperty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeProperty/index.js -------------------------------------------------------------------------------- /src/storeProperty/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeProperty/reducer.js -------------------------------------------------------------------------------- /src/storePropertyReverse/actionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storePropertyReverse/actionCreators.js -------------------------------------------------------------------------------- /src/storePropertyReverse/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storePropertyReverse/constants.js -------------------------------------------------------------------------------- /src/storePropertyReverse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storePropertyReverse/index.js -------------------------------------------------------------------------------- /src/storePropertyReverse/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storePropertyReverse/reducer.js -------------------------------------------------------------------------------- /src/storeTool/actionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeTool/actionCreators.js -------------------------------------------------------------------------------- /src/storeTool/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeTool/constants.js -------------------------------------------------------------------------------- /src/storeTool/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeTool/index.js -------------------------------------------------------------------------------- /src/storeTool/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeTool/reducer.js -------------------------------------------------------------------------------- /src/storeToolReverse/actionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeToolReverse/actionCreators.js -------------------------------------------------------------------------------- /src/storeToolReverse/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeToolReverse/constants.js -------------------------------------------------------------------------------- /src/storeToolReverse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeToolReverse/index.js -------------------------------------------------------------------------------- /src/storeToolReverse/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/src/storeToolReverse/reducer.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/webpack.dev.config.js -------------------------------------------------------------------------------- /webpack.pub.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/webpack.pub.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsyxl365/react-jsplumb-flow/HEAD/yarn.lock --------------------------------------------------------------------------------