-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(deploy-toolbar): add modal for deployment
* add ModalConductor and modal related methods to App component * add DeployDiagramModal to handle diagram deployment * connect BPMN and DMN editors to deployment feature
- Loading branch information
1 parent
003e893
commit 8cffa6b
Showing
24 changed files
with
593 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* global sinon */ | ||
|
||
import React from 'react'; | ||
|
||
import { | ||
shallow | ||
} from 'enzyme'; | ||
|
||
import { DeployDiagramModal } from '../deploy-diagram-modal'; | ||
|
||
|
||
describe('<DeployDiagramModal>', function() { | ||
|
||
it('should render', function() { | ||
shallow(<DeployDiagramModal />); | ||
}); | ||
|
||
|
||
it('should set state.error to error message when onDeploy throws error', async function() { | ||
// given | ||
const errorMessage = 'error'; | ||
|
||
const onDeployStub = sinon.stub().throws({ message: errorMessage }); | ||
|
||
const wrapper = shallow(<DeployDiagramModal onDeploy={ onDeployStub } />); | ||
const instance = wrapper.instance(); | ||
|
||
// when | ||
await instance.handleDeploy(new Event('click')); | ||
|
||
// expect | ||
expect(instance.state.error).to.be.equal(errorMessage); | ||
}); | ||
|
||
|
||
it('should set state.success to success message when onDeploy resolves', async function() { | ||
// given | ||
const endpointUrl = 'http://example.com'; | ||
const successMessage = `Successfully deployed diagram to ${endpointUrl}`; | ||
|
||
const onDeployStub = sinon.stub().resolves(); | ||
|
||
const wrapper = shallow(<DeployDiagramModal onDeploy={ onDeployStub } />); | ||
const instance = wrapper.instance(); | ||
instance.state.endpointUrl = endpointUrl; | ||
|
||
// when | ||
await instance.handleDeploy(new Event('click')); | ||
|
||
// expect | ||
expect(instance.state.success).to.be.equal(successMessage); | ||
}); | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import React from 'react'; | ||
|
||
import View from './View'; | ||
|
||
|
||
const defaultState = { | ||
isLoading: false, | ||
success: '', | ||
error: '', | ||
endpointUrl: '', | ||
tenantId: '', | ||
deploymentName: '' | ||
}; | ||
|
||
class DeployDiagramModal extends React.Component { | ||
constructor() { | ||
super(); | ||
|
||
this.state = defaultState; | ||
} | ||
|
||
handleDeploy = async (event) => { | ||
event.preventDefault(); | ||
|
||
this.setState({ | ||
success: '', | ||
error: '', | ||
isLoading: true | ||
}); | ||
|
||
const payload = this.getPayloadFromState(); | ||
|
||
try { | ||
await this.props.onDeploy(payload); | ||
|
||
this.setState({ | ||
isLoading: false, | ||
success: `Successfully deployed diagram to ${payload.endpointUrl}`, | ||
error: '' | ||
}); | ||
} catch (error) { | ||
this.setState({ | ||
isLoading: false, | ||
success: '', | ||
error: error.message | ||
}); | ||
} | ||
} | ||
|
||
handleEndpointUrlChange = event => this.setState({ endpointUrl: event.target.value }); | ||
|
||
handleTenantIdChange = event => this.setState({ tenantId: event.target.value }); | ||
|
||
handleDeploymentNameChange = event => this.setState({ deploymentName: event.target.value }); | ||
|
||
render() { | ||
return <View | ||
onClose={ this.props.onClose } | ||
onDeploy={ this.handleDeploy } | ||
onEndpointUrlChange={ this.handleEndpointUrlChange } | ||
onTenantIdChange={ this.handleTenantIdChange } | ||
onDeploymentNameChange={ this.handleDeploymentNameChange } | ||
|
||
isLoading={ this.state.isLoading } | ||
success={ this.state.success } | ||
error={ this.state.error } | ||
endpointUrl={ this.state.endpointUrl } | ||
tenantId={ this.state.tenantId } | ||
deploymentName={ this.state.deploymentName } | ||
/>; | ||
} | ||
|
||
getPayloadFromState() { | ||
const payload = { | ||
endpointUrl: this.state.endpointUrl, | ||
deploymentName: this.state.deploymentName, | ||
tenantId: this.state.tenantId | ||
}; | ||
|
||
return payload; | ||
} | ||
} | ||
|
||
export default DeployDiagramModal; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
|
||
import css from './ErrorMessage.less'; | ||
|
||
|
||
const ErrorMessage = ({ message }) => ( | ||
<div className={ css.ErrorMessage }> | ||
<strong>Error: </strong><span className={ css.ErrorContent }>{ message }</span> | ||
</div> | ||
); | ||
|
||
export default ErrorMessage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
:local(.ErrorMessage) { | ||
border: solid 1px; | ||
border-radius: 4px; | ||
padding: 8px 10px; | ||
|
||
color: #721c24; | ||
background-color: #f8d7da; | ||
border-color: #f5c6cb; | ||
} | ||
|
||
:local(.ErrorContent) { | ||
user-select: text; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import React from 'react'; | ||
|
||
import { Loading as style } from './Loading.less'; | ||
|
||
import { Icon } from '../primitives'; | ||
|
||
export default () => <Icon name={ 'loading' } className={ style } />; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
:local(.Loading) { | ||
animation: spin 2s infinite linear; | ||
display: inline-block; | ||
|
||
@keyframes spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
transform: rotate(359deg); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
|
||
import css from './Success.less'; | ||
|
||
|
||
const Success = ({ message }) => ( | ||
<div className={ css.Success }> | ||
<strong>Success: </strong><span className={ css.SuccessContent }>{ message }</span> | ||
</div> | ||
); | ||
|
||
export default Success; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
:local(.Success) { | ||
border: solid 1px; | ||
border-radius: 4px; | ||
padding: 8px 10px; | ||
|
||
color: #155724; | ||
background-color: #d4edda; | ||
border-color: #c3e6cb; | ||
} | ||
|
||
:local(.SuccessContent) { | ||
user-select: text; | ||
} |
Oops, something went wrong.