-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
context.tsx
76 lines (65 loc) · 2.57 KB
/
context.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
66
67
68
69
70
71
72
73
74
75
76
/*
* 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 * as React from 'react';
import { KibanaReactContext, KibanaReactContextValue, KibanaServices } from './types';
import { createReactOverlays } from '../overlays';
import { createNotifications } from '../notifications';
const { useMemo, useContext, createElement, createContext } = React;
const defaultContextValue = {
services: {},
overlays: createReactOverlays({}),
notifications: createNotifications({}),
};
export const context = createContext<KibanaReactContextValue<KibanaServices>>(defaultContextValue);
export const useKibana = <Extra extends object = {}>(): KibanaReactContextValue<
KibanaServices & Extra
> =>
useContext(
(context as unknown) as React.Context<KibanaReactContextValue<KibanaServices & Extra>>
);
export const withKibana = <Props extends { kibana: KibanaReactContextValue<any> }>(
type: React.ComponentType<Props>
): React.FC<Omit<Props, 'kibana'>> => {
const EnhancedType: React.FC<Omit<Props, 'kibana'>> = (props: Omit<Props, 'kibana'>) => {
const kibana = useKibana();
return React.createElement(type, { ...props, kibana } as Props);
};
return EnhancedType;
};
export const UseKibana: React.FC<{
children: (kibana: KibanaReactContextValue<any>) => React.ReactNode;
}> = ({ children }) => <>{children(useKibana())}</>;
export const createKibanaReactContext = <Services extends KibanaServices>(
services: Services
): KibanaReactContext<Services> => {
const value: KibanaReactContextValue<Services> = {
services,
overlays: createReactOverlays(services),
notifications: createNotifications(services),
};
const Provider: React.FC<{ services?: Services }> = ({
services: newServices = {},
children,
}) => {
const oldValue = useKibana();
const { value: newValue } = useMemo(
() => createKibanaReactContext({ ...services, ...oldValue.services, ...newServices }),
[services, oldValue, newServices]
);
return createElement(context.Provider as React.ComponentType<any>, {
value: newValue,
children,
});
};
return {
value,
Provider,
Consumer: (context.Consumer as unknown) as React.Consumer<KibanaReactContextValue<Services>>,
};
};
export const { Provider: KibanaContextProvider } = createKibanaReactContext({});