Skip to content

Commit 2e6c0c8

Browse files
Finish typescript updates
Signed-off-by: Emily Guo <[email protected]>
1 parent 2ef59cc commit 2e6c0c8

File tree

3 files changed

+12
-30
lines changed

3 files changed

+12
-30
lines changed

public/application.tsx

+7-15
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom';
3+
import { HashRouter as Router } from 'react-router-dom';
4+
import { AppMountParameters, CoreStart } from '../../../src/core/public';
35
import { QueryInsightsDashboardsApp } from './components/app';
4-
import { HashRouter as Router, Route } from 'react-router-dom';
56

6-
export const renderApp = (
7-
coreStart,
8-
{ navigation },
9-
{ appBasePath, element }
10-
) => {
11-
coreStart.chrome.setBreadcrumbs([{text: 'Query insights'}]);
7+
export const renderApp = ({ chrome }: CoreStart, { element }: AppMountParameters) => {
8+
chrome.setBreadcrumbs([{ text: 'Query insights' }]);
129
ReactDOM.render(
1310
<Router>
14-
<QueryInsightsDashboardsApp
15-
basename={appBasePath}
16-
notifications={coreStart.notifications}
17-
http={coreStart.http}
18-
navigation={navigation}
19-
/>
20-
</Router>
21-
, element
11+
<QueryInsightsDashboardsApp />
12+
</Router>,
13+
element
2214
);
2315

2416
return () => ReactDOM.unmountComponentAtNode(element);

public/components/app.tsx

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
import React from 'react';
22
import { Route } from 'react-router-dom';
3-
import TopNQueries from '../pages/TopNQueries/TopNQueries'
3+
import TopNQueries from '../pages/TopNQueries/TopNQueries';
44

55
export const QueryInsightsDashboardsApp = () => {
6-
return (
7-
<Route
8-
render={() => (
9-
<TopNQueries/>
10-
)}
11-
/>
12-
);
6+
return <Route render={() => <TopNQueries />} />;
137
};

public/plugin.ts

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import { i18n } from '@osd/i18n';
22
import { AppMountParameters, CoreSetup, CoreStart, Plugin } from '../../../src/core/public';
3-
import {
4-
QueryInsightsDashboardsPluginSetup,
5-
QueryInsightsDashboardsPluginStart,
6-
AppPluginStartDependencies,
7-
} from './types';
3+
import { QueryInsightsDashboardsPluginSetup, QueryInsightsDashboardsPluginStart } from './types';
84
import { PLUGIN_NAME } from '../common';
95

106
export class QueryInsightsDashboardsPlugin
@@ -25,9 +21,9 @@ export class QueryInsightsDashboardsPlugin
2521
// Load application bundle
2622
const { renderApp } = await import('./application');
2723
// Get start services as specified in opensearch_dashboards.json
28-
const [coreStart, depsStart] = await core.getStartServices();
24+
const [coreStart] = await core.getStartServices();
2925
// Render the application
30-
return renderApp(coreStart, depsStart as AppPluginStartDependencies, params);
26+
return renderApp(coreStart, params);
3127
},
3228
});
3329

0 commit comments

Comments
 (0)