Create new action for lifecycle modal

merge-requests/91/head
Jayasanka 5 years ago
parent 1c8d5bfc3e
commit b39a52fd7c

@ -1,10 +1,13 @@
import React from "react"; import React from "react";
import LifeCycleGraph from "./LifeCycleGraph"; import LifeCycleGraph from "./LifeCycleGraph";
import {connect} from "react-redux"; import {connect} from "react-redux";
import {getLifecycle, openReleasesModal} from "../../../js/actions"; import {getLifecycle, openLifecycleModal} from "../../../js/actions";
import {Button} from "antd";
import LifecycleModal from "./LifecycleModal";
const mapDispatchToProps = dispatch => ({ const mapDispatchToProps = dispatch => ({
getLifecycle: () => dispatch(getLifecycle()) getLifecycle: () => dispatch(getLifecycle()),
openLifecycleModal: (nextState) => dispatch(openLifecycleModal(nextState))
}); });
const mapStateToProps = state => { const mapStateToProps = state => {
@ -14,16 +17,32 @@ const mapStateToProps = state => {
}; };
class ConnectedLifeCycle extends React.Component { class ConnectedLifeCycle extends React.Component {
constructor(props){
super(props);
this.openModal = this.openModal.bind(this);
}
componentDidMount() { componentDidMount() {
this.props.getLifecycle(); this.props.getLifecycle();
} }
openModal() {
console.log(this.props);
this.props.openLifecycleModal("IN_REVIEW");
}
render() { render() {
console.log(); console.log();
const lifecycle = this.props.lifecycle; const lifecycle = this.props.lifecycle;
if (lifecycle != null) { if (lifecycle != null) {
return ( return (
<div>
<LifecycleModal/>
<Button onClick={this.openModal}>aaaa</Button>
<LifeCycleGraph currentStatus={this.props.currentStatus} lifecycle={this.props.lifecycle}/> <LifeCycleGraph currentStatus={this.props.currentStatus} lifecycle={this.props.lifecycle}/>
</div>
); );
} else { } else {

@ -29,7 +29,6 @@ class LifeCycleGraph extends React.Component {
color = "rgb(0,192,255)"; color = "rgb(0,192,255)";
} }
const node = createNode(stateName, color); const node = createNode(stateName, color);
// node.addPort()
nodes.push(node); nodes.push(node);
lifecycle[stateName].node = node; lifecycle[stateName].node = node;
}); });
@ -47,6 +46,11 @@ class LifeCycleGraph extends React.Component {
nodes.forEach((node) => { nodes.forEach((node) => {
model.addNode(node); model.addNode(node);
// node.addListener({
// selectionChanged: (node, isSelected) => {
// console.log(isSelected);
// }
// });
}); });
links.forEach((link) => { links.forEach((link) => {
model.addLink(link); model.addLink(link);
@ -57,7 +61,7 @@ class LifeCycleGraph extends React.Component {
engine.setDiagramModel(distributedModel); engine.setDiagramModel(distributedModel);
return ( return (
<div style={{height: 900}}> <div style={{height: 500}}>
<SRD.DiagramWidget diagramEngine={engine} maxNumberPointsPerLink={10} smartRouting={true}/> <SRD.DiagramWidget diagramEngine={engine} maxNumberPointsPerLink={10} smartRouting={true}/>
</div> </div>
); );
@ -87,4 +91,8 @@ function connectNodes(nodeFrom, nodeTo) {
return nodeFrom.getPort(outPortName).link(nodeTo.getPort(inPortName)); return nodeFrom.getPort(outPortName).link(nodeTo.getPort(inPortName));
} }
function f() {
console.log(1);
}
export default LifeCycleGraph; export default LifeCycleGraph;

@ -0,0 +1,74 @@
import React from "react";
import {Modal, Typography,List, Avatar} from 'antd';
import {connect} from 'react-redux';
// connecting state.releaseView with the component
const mapStateToProps = state => {
console.log(state);
return {
nextState: state.lifecycleModal.nextState,
visible: state.lifecycleModal.visible
}
};
const Text = Typography;
class ConnectedLifecycleModal extends React.Component {
constructor(props) {
super(props);
this.state = {
visible: false
};
}
componentWillReceiveProps(nextProps) {
if (nextProps !== this.props) {
console.log(nextProps);
this.setState({
visible: nextProps.visible
})
}
}
showModal = () => {
this.setState({
visible: true,
});
};
handleOk = (e) => {
this.setState({
visible: false,
});
};
handleCancel = (e) => {
this.setState({
visible: false,
});
};
render() {
if (this.props.nextState != null) {
const nextState = this.props.nextState;
return (
<div>
<Modal
title="Change State"
visible={this.state.visible}
onOk={this.handleOk}
onCancel={this.handleCancel}
>
<p>Some contents...</p>
</Modal>
</div>
);
} else {
return null;
}
}
}
const LifecycleModal = connect(mapStateToProps, null)(ConnectedLifecycleModal);
export default LifecycleModal;

@ -55,6 +55,17 @@ export const openReleasesModal = (app) => dispatch => {
}); });
}; };
export const openLifecycleModal = (nextState) => dispatch => {
console.log(nextState);
dispatch({
type: ActionTypes.OPEN_LIFECYCLE_MODAL,
payload: {
nextState: nextState
}
});
};
export const getLifecycle = ()=> dispatch =>{ export const getLifecycle = ()=> dispatch =>{
const request = "method=get&content-type=application/json&payload={}&api-endpoint=/application-mgt-publisher/v1.0/applications/lifecycle-config"; const request = "method=get&content-type=application/json&payload={}&api-endpoint=/application-mgt-publisher/v1.0/applications/lifecycle-config";

@ -6,8 +6,8 @@ const ActionTypes = keyMirror({
OPEN_RELEASES_MODAL: null, OPEN_RELEASES_MODAL: null,
CLOSE_RELEASES_MODAL: null, CLOSE_RELEASES_MODAL: null,
GET_RELEASE: null, GET_RELEASE: null,
GET_LIFECYCLE: null GET_LIFECYCLE: null,
OPEN_LIFECYCLE_MODAL: null
}); });
export default ActionTypes; export default ActionTypes;

@ -7,7 +7,11 @@ const initialState = {
app: null app: null
}, },
release: null, release: null,
lifecycle: null lifecycle: null,
lifecycleModal:{
visible: false,
nextState: null
}
}; };
function rootReducer(state = initialState, action) { function rootReducer(state = initialState, action) {
@ -30,6 +34,13 @@ function rootReducer(state = initialState, action) {
return Object.assign({}, state, { return Object.assign({}, state, {
lifecycle: action.payload lifecycle: action.payload
}); });
}else if (action.type === ActionTypes.OPEN_LIFECYCLE_MODAL) {
return Object.assign({}, state, {
lifecycleModal: {
visible: true,
nextState: action.payload.nextState
}
});
} }
return state; return state;
} }

@ -69,14 +69,15 @@ class ConnectedRelease extends React.Component {
<ReleaseView release={release}/> <ReleaseView release={release}/>
</Card> </Card>
</Col> </Col>
<Col span={8}> </Row>
<Row style={{padding: 10}}>
<Col>
<Card> <Card>
<LifeCycle currentStatus={release.currentStatus.toUpperCase()}/> <LifeCycle currentStatus={release.currentStatus.toUpperCase()}/>
</Card> </Card>
</Col> </Col>
</Row> </Row>
</div> </div>
</div> </div>
); );

Loading…
Cancel
Save