-
Notifications
You must be signed in to change notification settings - Fork 840
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[EuiFlyoutResizable] Add resizable flyout (#7439)
- Loading branch information
Showing
9 changed files
with
540 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Added a new `EuiFlyoutResizable` component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import React, { useState } from 'react'; | ||
|
||
import { | ||
EuiFlyoutResizable, | ||
EuiFlyoutProps, | ||
EuiFlyoutBody, | ||
EuiFlyoutHeader, | ||
EuiButton, | ||
EuiButtonGroup, | ||
EuiText, | ||
EuiTitle, | ||
EuiSpacer, | ||
} from '../../../../src/components'; | ||
|
||
import { useGeneratedHtmlId } from '../../../../src/services'; | ||
|
||
export default () => { | ||
const [isFlyoutVisible, setIsFlyoutVisible] = useState(false); | ||
const [flyoutType, setFlyoutType] = useState('overlay'); | ||
const [flyoutSide, setFlyoutSide] = useState('right'); | ||
|
||
const flyoutTitleId = useGeneratedHtmlId({ | ||
prefix: 'simpleFlyoutTitle', | ||
}); | ||
|
||
let flyout; | ||
|
||
if (isFlyoutVisible) { | ||
flyout = ( | ||
<EuiFlyoutResizable | ||
type={flyoutType as EuiFlyoutProps['type']} | ||
side={flyoutSide as EuiFlyoutProps['side']} | ||
onClose={() => setIsFlyoutVisible(false)} | ||
aria-labelledby={flyoutTitleId} | ||
> | ||
<EuiFlyoutHeader hasBorder> | ||
<EuiTitle size="m"> | ||
<h2 id={flyoutTitleId}>A resizable flyout</h2> | ||
</EuiTitle> | ||
</EuiFlyoutHeader> | ||
<EuiFlyoutBody> | ||
<EuiText> | ||
<p> | ||
This flyout is resizable by both mouse drag and arrow keys (when | ||
the resizable edge is focused). Both push and overlay flyouts can | ||
be resizable, on either side. | ||
</p> | ||
</EuiText> | ||
<EuiSpacer /> | ||
<EuiTitle size="xxs"> | ||
<h3>Flyout type</h3> | ||
</EuiTitle> | ||
<EuiSpacer size="s" /> | ||
<EuiButtonGroup | ||
legend="Flyout type" | ||
options={[ | ||
{ id: 'overlay', label: 'Overlay' }, | ||
{ id: 'push', label: 'Push' }, | ||
]} | ||
idSelected={flyoutType} | ||
onChange={(id) => setFlyoutType(id)} | ||
/> | ||
<EuiSpacer /> | ||
<EuiTitle size="xxs"> | ||
<h3>Flyout side</h3> | ||
</EuiTitle> | ||
<EuiButtonGroup | ||
legend="Flyout side" | ||
options={[ | ||
{ id: 'right', label: 'Right' }, | ||
{ id: 'left', label: 'Left' }, | ||
]} | ||
idSelected={flyoutSide} | ||
onChange={(id) => setFlyoutSide(id)} | ||
/> | ||
</EuiFlyoutBody> | ||
</EuiFlyoutResizable> | ||
); | ||
} | ||
|
||
return ( | ||
<> | ||
<EuiButton onClick={() => setIsFlyoutVisible(true)}> | ||
Show resizable flyout | ||
</EuiButton> | ||
{flyout} | ||
</> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.