move to 4.1.3
[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 } 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 import LoopService from './api/LoopService';
44 import PerformAction from './components/dialogs/PerformActions';
45 import RefreshStatus from './components/dialogs/RefreshStatus';
46 import DeployLoop from './components/dialogs/DeployLoop';
47
48 import { Link } from 'react-router-dom';
49
50 const StyledMainDiv = styled.div`
51         background-color: ${props => props.theme.backgroundColor};
52 `
53
54 const ProjectNameStyled = styled.a`
55         vertical-align: middle;
56         padding-left: 30px;
57         font-size: 36px;
58         font-weight: bold;
59 `
60
61 const StyledRouterLink = styled(Link)`
62         color: ${props => props.theme.menuFontColor};
63         background-color: ${props => props.theme.backgroundColor};
64 `
65
66 const StyledLoginInfo = styled.a`
67         color: ${props => props.theme.menuFontColor};
68         background-color: ${props => props.theme.backgroundColor};
69 `
70
71 const LoopViewDivStyled = styled.div`
72         height: 100%;
73         overflow: hidden;
74         margin-left: 10px;
75         margin-right: 10px;
76         margin-bottom: 10px;
77         color: ${props => props.theme.loopViewerFontColor};
78         background-color: ${props => props.theme.loopViewerBackgroundColor};
79         border: 1px solid transparent;
80         border-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
81 `
82
83 const LoopViewHeaderDivStyled = styled.div`
84         background-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
85         padding: 10px 10px;
86         color: ${props => props.theme.loopViewerHeaderFontColor};
87 `
88
89 const LoopViewBodyDivStyled = styled.div`
90         background-color: ${props => (props.theme.loopViewerBackgroundColor)};
91         padding: 10px 10px;
92         color: ${props => (props.theme.loopViewerHeaderFontColor)};
93         height: 95%;
94 `
95
96 export default class LoopUI extends React.Component {
97
98         static defaultLoopName="Empty (NO loop loaded yet)";
99
100         state = {
101                 userName: null,
102                 loopName: LoopUI.defaultLoopName,
103                 loopCache: new LoopCache({})
104         };
105
106         constructor() {
107                 super();
108                 this.getUser = this.getUser.bind(this);
109                 this.logout = this.logout.bind(this);
110                 this.updateLoopCache = this.updateLoopCache.bind(this);
111                 this.loadLoop = this.loadLoop.bind(this);
112                 this.closeLoop = this.closeLoop.bind(this);
113         }
114
115         componentWillMount() {
116                 this.getUser();
117         }
118
119         getUser() {
120                 UserService.login().then(user => {
121                         this.setState({ userName: user })
122                 });
123         }
124         
125         logout() {
126                 UserService.logout().then(user => {
127                         this.setState({ userName: user });
128                         window.location.reload();
129                 });
130                 
131         }
132
133         renderMenuNavBar() {
134                 return (
135                         <MenuBar loopName={this.state.loopName}/>
136                 );
137         }
138
139         renderUserLoggedNavBar() {
140                 return (
141                         <Navbar.Text>
142                         <StyledLoginInfo>Signed in as: </StyledLoginInfo>
143                                 <StyledRouterLink to="/userInfo">{this.state.userName}</StyledRouterLink>
144                                 <StyledRouterLink to="/logout/"> (logout)</StyledRouterLink>
145                         </Navbar.Text>
146                 );
147         }
148
149         renderLogoNavBar() {
150                 return (
151                         <Navbar.Brand>
152                                 <img height="50px" width="234px" src={logo} alt="" />
153                                 <ProjectNameStyled>CLAMP</ProjectNameStyled>
154                         </Navbar.Brand>
155                 );
156         }
157
158         renderNavBar() {
159                 return (
160                         <Navbar >
161                                 {this.renderLogoNavBar()}
162                                 <Navbar.Toggle aria-controls="responsive-navbar-nav" />
163                                 {this.renderMenuNavBar()}
164                                 {this.renderUserLoggedNavBar()}
165                         </Navbar>
166                 );
167         }
168
169         renderLoopViewHeader() {
170                 return (
171                         <LoopViewHeaderDivStyled>
172                                 Loop Viewer - {this.state.loopName}
173                         </LoopViewHeaderDivStyled>
174                 );
175         }
176
177         renderLoopViewBody() {
178                 return (
179                         <LoopViewBodyDivStyled>
180                                 <LoopSvg loopCache={this.state.loopCache} />
181                                 <LoopStatus loopCache={this.state.loopCache}/>
182                                 <LoopLogs loopCache={this.state.loopCache} />
183                         </LoopViewBodyDivStyled>
184                 );
185         }
186
187         getLoopCache() {
188                 return this.state.loopCache;
189
190         }
191
192         renderLoopViewer() {
193                 return (
194                         <LoopViewDivStyled>
195                                 {this.renderLoopViewHeader()}
196                                 {this.renderLoopViewBody()}
197                         </LoopViewDivStyled>
198                 );
199         }
200
201         updateLoopCache(loopJson) {
202                 this.setState({ loopCache: new LoopCache(loopJson), loopName: this.state.loopCache.getLoopName() });
203                 console.info(this.state.loopName+" loop loaded successfully");
204         }
205
206         loadLoop(loopName) {
207                 LoopService.getLoop(loopName).then(loop => {
208                         console.debug("Updating loopCache");
209                         this.updateLoopCache(loop);
210                 });
211         }
212
213         closeLoop() {
214                 this.setState({ loopCache: new LoopCache({}), loopName: LoopUI.defaultLoopName });
215                 this.props.history.push('/');
216         }
217
218         render() {
219                 return (
220                                 <StyledMainDiv id="main_div">
221                                 <Route path="/operationalPolicyModal"
222                                         render={(routeProps) => (<OperationalPolicyModal {...routeProps} loopCache={this.getLoopCache()} loadLoopFunction={this.loadLoop}/>)} />
223                                 <Route path="/configurationPolicyModal/:componentName" render={(routeProps) => (<ConfigurationPolicyModal {...routeProps} loopCache={this.getLoopCache()} loadLoopFunction={this.loadLoop}/>)} />
224                                 <Route path="/openLoop" render={(routeProps) => (<OpenLoopModal {...routeProps} loadLoopFunction={this.loadLoop} />)} />
225                                 <Route path="/loopProperties" render={(routeProps) => (<LoopProperties {...routeProps} loopCache={this.getLoopCache()} loadLoopFunction={this.loadLoop}/>)} />
226                                 <Route path="/userInfo" render={(routeProps) => (<UserInfo {...routeProps} />)} />
227                                 <Route path="/closeLoop" render={this.closeLoop} />
228                                 <Route path="/submit" render={(routeProps) => (<PerformAction {...routeProps} loopAction="submit" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache}/>)} />
229                                 <Route path="/stop" render={(routeProps) => (<PerformAction {...routeProps} loopAction="stop" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache}/>)} />
230                                 <Route path="/restart" render={(routeProps) => (<PerformAction {...routeProps} loopAction="restart" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache}/>)} />
231                                 <Route path="/delete" render={(routeProps) => (<PerformAction {...routeProps} loopAction="delete" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache}/>)} />
232                                 <Route path="/undeploy" render={(routeProps) => (<PerformAction {...routeProps} loopAction="undeploy" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache}/>)} />
233                                 <Route path="/deploy" render={(routeProps) => (<DeployLoop {...routeProps} loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache}/>)} />
234                                 <Route path="/refreshStatus" render={(routeProps) => (<RefreshStatus {...routeProps} loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache}/>)} />
235                                 <Route path="/logout" render={this.logout} />
236                                 <GlobalClampStyle />
237                                         {this.renderNavBar()}
238                                         {this.renderLoopViewer()}
239                                 </StyledMainDiv>
240                 );
241         }
242 }