Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Discover] Create field_button and add popovers to sidebar #73226

Merged
merged 53 commits into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from 52 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
19747a5
cleanup of fielditem with accordions
andreadelrio Jul 7, 2020
19ccf91
clean sass and update tests
andreadelrio Jul 8, 2020
447c72d
bring back useShortDots, accidentally deleted
andreadelrio Jul 8, 2020
0350653
first pass on making the switch to popovers
andreadelrio Jul 9, 2020
21d9901
popover title
andreadelrio Jul 13, 2020
2d489fc
fix conflicts
andreadelrio Jul 16, 2020
550869f
Merge remote-tracking branch 'upstream/master' into discover-popovers
andreadelrio Jul 21, 2020
4ff26c8
field button in progress
andreadelrio Jul 23, 2020
eec4031
moving styles around
andreadelrio Jul 23, 2020
7a6bfad
will add size to field_button
andreadelrio Jul 23, 2020
c2d8ea2
added size to field_button
andreadelrio Jul 23, 2020
e72dfb1
some progress on tests
andreadelrio Jul 24, 2020
b02a777
more tests
andreadelrio Jul 25, 2020
bec896f
cleanup
andreadelrio Jul 27, 2020
81a70ea
fixing some tests
andreadelrio Jul 27, 2020
388ff29
add EuiKeyboardAccessible to Discover's sidebar
andreadelrio Jul 29, 2020
9306d83
Merge branch 'master' into discover-popovers
elasticmachine Jul 30, 2020
ddd1739
moving interactive content out of interactive content
Jul 31, 2020
ba9ba6a
Merge branch 'master' into discover-popovers
elasticmachine Aug 3, 2020
583e22d
Fixing lens popover focus
Aug 3, 2020
a358c04
adding allowing both icon and action
Aug 3, 2020
aeefaa2
keep focus ring open on popover open
Aug 3, 2020
f960dc8
fix overlap of infoIcon
andreadelrio Aug 4, 2020
49dffc6
Merge pull request #3 from andreadelrio/button-append
myasonik Aug 4, 2020
2dae400
Merge pull request #2 from myasonik/pr/73226
andreadelrio Aug 4, 2020
f779e56
snaps and delete extra css line
andreadelrio Aug 4, 2020
90504df
snaps and delete extra css line
andreadelrio Aug 4, 2020
1c79015
pr feedback
andreadelrio Aug 5, 2020
332283f
adjust alignment
andreadelrio Aug 5, 2020
fec2bd5
Merge branch 'discover-popovers' of https://github.com/andreadelrio/k…
Aug 5, 2020
08c66f9
showing buttons on discover sidebar when tabbing
andreadelrio Aug 5, 2020
6a06de0
Moving `kbnFieldButton__infoIcon` into `<button>`
Aug 5, 2020
19f739b
improve popover in Discover sidebar
andreadelrio Aug 5, 2020
f09432e
Merge branch 'master' into discover-popovers
elasticmachine Aug 6, 2020
3cbd327
Merge pull request #3 from cchaos/andreadelrio-discover-popovers
andreadelrio Aug 6, 2020
eafc748
fix 1 test and update snaps
andreadelrio Aug 6, 2020
4c72d5a
fix typo
andreadelrio Aug 6, 2020
243bcff
cleanup
andreadelrio Aug 6, 2020
68251ef
fix field_button test
andreadelrio Aug 10, 2020
9ce49a6
fix discover_sidebar test
andreadelrio Aug 10, 2020
af06e49
fix Lens test
flash1293 Aug 10, 2020
f68adc9
Merge branch 'master' into discover-popovers
elasticmachine Aug 10, 2020
299ea36
use button icons for add/remove in discover sidebar
andreadelrio Aug 11, 2020
c4350f9
Merge branch 'discover-popovers' of https://github.com/andreadelrio/k…
andreadelrio Aug 11, 2020
c390b71
pass type check
andreadelrio Aug 11, 2020
eda738e
Merge branch 'master' into discover-popovers
elasticmachine Aug 13, 2020
eee6c07
fix aria-labels and add tooltips
andreadelrio Aug 14, 2020
6aa13ee
Merge remote-tracking branch 'upstream/master' into discover-popovers
andreadelrio Aug 14, 2020
bc516d4
show add icon for active items in Discover
andreadelrio Aug 16, 2020
cb2a892
Merge branch 'master' into discover-popovers
elasticmachine Aug 16, 2020
e1bbcdb
show DiscoverFieldDetails only when infoIsOpen
andreadelrio Aug 17, 2020
26c46af
Merge branch 'discover-popovers' of https://github.com/andreadelrio/k…
andreadelrio Aug 17, 2020
c2de18d
remove extra markup
andreadelrio Aug 18, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.dscSidebarItem__fieldPopoverPanel {
min-width: 260px;
max-width: 300px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,4 @@ describe('discover sidebar field', function () {
findTestSubject(comp, 'fieldToggle-bytes').simulate('click');
expect(props.onRemoveField).toHaveBeenCalledWith('bytes');
});
it('should trigger onShowDetails', function () {
const { comp, props } = getComponent();
findTestSubject(comp, 'field-bytes-showDetails').simulate('click');
expect(props.onShowDetails).toHaveBeenCalledWith(true, props.field);
});
andreadelrio marked this conversation as resolved.
Show resolved Hide resolved
});
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@
* specific language governing permissions and limitations
* under the License.
*/
import React from 'react';
import { EuiButton } from '@elastic/eui';
import React, { useState } from 'react';
import { EuiPopover, EuiPopoverTitle, EuiButtonIcon, EuiToolTip } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import { DiscoverFieldDetails } from './discover_field_details';
import { FieldIcon } from '../../../../../kibana_react/public';
import { FieldIcon, FieldButton } from '../../../../../kibana_react/public';
import { FieldDetails } from './types';
import { IndexPatternField, IndexPattern } from '../../../../../data/public';
import { shortenDottedString } from '../../helpers';
import { getFieldTypeName } from './lib/get_field_type_name';
import './discover_field.scss';

