forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathsidecar_service.tsx
More file actions
226 lines (204 loc) · 6.7 KB
/
Copy pathsidecar_service.tsx
File metadata and controls
226 lines (204 loc) · 6.7 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
/* eslint-disable max-classes-per-file */
import React from 'react';
import { createRoot } from 'react-dom/client';
import type { Root } from 'react-dom/client';
import { BehaviorSubject, Observable, ReplaySubject, Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { I18nStart } from '../../i18n';
import { MountPoint } from '../../types';
import { OverlayRef } from '../types';
import { Sidecar } from './components/sidecar';
import { calculateNewPaddingSize } from './helper';
/**
* A SidecarRef is a reference to an opened sidecar panel. It offers methods to
* close the sidecar panel again. If you open a sidecar panel you should make
* sure you call `close()` when it should be closed.
* Since a sidecar could also be closed by a user or from another sidecar being
* opened, you must bind to the `onClose` Promise on the Sidecar instance.
* The Promise will resolve whenever the sidecar was closed at which point you
* should discard the SidecarRef.
*
* @public
*/
class SidecarRef implements OverlayRef {
/**
* An Promise that will resolve once this sidecar is closed.
*
* Sidecars can close from user interaction, calling `close()` on the sidecar
* reference or another call to `open()` replacing your sidecar.
*/
public readonly onClose: Promise<void>;
private closeSubject = new Subject<void>();
constructor() {
this.onClose = this.closeSubject.toPromise();
}
/**
* Closes the referenced sidecar if it's still open which in turn will
* resolve the `onClose` Promise. If the sidecar had already been
* closed this method does nothing.
*/
public close(): Promise<void> {
if (!this.closeSubject.closed) {
this.closeSubject.next();
this.closeSubject.complete();
}
return this.onClose;
}
}
/**
* APIs to open and manage sidecar.
*
* @public
*/
export interface OverlaySidecarStart {
/**
* Opens a sidecar panel with the given mount point inside. You can use
* `close()` on the returned SidecarRef to close the sidecar.
*
* @param mount {@link MountPoint} - Mounts the children inside a sidecar panel
* @param options {@link OverlaySidecarOpenOptions} - options for the sidecar
* @return {@link SidecarRef} A reference to the opened sidecar panel.
*/
open(mount: MountPoint, options: OverlaySidecarOpenOptions): SidecarRef;
/**
* Override the default support config
* @param config The updated support config
*/
setSidecarConfig(config: Partial<ISidecarConfig>): void;
/**
* Get an observable of the current locked state of the nav drawer.
*/
getSidecarConfig$(): Observable<ISidecarConfig | undefined>;
/**
* Hide side car.
*/
hide: () => void;
/**
* Show side car.
*/
show: () => void;
}
/**
* @public
*/
export interface OverlaySidecarOpenOptions {
className?: string;
classNameButton?: string;
'data-test-subj'?: string;
config: ISidecarConfig;
}
interface StartDeps {
i18n: I18nStart;
targetDomElement: Element | null;
}
export enum SIDECAR_DOCKED_MODE {
LEFT = 'left',
RIGHT = 'right',
TAKEOVER = 'takeover',
}
export interface ISidecarConfig {
// takeover mode will docked to bottom
dockedMode: SIDECAR_DOCKED_MODE;
paddingSize: number;
isHidden?: boolean;
}
/** @internal */
export class SidecarService {
private activeSidecar: SidecarRef | null = null;
private targetDomElement: Element | null = null;
private readonly stop$ = new ReplaySubject(1);
private sidecarRoot?: Root;
public start({ i18n, targetDomElement }: StartDeps): OverlaySidecarStart {
this.targetDomElement = targetDomElement;
const sidecarConfig$ = new BehaviorSubject<ISidecarConfig | undefined>(undefined);
const getSidecarConfig$ = () => sidecarConfig$.pipe(takeUntil(this.stop$));
const setSidecarConfig = (config: Partial<ISidecarConfig>) => {
let newSidecarConfig: ISidecarConfig | undefined;
if (sidecarConfig$.value) {
// Handle exsiting config
newSidecarConfig = {
...sidecarConfig$.value,
...config,
};
} else if (config.dockedMode && config.paddingSize) {
// Handle inital config
newSidecarConfig = {
dockedMode: config.dockedMode,
paddingSize: config.paddingSize,
isHidden: config.isHidden,
};
}
if (newSidecarConfig) {
sidecarConfig$.next({
...newSidecarConfig,
paddingSize: calculateNewPaddingSize(
newSidecarConfig.dockedMode,
newSidecarConfig.paddingSize
),
});
}
};
return {
getSidecarConfig$,
setSidecarConfig,
open: (mount: MountPoint, options: OverlaySidecarOpenOptions): SidecarRef => {
// If there is an active flyout session close it before opening a new one.
if (this.activeSidecar) {
setSidecarConfig({ paddingSize: 0 });
this.activeSidecar.close();
this.cleanupDom(sidecarConfig$);
}
const sidecar = new SidecarRef();
setSidecarConfig(options.config);
// If a sidecar gets closed through it's SidecarRef, remove it from the dom
sidecar.onClose.then(() => {
if (this.activeSidecar === sidecar) {
this.cleanupDom(sidecarConfig$);
}
});
this.activeSidecar = sidecar;
// Only create root and render if targetDomElement exists
if (this.targetDomElement) {
this.sidecarRoot = createRoot(this.targetDomElement);
this.sidecarRoot.render(
<Sidecar
sidecarConfig$={sidecarConfig$}
setSidecarConfig={setSidecarConfig}
options={options}
i18n={i18n}
mount={mount}
/>
);
}
return sidecar;
},
hide: () => {
setSidecarConfig({ isHidden: true });
},
show: () => {
setSidecarConfig({ isHidden: false });
},
};
}
/**
* When using React.render to re-render content into a target DOM element, it replaces
* the content without invoking unmountComponentAtNode on any components within the target
* or their children. To avoid potential subtle bugs in child components that rely on
* unmounting for cleanup behavior, this function ensures proper cleanup of the DOM.
*/
private cleanupDom(sidecarConfig$?: BehaviorSubject<ISidecarConfig | undefined>): void {
if (this.sidecarRoot) {
this.sidecarRoot.unmount();
this.sidecarRoot = undefined;
}
this.activeSidecar = null;
// Reset the sidecar configuration to remove any padding from the main window
if (sidecarConfig$) {
sidecarConfig$.next(undefined);
}
}
}