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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// 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 { faAdjust } from '@fortawesome/free-solid-svg-icons'; // select app icon
import connect, { Connect, IDispatcher } from '../../../framework/src/flux/connect';
import applicationManager from '../../../framework/src/services/applicationManager';
import { IApplicationStoreState } from "../../../framework/src/store/applicationStore";
import { configurationAppRootHandler } from './handlers/configurationAppRootHandler';
import configurationService from "./services/configurationService";
import ConfigurationApplication from "./views/configurationApplication";
import { updateMountIdAsyncActionCreator, updateLpIdAsyncActionCreator, updateViewDataAsyncActionCreator } from "./actions/configurationActions";
let currentMountId: string | null | undefined = undefined;
let currentLpId: string | null |undefined = undefined;
let currentViewId: string | null | undefined = undefined;
let currentIndex: string | null | undefined = undefined;
let lastUrl: string | undefined = undefined;
const mapProps = (state: IApplicationStoreState) => ({
// currentProblemsProperties: createCurrentProblemsProperties(state),
});
const mapDisp = (dispatcher: IDispatcher) => ({
updateMountId: (mountId: string | undefined) => dispatcher.dispatch(updateMountIdAsyncActionCreator(mountId)),
updateLpId: (lpId: string | undefined) => dispatcher.dispatch(updateLpIdAsyncActionCreator(lpId)),
updateViewData: (viewPath: string, indexValues: string[]) => dispatcher.dispatch(updateViewDataAsyncActionCreator(viewPath, indexValues)),
});
const ConfigurationApplicationRouteAdapter = connect(mapProps, mapDisp)((props: RouteComponentProps<{ mountId?: string, lpId?: string, viewId?: string, "0"?: string }> & Connect<typeof mapProps, typeof mapDisp>) => {
if (props.location.pathname !== lastUrl) {
// ensure the asynchronus update will only be called once per path
lastUrl = props.location.pathname;
window.setTimeout(async () => {
// check if the mountId has changed
if (currentMountId !== props.match.params.mountId) {
currentMountId = props.match.params.mountId || undefined;
currentLpId = null;
currentViewId = null;
currentIndex = null;
await props.updateMountId(currentMountId);
}
// check if the lpId has changed
if (currentLpId !== props.match.params.lpId) {
currentLpId = props.match.params.lpId || undefined;
currentViewId = null;
currentIndex = null;
currentMountId && await props.updateLpId(currentLpId);
}
// check if the viewId or the indices has changed
if (currentViewId !== props.match.params.viewId || currentIndex !== props.match.params[0]) {
currentViewId = props.match.params.viewId || undefined;
currentIndex = props.match.params[0] || undefined;
currentLpId && await props.updateViewData(currentViewId || '', currentIndex && currentIndex.split("/") || [] );
}
});
}
return (
<ConfigurationApplication />
);
});
const App = withRouter((props: RouteComponentProps) => (
<Switch>
<Route path={`${props.match.path}/:mountId/:lpId/:viewId/*`} component={ConfigurationApplicationRouteAdapter} />
<Route path={`${props.match.path}/:mountId/:lpId/:viewId`} component={ConfigurationApplicationRouteAdapter} />
<Route path={`${props.match.path}/:mountId/:lpId`} component={ConfigurationApplicationRouteAdapter} />
<Route path={`${props.match.path}/:mountId`} component={ConfigurationApplicationRouteAdapter} />
<Route path={`${props.match.path}`} component={ConfigurationApplicationRouteAdapter} />
<Redirect to={`${props.match.path}`} />
</Switch>
));
export function register() {
applicationManager.registerApplication({
name: "configuration",
icon: faAdjust,
rootComponent: App,
rootActionHandler: configurationAppRootHandler,
menuEntry: "Configuration"
});
}
|