aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/minimumApp/src/plugin.tsx
blob: dc698e11bec5fa63b54bd3647a849a925f087d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// app configuration and main entry point for the app

import * as React from "react";
import { withRouter, RouteComponentProps, Route, Switch, Redirect } from 'react-router-dom';

import { faLock } from '@fortawesome/free-solid-svg-icons';  // select app icon

import applicationManager from '../../../framework/src/services/applicationManager';
import connect, { Connect } from '../../../framework/src/flux/connect';

import { minimumAppRootHandler } from './handlers/minimumAppRootHandler';

type AppProps = RouteComponentProps & Connect;

const App = (props: AppProps) => (
  <div>Start your app here!!</div>
);

const FinalApp = withRouter(connect()(App));

export function register() {
  applicationManager.registerApplication({
    name: "minimumApp",
    icon: faLock,
    rootComponent: FinalApp,
    rootActionHandler: minimumAppRootHandler,
    menuEntry: "Minimum App"
  });
}