-
Notifications
You must be signed in to change notification settings - Fork 8.2k
/
context.tsx
74 lines (62 loc) · 2.54 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
/*
* 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", the "GNU Affero General Public License v3.0 only", 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", the "GNU Affero General Public
* License v3.0 only", or the "Server Side Public License, v 1".
*/
import React, { FC, PropsWithChildren } 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<{}> }>(
type: React.ComponentType<Props>
): FC<Omit<Props, 'kibana'>> => {
const EnhancedType: FC<Omit<Props, 'kibana'>> = (props: Omit<Props, 'kibana'>) => {
const kibana = useKibana();
return React.createElement(type, { ...props, kibana } as Props);
};
return EnhancedType;
};
export const createKibanaReactContext = <Services extends KibanaServices>(
services: Services
): KibanaReactContext<Services> => {
const value: KibanaReactContextValue<Services> = {
services,
overlays: createReactOverlays(services),
notifications: createNotifications(services),
};
const Provider: FC<PropsWithChildren<{ services?: Services }>> = ({
services: newServices = {},
children,
}) => {
const oldValue = useKibana();
const { value: newValue } = useMemo(
() => createKibanaReactContext({ ...services, ...oldValue.services, ...newServices }),
[services, oldValue, newServices]
);
const newProvider = createElement(context.Provider, {
value: newValue,
children,
});
return newProvider;
};
return {
value,
Provider,
Consumer: context.Consumer as unknown as React.Consumer<KibanaReactContextValue<Services>>,
};
};
export const { Provider: KibanaContextProvider } = createKibanaReactContext({});