aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/flows/FlowsEditorModalView.jsx
blob: 8441c7d1d630ccbc2681f812999fd4a04b024eed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React, {Component} from 'react';
import i18n from 'nfvo-utils/i18n/i18n.js';
import Input from 'nfvo-components/input/validation/ValidationInput.jsx';
import Form from 'nfvo-components/input/validation/ValidationForm.jsx';

class FlowsEditorModalView extends Component {

	render() {
		let {onCancel, onDataChanged, currentFlow} = this.props;
		let {artifactName, description} = currentFlow;
		return (
			<Form onSubmit={() => this.onSaveClicked()} onReset={onCancel}>
				<Input
					type='text'
					name='name'
					label={i18n('Name')}
					validations={{required: true}}
					value={artifactName}
					onChange={artifactName => onDataChanged({artifactName})}/>
				<Input
					type='textarea'
					name='description'
					label={i18n('Description')}
					validations={{required: true}}
					value={description}
					onChange={description => onDataChanged({description})}/>
			</Form>
		);
	}

	onSaveClicked() {
		let {currentFlow, onSubmit} = this.props;
		if (onSubmit) {
			onSubmit(currentFlow);
		}
	}

}

export default FlowsEditorModalView;