-
Notifications
You must be signed in to change notification settings - Fork 842
/
Copy pathinput_popover.tsx
132 lines (121 loc) Β· 3.63 KB
/
input_popover.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
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
/*
* 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, {
FunctionComponent,
HTMLAttributes,
useState,
useEffect,
useCallback,
} from 'react';
import classnames from 'classnames';
import tabbable from 'tabbable';
import { CommonProps } from '../common';
import { EuiFocusTrap } from '../focus_trap';
import { EuiPopover, EuiPopoverProps } from './popover';
import { EuiResizeObserver } from '../observer/resize_observer';
import { cascadingMenuKeys } from '../../services';
export interface _EuiInputPopoverProps
extends Omit<EuiPopoverProps, 'button' | 'buttonRef'> {
disableFocusTrap?: boolean;
fullWidth?: boolean;
input: EuiPopoverProps['button'];
inputRef?: EuiPopoverProps['buttonRef'];
onPanelResize?: (width?: number) => void;
}
export type EuiInputPopoverProps = CommonProps &
HTMLAttributes<HTMLDivElement> &
_EuiInputPopoverProps;
export const EuiInputPopover: FunctionComponent<EuiInputPopoverProps> = ({
children,
className,
disableFocusTrap = false,
input,
fullWidth = false,
onPanelResize,
...props
}) => {
const [inputEl, setInputEl] = useState<HTMLElement | null>(null);
const [inputElWidth, setInputElWidth] = useState<number>();
const [panelEl, setPanelEl] = useState<HTMLElement | null>(null);
const inputRef = (node: HTMLElement | null) => setInputEl(node);
const panelRef = (node: HTMLElement | null) => setPanelEl(node);
const setPanelWidth = useCallback(
(width?: number) => {
if (panelEl && (!!inputElWidth || !!width)) {
const newWidth = !!width ? width : inputElWidth;
panelEl.style.width = `${newWidth}px`;
if (onPanelResize) {
onPanelResize(newWidth);
}
}
},
[panelEl, inputElWidth, onPanelResize]
);
const onResize = useCallback(() => {
if (inputEl) {
const width = inputEl.getBoundingClientRect().width;
setInputElWidth(width);
setPanelWidth(width);
}
}, [inputEl, setPanelWidth]);
useEffect(() => {
onResize();
}, [onResize]);
useEffect(() => {
setPanelWidth();
}, [setPanelWidth]);
const onKeyDown = (event: React.KeyboardEvent) => {
if (panelEl && event.key === cascadingMenuKeys.TAB) {
const tabbableItems = tabbable(panelEl).filter((el: HTMLElement) => {
return (
Array.from(el.attributes)
.map((el) => el.name)
.indexOf('data-focus-guard') < 0
);
});
if (
disableFocusTrap ||
(tabbableItems.length &&
tabbableItems[tabbableItems.length - 1] === document.activeElement)
) {
props.closePopover();
}
}
};
const classes = classnames(
'euiInputPopover',
{
'euiInputPopover--fullWidth': fullWidth,
},
className
);
return (
<EuiPopover
ownFocus={false}
button={
<EuiResizeObserver onResize={onResize}>
{(resizeRef) => <div ref={resizeRef}>{input}</div>}
</EuiResizeObserver>
}
buttonRef={inputRef}
panelRef={panelRef}
className={classes}
{...props}
>
<EuiFocusTrap clickOutsideDisables={true} disabled={disableFocusTrap}>
<div onKeyDown={onKeyDown}>{children}</div>
</EuiFocusTrap>
</EuiPopover>
);
};
EuiInputPopover.defaultProps = {
anchorPosition: 'downLeft',
attachToAnchor: true,
display: 'block',
panelPaddingSize: 's',
};