Skip to content

Commit

Permalink
EuiInputPopover docs (elastic#2269)
Browse files Browse the repository at this point in the history
* first pass

* snippet

* comments

* more spacing before window edge

* Update src-docs/src/views/popover/popover_example.js

Co-Authored-By: Caroline Horn <[email protected]>

* Update src-docs/src/views/popover/popover_example.js

Co-Authored-By: Caroline Horn <[email protected]>

* CL

* Update CHANGELOG.md

Co-Authored-By: Caroline Horn <[email protected]>
  • Loading branch information
thompsongl and cchaos committed Sep 10, 2019
1 parent 48424c9 commit 4778dfd
Show file tree
Hide file tree
Showing 4 changed files with 111 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## [`master`](https://github.com/elastic/eui/tree/master)

- Added href prop to `EuiTab` and converted to TypeScript ([#2275](https://github.com/elastic/eui/pull/2275))
- Created `EuiInputPopover` component (formally) ([#2269](https://github.com/elastic/eui/pull/2269))

**Bug fixes**

Expand Down
60 changes: 60 additions & 0 deletions src-docs/src/views/popover/input_popover.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import React, { useState } from 'react';

import {
EuiInputPopover,
EuiFieldText,
EuiSpacer,
} from '../../../../src/components';

export default () => {
const [inputWidth, setInputWidth] = useState(200);
const [isPopoverOpen, setIsPopoverOpen] = useState(false);
const [isPopoverOpenTwo, setIsPopoverOpenTwo] = useState(false);
const toggleIsPopoverOpen = (shouldBeOpen = !isPopoverOpen) => {
setIsPopoverOpen(shouldBeOpen);
};
const toggleIsPopoverOpenTwo = (shouldBeOpen = !isPopoverOpenTwo) => {
setIsPopoverOpenTwo(shouldBeOpen);
};

const input = <EuiFieldText onFocus={() => toggleIsPopoverOpen()} />;

const inputTwo = (
<EuiFieldText
onFocus={() => {
setInputWidth(400);
toggleIsPopoverOpenTwo();
}}
style={{ width: inputWidth }}
/>
);

return (
<React.Fragment>
<EuiInputPopover
id="popover"
input={input}
isOpen={isPopoverOpen}
closePopover={() => {
toggleIsPopoverOpen(false);
}}>
Popover content
</EuiInputPopover>

<EuiSpacer />

<EuiInputPopover
id="popover"
input={inputTwo}
isOpen={isPopoverOpenTwo}
closePopover={() => {
toggleIsPopoverOpenTwo(false);
setInputWidth(200);
}}>
Popover will adjust in size as the input does
</EuiInputPopover>

<EuiSpacer size="xxl" />
</React.Fragment>
);
};
49 changes: 49 additions & 0 deletions src-docs/src/views/popover/popover_example.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { GuideSectionTypes } from '../../components';

import {
EuiCode,
EuiInputPopover,
EuiPopover,
EuiPopoverTitle,
EuiPopoverFooter,
Expand Down Expand Up @@ -51,6 +52,10 @@ import PopoverBlock from './popover_block';
const popoverBlockSource = require('!!raw-loader!./popover_block');
const popoverBlockHtml = renderToHtml(PopoverBlock);

import InputPopover from './input_popover';
const inputPopoverSource = require('!!raw-loader!./input_popover');
const inputPopoverHtml = renderToHtml(PopoverBlock);

const popOverSnippet = `<EuiPopover
button={button}
isOpen={this.state.isPopoverOpen}
Expand Down Expand Up @@ -126,6 +131,13 @@ const popoverBlockSnippet = `<EuiPopover
<!-- Popover anchor is display block -->
</EuiPopover>`;

const inputPopoverSnippet = `<EuiInputPopover
input={input}
isOpen={this.state.isPopoverOpen}
closePopover={this.closePopover}>
<!-- Popover content attached to input -->
</EuiInputPopover>`;

export const PopoverExample = {
title: 'Popover',
sections: [
Expand Down Expand Up @@ -386,5 +398,42 @@ export const PopoverExample = {
snippet: popoverBlockSnippet,
demo: <PopoverBlock />,
},
{
title: 'Popover attached to input element',
source: [
{
type: GuideSectionTypes.JS,
code: inputPopoverSource,
},
{
type: GuideSectionTypes.HTML,
code: inputPopoverHtml,
},
],
text: (
<div>
<p>
<EuiCode>EuiInputPopover</EuiCode> is a specialized popover
component intended to be used with form elements. Stylistically, the
popover panel is
{'"attached"'} to the input. Functionally, consumers have control
over what events open and close the popover, and it can allow for
natural tab order.
</p>
<p>
Although some assumptions are made about keyboard behavior,
consumers should provide specific key event handlers depending on
the use case. For instance, a <EuiCode>type=text</EuiCode> input
could use the down key to trigger popover opening, but this
interaction would not be appropriate for{' '}
<EuiCode>type=number</EuiCode> inputs as they natively bind to the
down key.
</p>
</div>
),
props: { EuiInputPopover },
snippet: inputPopoverSnippet,
demo: <InputPopover />,
},
],
};
1 change: 1 addition & 0 deletions src/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ export { EuiPagination, EuiPaginationButton } from './pagination';
export { EuiPanel } from './panel';

export {
EuiInputPopover,
EuiPopover,
EuiPopoverTitle,
EuiPopoverFooter,
Expand Down

0 comments on commit 4778dfd

Please sign in to comment.