Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / apps / helpApp / src / views / helpTocApp.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
19 import React from 'react'
20 import {connect, Connect, IDispatcher } from "../../../../framework/src/flux/connect";
21
22 import { NavigateToApplication } from "../../../../framework/src/actions/navigationActions";
23 import { FunctionComponent } from "react";
24 import { IApplicationStoreState } from "../../../../framework/src/store/applicationStore";
25 import TocEntry from "../components/tocEntry";
26 import { Typography } from "@mui/material";
27
28 const mapProps = (state: IApplicationStoreState) => ({
29     helpToc: state.help.toc,
30 })
31
32 const mapDisp = (dispatcher: IDispatcher) => ({
33     requestDocument: (uri: string) => dispatcher.dispatch(new NavigateToApplication("help", uri))
34 });
35
36 const HelpTocComponent: FunctionComponent<Connect<typeof mapProps, typeof mapDisp>> = (props) => {
37
38     return (
39         <div>
40             <Typography aria-label="help" style={{ marginBottom: '30px' }} variant="h5">
41                 Help &amp; FAQ
42             </Typography>
43             <Typography style={{ marginBottom: '30px' }} variant="body1">
44                 On our Help site, you can find general information about SDN-R, detailed information about our applications, frequently asked questions and a list of used abbreviations.
45             </Typography>
46             {
47                 props.helpToc && props.helpToc.map((item, index) => <TocEntry key={index} overviewUri={item.uri} nodes={item.nodes} label={item.label} loadDocument={props.requestDocument} />)
48             }
49         </div>
50     )
51 }
52
53 export const HelpTocApp = connect(mapProps, mapDisp)(HelpTocComponent)
54
55 export default HelpTocApp;