Merge "Fix loop prop window"
[clamp.git] / ui-react / src / LoopUI.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 import React from 'react';
25 import styled from 'styled-components';
26 import MenuBar from './components/menu/MenuBar';
27 import Navbar from 'react-bootstrap/Navbar';
28 import logo from './logo.png';
29 import { GlobalClampStyle } from './theme/globalStyle.js';
30
31 import LoopSvg from './components/loop_viewer/svg/LoopSvg';
32 import LoopLogs from './components/loop_viewer/logs/LoopLogs';
33 import LoopStatus from './components/loop_viewer/status/LoopStatus';
34 import UserService from './api/UserService';
35 import LoopCache from './api/LoopCache';
36
37 import { Route, Redirect } from 'react-router-dom'
38 import OpenLoopModal from './components/dialogs/OpenLoop/OpenLoopModal';
39 import OperationalPolicyModal from './components/dialogs/OperationalPolicy/OperationalPolicyModal';
40 import ConfigurationPolicyModal from './components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal';
41 import LoopProperties from './components/dialogs/LoopProperties';
42 import UserInfo from './components/dialogs/UserInfo';
43
44 const ProjectNameStyled = styled.a`
45         vertical-align: middle;
46         padding-left: 30px;
47         font-size: 30px;
48
49 `
50 const LoopViewDivStyled = styled.div`
51         height: 100%;
52         overflow: hidden;
53         margin-left: 10px;
54         margin-right: 10px;
55         margin-bottom: 10px;
56         color: ${props => props.theme.loopViewerFontColor};
57         background-color: ${props => props.theme.loopViewerBackgroundColor};
58         border: 1px solid transparent;
59         border-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
60 `
61
62 const LoopViewHeaderDivStyled = styled.div`
63         background-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
64         padding: 10px 10px;
65         color: ${props => props.theme.loopViewerHeaderFontColor};
66 `
67
68 const LoopViewBodyDivStyled = styled.div`
69         background-color: ${props => (props.theme.loopViewerBackgroundColor)};
70         padding: 10px 10px;
71         color: ${props => (props.theme.loopViewerHeaderFontColor)};
72         height: 95%;
73 `
74
75 const LoopViewLoopNameSpanStyled = styled.span`
76         font-weight: bold;
77         color: ${props => (props.theme.loopViewerHeaderFontColor)};
78         background-color: ${props => (props.theme.loopViewerHeaderBackgroundColor)};
79 `
80
81 export default class LoopUI extends React.Component {
82
83         static defaultLoopName="Empty (NO loop loaded yet)";
84
85         state = {
86                 userName: null,
87                 loopName: LoopUI.defaultLoopName,
88                 loopCache: new LoopCache({}),
89         };
90
91         constructor() {
92                 super();
93                 this.getUser = this.getUser.bind(this);
94                 this.updateLoopCache = this.updateLoopCache.bind(this);
95         }
96
97         componentWillMount() {
98                 this.getUser();
99         }
100
101         getUser() {
102                 UserService.login().then(user => {
103                         this.setState({ userName: user })
104                 });
105         }
106
107         renderMenuNavBar() {
108                 return (
109                         <MenuBar loopCache={this.state.loopCache}/>
110                 );
111         }
112
113         renderUserLoggedNavBar() {
114                 return (
115                         <Navbar.Text>
116                                 Signed in as: <a href="/login">{this.state.userName}</a>
117                         </Navbar.Text>
118                 );
119         }
120
121         renderLogoNavBar() {
122                 return (
123                         <Navbar.Brand>
124                                 <img height="50px" width="234px" src={logo} alt="" />
125                                 <ProjectNameStyled>CLAMP</ProjectNameStyled>
126                         </Navbar.Brand>
127                 );
128         }
129
130         renderNavBar() {
131                 return (
132                         <Navbar expand="lg">
133                                 {this.renderLogoNavBar()}
134                                 {this.renderMenuNavBar()}
135                                 {this.renderUserLoggedNavBar()}
136                         </Navbar>
137                 );
138         }
139
140         renderLoopViewHeader() {
141                 return (
142                         <LoopViewHeaderDivStyled>
143                                 Loop Viewer - {this.state.loopName}
144                         </LoopViewHeaderDivStyled>
145                 );
146         }
147
148         renderLoopViewBody() {
149                 return (
150                         <LoopViewBodyDivStyled>
151                                 <LoopSvg loopCache={this.state.loopCache} />
152                                 <LoopStatus loopCache={this.state.loopCache}/>
153                                 <LoopLogs loopCache={this.state.loopCache} />
154                         </LoopViewBodyDivStyled>
155                 );
156         }
157
158         getLoopCache() {
159                 return this.state.loopCache;
160
161         }
162         renderLoopViewer() {
163                 return (
164                         <LoopViewDivStyled>
165                                 {this.renderLoopViewHeader()}
166                                 {this.renderLoopViewBody()}
167                         </LoopViewDivStyled>
168                 );
169         }
170
171         updateLoopCache(loopJson) {
172                 this.setState({ loopCache: new LoopCache(loopJson) });
173                 this.setState({ loopName: this.state.loopCache.getLoopName() });
174         }
175
176         render() {
177                 return (
178                                 <div id="main_div">
179                                 <Route path="/operationalPolicyModal"
180                                         render={(routeProps) => (<OperationalPolicyModal {...routeProps} loopCache={this.getLoopCache()} />)} />
181                                 <Route path="/configurationPolicyModal/:componentName" render={(routeProps) => (<ConfigurationPolicyModal {...routeProps} loopCache={this.getLoopCache()} />)} />
182                                 <Route path="/openLoop" render={(routeProps) => (<OpenLoopModal {...routeProps} updateLoopCacheFunction={this.updateLoopCache} />)} />
183                                 <Route path="/loopProperties" render={(routeProps) => (<LoopProperties {...routeProps} loopCache={this.getLoopCache()} />)} />
184                                 <Route path="/userInfo" render={(routeProps) => (<UserInfo {...routeProps} />)} />
185                                 <Route path="/closeLoop" render={(routeProps) => (<Redirect to='/'/>)} />
186                                         <GlobalClampStyle />
187                                         {this.renderNavBar()}
188                                         {this.renderLoopViewer()}
189                                 </div>
190                 );
191         }
192 }