Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / apps / apiDemo / src / plugin.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 React from 'react';
19 import { withRouter, RouteComponentProps } from 'react-router-dom';
20
21 import { faNewspaper } from '@fortawesome/free-solid-svg-icons/faNewspaper';
22
23 import applicationManager from '../../../framework/src/services/applicationManager';
24 import { connect, Connect } from '../../../framework/src/flux/connect';
25 import { ApiAction } from '../../../framework/src/middleware/api'; // for RestConf
26
27 import { apiDemoRootHandler } from './handlers/apiDemoRootHandler';
28 import { ModulesRequestSuccess } from './actions/modulesSuccess';
29 import { Module } from './models/module';
30
31 type AppProps = RouteComponentProps & Connect & { modules: Module[]; requestModules: () => void };
32
33 const App = (props: AppProps ) => (
34   <>
35     <button color="inherit" onClick={ props.requestModules }>Load Modules</button>
36     <ul>{ props.modules.map((mod, ind) => (<li key={ ind }>{ mod.name }</li>)) }</ul>
37   </>
38 );
39
40 const FinalApp = withRouter(connect((state) => ({
41   modules: state.apiDemo.modules,
42 }), (dispatcher => ({
43   requestModules: () => { dispatcher.dispatch(new ApiAction('restconf/modules', ModulesRequestSuccess, true)); },
44 })))(App));
45
46 applicationManager.registerApplication({
47   name: 'apiDemo',
48   icon: faNewspaper,
49   rootComponent: FinalApp,
50   rootActionHandler: apiDemoRootHandler,
51   menuEntry: 'API Demo',
52 });
53