export interface DiscoverFieldProps {
/**
Expand All @@ -48,14 +49,6 @@ export interface DiscoverFieldProps {
* @param fieldName
*/
onRemoveField: (fieldName: string) => void;
/**
* Callback to hide/show details, buckets of the field
*/
onShowDetails: (show: boolean, field: IndexPatternField) => void;
/**
* Determines, whether details of the field are displayed
*/
showDetails: boolean;
/**
* Retrieve details data for the field
*/
Expand All @@ -76,22 +69,14 @@ export function DiscoverField({
onAddField,
onRemoveField,
onAddFilter,
onShowDetails,
showDetails,
getDetails,
selected,
useShortDots,
}: DiscoverFieldProps) {
const addLabel = i18n.translate('discover.fieldChooser.discoverField.addButtonLabel', {
defaultMessage: 'Add',
});
const addLabelAria = i18n.translate('discover.fieldChooser.discoverField.addButtonAriaLabel', {
defaultMessage: 'Add {field} to table',
values: { field: field.name },
});
const removeLabel = i18n.translate('discover.fieldChooser.discoverField.removeButtonLabel', {
defaultMessage: 'Remove',
});
const removeLabelAria = i18n.translate(
'discover.fieldChooser.discoverField.removeButtonAriaLabel',
{
Expand All @@ -100,6 +85,8 @@ export function DiscoverField({
}
);

const [infoIsOpen, setOpen] = useState(false);
andreadelrio marked this conversation as resolved.
Show resolved Hide resolved

const toggleDisplay = (f: IndexPatternField) => {
if (selected) {
onRemoveField(f.name);
Expand All @@ -108,78 +95,116 @@ export function DiscoverField({
}
};

function togglePopover() {
setOpen(!infoIsOpen);
}

function wrapOnDot(str?: string) {
// u200B is a non-width white-space character, which allows
// the browser to efficiently word-wrap right after the dot
// without us having to draw a lot of extra DOM elements, etc
return str ? str.replace(/\./g, '.\u200B') : '';
}

const dscFieldIcon = (
<FieldIcon type={field.type} label={getFieldTypeName(field.type)} scripted={field.scripted} />
);

const fieldName = (
<span
data-test-subj={`field-${field.name}`}
title={field.name}
className="dscSidebarField__name"
>
{useShortDots ? wrapOnDot(shortenDottedString(field.name)) : wrapOnDot(field.displayName)}
</span>
);

let actionButton;
if (field.name !== '_source' && !selected) {
kertal marked this conversation as resolved.
Show resolved Hide resolved
actionButton = (
<EuiToolTip
delay="long"
content={i18n.translate('discover.fieldChooser.discoverField.addFieldTooltip', {
defaultMessage: 'Add field as column',
})}
>
<EuiButtonIcon
iconType="plusInCircleFilled"
className="dscSidebarItem__action"
onClick={(ev: React.MouseEvent<HTMLButtonElement>) => {
ev.preventDefault();
ev.stopPropagation();
toggleDisplay(field);
}}
data-test-subj={`fieldToggle-${field.name}`}
aria-label={addLabelAria}
/>
</EuiToolTip>
);
} else if (field.name !== '_source' && selected) {
actionButton = (
<EuiToolTip
delay="long"
content={i18n.translate('discover.fieldChooser.discoverField.removeFieldTooltip', {
defaultMessage: 'Remove field from table',
})}
>
<EuiButtonIcon
color="danger"
iconType="cross"
className="dscSidebarItem__action"
onClick={(ev: React.MouseEvent<HTMLButtonElement>) => {
ev.preventDefault();
ev.stopPropagation();
toggleDisplay(field);
}}
data-test-subj={`fieldToggle-${field.name}`}
aria-label={removeLabelAria}
/>
</EuiToolTip>
);
}

return (
<>
andreadelrio marked this conversation as resolved.
Show resolved Hide resolved
<div
className={`dscSidebarField dscSidebarItem ${showDetails ? 'dscSidebarItem--active' : ''}`}
tabIndex={0}
onClick={() => onShowDetails(!showDetails, field)}
onKeyPress={() => onShowDetails(!showDetails, field)}
data-test-subj={`field-${field.name}-showDetails`}
<EuiPopover
ownFocus
display="block"
button={
<FieldButton
size="s"
className="dscSidebarItem"
isActive={infoIsOpen}
onClick={() => {
togglePopover();
}}
buttonProps={{ 'data-test-subj': `field-${field.name}-showDetails` }}
fieldIcon={dscFieldIcon}
fieldAction={actionButton}
fieldName={fieldName}
/>
}
isOpen={infoIsOpen}
closePopover={() => setOpen(false)}
anchorPosition="rightUp"
panelClassName="dscSidebarItem__fieldPopoverPanel"
>
<span className="dscSidebarField__fieldIcon">
<FieldIcon
type={field.type}
label={getFieldTypeName(field.type)}
scripted={field.scripted}
<EuiPopoverTitle>
{' '}
{i18n.translate('discover.fieldChooser.discoverField.fieldTopValuesLabel', {
defaultMessage: 'Top 5 values',
})}
</EuiPopoverTitle>
{infoIsOpen && (
<DiscoverFieldDetails
indexPattern={indexPattern}
field={field}
details={getDetails(field)}
onAddFilter={onAddFilter}
/>
</span>
<span
data-test-subj={`field-${field.name}`}
title={field.name}
className="dscSidebarField__name"
>
{useShortDots ? wrapOnDot(shortenDottedString(field.name)) : wrapOnDot(field.displayName)}
</span>
<span>
{field.name !== '_source' && !selected && (
<EuiButton
fill
size="s"
className="dscSidebarItem__action"
onClick={(ev: React.MouseEvent<HTMLButtonElement>) => {
ev.preventDefault();
ev.stopPropagation();
toggleDisplay(field);
}}
data-test-subj={`fieldToggle-${field.name}`}
arial-label={addLabelAria}
>
{addLabel}
</EuiButton>
)}
{field.name !== '_source' && selected && (
<EuiButton
color="danger"
className="dscSidebarItem__action"
onClick={(ev: React.MouseEvent<HTMLButtonElement>) => {
ev.preventDefault();
ev.stopPropagation();
toggleDisplay(field);
}}
data-test-subj={`fieldToggle-${field.name}`}
arial-label={removeLabelAria}
>
{removeLabel}
</EuiButton>
)}
</span>
</div>
{showDetails && (
<DiscoverFieldDetails
indexPattern={indexPattern}
field={field}
details={getDetails(field)}
onAddFilter={onAddFilter}
/>
)}
)}
</EuiPopover>
</>
);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.dscFieldDetails__visualizeBtn {
@include euiFontSizeXS;
height: $euiSizeL !important;
min-width: $euiSize * 4;
}
Loading