forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rendering_service.tsx
65 lines (59 loc) · 2 KB
/
rendering_service.tsx
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
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import React from 'react';
import ReactDOM from 'react-dom';
import { I18nProvider } from '@kbn/i18n/react';
import { pairwise, startWith } from 'rxjs/operators';
import { InternalChromeStart } from '../chrome';
import { InternalApplicationStart } from '../application';
import { OverlayStart } from '../overlays';
import { AppWrapper } from './app_containers';
interface StartDeps {
application: InternalApplicationStart;
chrome: InternalChromeStart;
overlays: OverlayStart;
targetDomElement: HTMLDivElement;
}
/**
* Renders all Core UI in a single React tree.
*
* @internalRemarks Currently this only renders Chrome UI. Notifications and
* Overlays UI should be moved here as well.
*
* @internal
*/
export class RenderingService {
start({ application, chrome, overlays, targetDomElement }: StartDeps) {
const chromeHeader = chrome.getHeaderComponent();
const appComponent = application.getComponent();
const bannerComponent = overlays.banners.getComponent();
const body = document.querySelector('body')!;
chrome
.getBodyClasses$()
.pipe(startWith<string[]>([]), pairwise())
.subscribe(([previousClasses, newClasses]) => {
body.classList.remove(...previousClasses);
body.classList.add(...newClasses);
});
ReactDOM.render(
<I18nProvider>
<>
{chromeHeader}
<div id="globalBannerList">{bannerComponent}</div>
<AppWrapper
chromeVisible$={chrome.getIsVisible$()}
classes$={chrome.getApplicationClasses$()}
>
{appComponent}
</AppWrapper>
</>
</I18nProvider>,
targetDomElement
);
}
}