Minor functional fixes in odlux apps
[ccsdk/features.git] / sdnr / wt / odlux / apps / faultApp / src / components / faultStatus.tsx
1 /**
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt odlux
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 import * as React from 'react';
19
20 import { withStyles, WithStyles, createStyles, Theme } from '@material-ui/core/styles';
21 import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';  // select app icon
22
23 import connect, { Connect } from '../../../../framework/src/flux/connect';
24 import { IApplicationStoreState } from '../../../../framework/src/store/applicationStore';
25
26 import Typography from '@material-ui/core/Typography';
27 import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
28
29 const styles = (theme: Theme) => createStyles({
30   icon: {
31     marginLeft: 8,
32     marginRight: 8
33   },
34   critical: {
35     color: "red"
36   },
37   major: {
38     color: "orange"
39   },
40   minor: {
41     color: "#f7f700"
42   },
43   warning: {
44     color: "#428bca"
45   }
46 });
47
48 const mapProps = (state: IApplicationStoreState) => ({
49   faultStatus: state.fault.faultStatus,
50 });
51
52
53 type FaultStatusComponentProps = & WithStyles<typeof styles> & Connect<typeof mapProps>;
54
55 class FaultStatusComponent extends React.Component<FaultStatusComponentProps> {
56   render(): JSX.Element {
57     const { classes, faultStatus } = this.props;
58
59     return (
60       <Typography variant="body1" color="inherit" >
61         Alarm status: <FontAwesomeIcon className={`${classes.icon} ${classes.critical}`} icon={faExclamationTriangle} /> { faultStatus.critical  } |
62         <FontAwesomeIcon className={`${classes.icon} ${classes.major}`} icon={faExclamationTriangle} /> { faultStatus.major } |
63         <FontAwesomeIcon className={`${classes.icon} ${classes.minor}`} icon={faExclamationTriangle} /> { faultStatus.minor } |
64         <FontAwesomeIcon className={`${classes.icon} ${classes.warning}`} icon={faExclamationTriangle} /> { faultStatus.warning } |
65       </Typography>
66     );
67   };
68 }
69
70 export const FaultStatus = withStyles(styles)(connect(mapProps)(FaultStatusComponent));
71 export default FaultStatus;