Add data-provider
[ccsdk/features.git] / sdnr / wt / odlux / apps / helpApp / src / components / subMenuEntry.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 { IApplicationStoreState } from "../../../../framework/src/store/applicationStore";
21 import connect, { Connect, IDispatcher } from '../../../../framework/src/flux/connect';
22 import { TreeView, TreeViewCtorType } from '../../../../framework/src/components/material-ui/treeView';
23
24 import { ListItemText } from '@material-ui/core';
25
26 import { NavigateToApplication } from '../../../../framework/src/actions/navigationActions';
27
28 import { TocTreeNode } from '../models/tocNode';
29
30 const TocTree = TreeView as any as TreeViewCtorType<TocTreeNode>;
31
32 const mapProps = (state: IApplicationStoreState) => ({
33   helpToc: state.help.toc,
34   helpBusy: state.help.busy
35 });
36
37 const mapDisp = (dispatcher: IDispatcher) => ({
38   requestDocument: (node: TocTreeNode) => dispatcher.dispatch(new NavigateToApplication("help", node.uri))
39 });
40
41 const SubMenuEntryComponent: React.SFC<Connect<typeof mapProps, typeof mapDisp>> = (props) => {
42   return props.helpToc
43   ? (
44     <TocTree items={ props.helpToc } contentProperty={ "label" } childrenProperty={ "nodes" } depthOffset={ 1 }
45         useFolderIcons={ false } enableSearchBar={ false } onItemClick={ props.requestDocument } />
46     )
47   : (
48     <ListItemText >Loading ...</ListItemText>
49   )
50 };
51
52 export const SubMenuEntry = connect(mapProps, mapDisp)(SubMenuEntryComponent);
53 export default SubMenuEntry;
54