From: sebdet Date: Fri, 19 Jul 2019 07:50:33 +0000 (+0200) Subject: Rework the logs X-Git-Tag: 4.1.0~6 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=c1ccc5428cdb26b47dc6f6f5f8222808c3db3075;p=clamp.git Rework the logs Provide data to logs viewer and rework the look and feel Issue-ID: CLAMP-428 Change-Id: I7445c491faa7a061da4a959b4ca7646c7c14a88d Signed-off-by: sebdet --- diff --git a/.gitignore b/.gitignore index b6d49c75..fbdcf4af 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,6 @@ target ui-react/node_modules ui-react/build **/package-lock.json -**/logs/ **/.evosuite/ **/debug-logs/ *.log diff --git a/ui-react/src/LoopUI.js b/ui-react/src/LoopUI.js index dd4923e3..1f79d39e 100644 --- a/ui-react/src/LoopUI.js +++ b/ui-react/src/LoopUI.js @@ -147,7 +147,7 @@ export default class LoopUI extends React.Component { return ( - + ); diff --git a/ui-react/src/components/loop_viewer/logs/LoopLogs.js b/ui-react/src/components/loop_viewer/logs/LoopLogs.js new file mode 100644 index 00000000..d7d983d6 --- /dev/null +++ b/ui-react/src/components/loop_viewer/logs/LoopLogs.js @@ -0,0 +1,95 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP CLAMP + * ================================================================================ + * Copyright (C) 2019 AT&T Intellectual Property. All rights + * reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END============================================ + * =================================================================== + * + */ +import React from 'react'; +import Table from 'react-bootstrap/Table'; +import LoopCache from '../../../api/LoopCache'; +import styled from 'styled-components'; + +const TableRow = ({ logRow }) => ( + + {logRow.logInstant} + {logRow.logType} + {logRow.logComponent} + {logRow.message} + + +) + +const LoopLogsHeaderDivStyled = styled.div` + background-color: ${props => props.theme.loopViewerHeaderBackgroundColor}; + padding: 10px 10px; + color: ${props => props.theme.loopViewerHeaderFontColor}; + overflow: auto; +` + +export default class LoopLogs extends React.Component { + + state = { + loopCache: new LoopCache({}), + } + constructor(props) { + super(props); + this.renderLogs = this.renderLogs.bind(this); + this.state.loopCache=props.loopCache; + } + + shouldComponentUpdate(nextProps, nextState) { + return this.state.loopCache !== nextState.loopCache; + } + + componentWillReceiveProps(newProps) { + this.setState({ + loopCache: newProps.loopCache, + }); + } + + renderLogs() { + if (this.state.loopCache.getLoopLogsArray() != null) { + return ( + this.state.loopCache.getLoopLogsArray().map(row => ) + ) + } + } + + render() { + return ( + + + + + + + + + + + + + {this.renderLogs()} + +
DateTypeComponentLog
+
+ + ); + } +}