Merge "Draft of Config policy"
[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
42 const ProjectNameStyled = styled.a`
43         vertical-align: middle;
44         padding-left: 30px;
45         font-size: 30px;
46
47 `
48 const LoopViewDivStyled = styled.div`
49         height: 90vh;
50         overflow: hidden;
51         margin-left: 10px;
52         margin-right: 10px;
53         margin-bottom: 10px;
54         color: ${props => props.theme.loopViewerFontColor};
55         background-color: ${props => props.theme.loopViewerBackgroundColor};
56         border: 1px solid transparent;
57         border-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
58 `
59
60 const LoopViewHeaderDivStyled = styled.div`
61         background-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
62         padding: 10px 10px;
63         color: ${props => props.theme.loopViewerHeaderFontColor};
64 `
65
66 const LoopViewBodyDivStyled = styled.div`
67         background-color: ${props => (props.theme.loopViewerBackgroundColor)};
68         padding: 10px 10px;
69         color: ${props => (props.theme.loopViewerHeaderFontColor)};
70         height: 95%;
71 `
72
73 const LoopViewLoopNameSpanStyled = styled.span`
74         font-weight: bold;
75         color: ${props => (props.theme.loopViewerHeaderFontColor)};
76         background-color: ${props => (props.theme.loopViewerHeaderBackgroundColor)};
77 `
78
79 export default class LoopUI extends React.Component {
80
81         static defaultLoopName="Empty (NO loop loaded yet)";
82
83         state = {
84                 userName: null,
85                 loopName: LoopUI.defaultLoopName,
86                 loopCache: new LoopCache({}),
87         };
88
89         constructor() {
90                 super();
91                 this.getUser = this.getUser.bind(this);
92                 this.updateLoopCache = this.updateLoopCache.bind(this);
93         }
94
95         componentWillMount() {
96                 this.getUser();
97         }
98
99         getUser() {
100                 UserService.login().then(user => {
101                         this.setState({ userName: user })
102                 });
103         }
104
105         renderMenuNavBar() {
106                 return (
107                         <MenuBar />
108                 );
109         }
110
111         renderUserLoggedNavBar() {
112                 return (
113                         <Navbar.Text>
114                                 Signed in as: <a href="/login">{this.state.userName}</a>
115                         </Navbar.Text>
116                 );
117         }
118
119         renderLogoNavBar() {
120                 return (
121                         <Navbar.Brand>
122                                 <img height="50px" width="234px" src={logo} alt="" />
123                                 <ProjectNameStyled>CLAMP</ProjectNameStyled>
124                         </Navbar.Brand>
125                 );
126         }
127
128         renderNavBar() {
129                 return (
130                         <Navbar expand="lg">
131                                 {this.renderLogoNavBar()}
132                                 {this.renderMenuNavBar()}
133                                 {this.renderUserLoggedNavBar()}
134                         </Navbar>
135                 );
136         }
137
138         renderLoopViewHeader() {
139                 return (
140                         <LoopViewHeaderDivStyled>
141                                 Loop Viewer - <LoopViewLoopNameSpanStyled id="loop_name">{this.state.loopName}</LoopViewLoopNameSpanStyled>
142                         </LoopViewHeaderDivStyled>
143                 );
144         }
145
146         renderLoopViewBody() {
147                 return (
148                         <LoopViewBodyDivStyled>
149                                 <LoopSvg loopCache={this.state.loopCache} />
150                                 <LoopLogs />
151                                 <LoopStatus />
152                         </LoopViewBodyDivStyled>
153                 );
154         }
155
156         renderLoopViewer() {
157                 return (
158                         <LoopViewDivStyled>
159                                 {this.renderLoopViewHeader()}
160                                 {this.renderLoopViewBody()}
161                         </LoopViewDivStyled>
162                 );
163         }
164
165         updateLoopCache(loopJson) {
166                 this.setState({ loopCache: new LoopCache(loopJson) });
167                 this.setState({ loopName: this.state.loopCache.getLoopName() });
168         }
169
170         render() {
171                 return (
172                         <div id="main_div">
173                                 <GlobalClampStyle />
174                                 {this.renderNavBar()}
175                                 {this.renderLoopViewer()}
176                                 <Route path="/operationalPolicyModal"
177                                         render={(routeProps) => (<OperationalPolicyModal {...routeProps} loopCache={this.state.loopCache} />)} />
178                                 <Route path="/configurationPolicyModal" render={(routeProps) => (<ConfigurationPolicyModal {...routeProps} loopCache={this.state.loopCache} />)} />
179                                 <Route path="/openLoop" render={(routeProps) => (<OpenLoopModal {...routeProps} updateLoopCacheFunction={this.updateLoopCache} />)} />
180                                 <Route path="/closeLoop" render={(routeProps) => (<Redirect to='/'/>)} />
181                         </div>
182                 );
183         }
184 }