blob: c1280837740bf85f2fd04af67bcccf8964952b05 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13 * or implied. See the License for the specific language governing
14 * permissions and limitations under the License.
15 */
talig8e9c0652017-12-20 14:30:43 +020016import React, {Component} from 'react';
17import PropTypes from 'prop-types';
Avi Zivb8e2faf2017-07-18 19:45:38 +030018import Button from 'sdc-ui/lib/react/Button.js';
Michael Landoefa037d2017-02-19 12:57:33 +020019import Sequencer from 'dox-sequence-diagram-ui';
20
21import i18n from 'nfvo-utils/i18n/i18n.js';
22
23class SequenceDiagram extends Component {
24
25 static propTypes = {
26 onSave: PropTypes.func.isRequired,
AviZi280f8012017-06-09 02:39:56 +030027 onClose: PropTypes.func,
Michael Landoefa037d2017-02-19 12:57:33 +020028 model: PropTypes.object.isRequired
29 };
30
31 onSave() {
32 this.props.onSave(this.refs.sequencer.getModel());
33 }
34
35 render() {
36 return (
37 <div className='sequence-diagram'>
38 <div className='sequence-diagram-sequencer'>
39 <Sequencer ref='sequencer' options={{useHtmlSelect: true}} model={this.props.model} />
40 </div>
41 <div className='sequence-diagram-action-buttons'>
Avi Zivb8e2faf2017-07-18 19:45:38 +030042 <Button onClick={() => this.onSave()}>{i18n('Save')}</Button>
43 <Button onClick={this.props.onClose}>{i18n('Close')}</Button>
Michael Landoefa037d2017-02-19 12:57:33 +020044 </div>
45 </div>
46 );
47 }
48
49}
50
51export default SequenceDiagram;