Skip to content

Commit

Permalink
✨ New continuity icons
Browse files Browse the repository at this point in the history
  • Loading branch information
dej611 committed Jun 24, 2021
1 parent 4c2449f commit 1a9e87e
Showing 1 changed file with 36 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

import React from 'react';
import React, { FC } from 'react';
import { PaletteOutput, PaletteRegistry } from 'src/plugins/charts/public';
import {
EuiFormRow,
Expand Down Expand Up @@ -39,6 +39,17 @@ import {
} from './utils';
const idPrefix = htmlIdGenerator()();

const ContinuityOption: FC<{ iconType: string }> = ({ children, iconType }) => {
return (
<EuiFlexGroup gutterSize="s" alignItems="center" responsive={false}>
<EuiFlexItem grow={false}>
<EuiIcon type={iconType} />
</EuiFlexItem>
<EuiFlexItem grow={false}>{children}</EuiFlexItem>
</EuiFlexGroup>
);
};

/**
* Some name conventions here:
* * `displayStops` => It's an additional transformation of `stops` into a [0, N] domain for the EUIPaletteDisplay component.
Expand Down Expand Up @@ -141,41 +152,45 @@ export function CustomizablePalette({
options={[
{
value: 'above',
inputDisplay: i18n.translate(
'xpack.lens.table.dynamicColoring.continuity.aboveLabel',
{
defaultMessage: 'Above range',
}
inputDisplay: (
<ContinuityOption iconType="continuityAbove">
{i18n.translate('xpack.lens.table.dynamicColoring.continuity.aboveLabel', {
defaultMessage: 'Above range',
})}
</ContinuityOption>
),
'data-test-subj': 'continuity-above',
},
{
value: 'below',
inputDisplay: i18n.translate(
'xpack.lens.table.dynamicColoring.continuity.belowLabel',
{
defaultMessage: 'Below range',
}
inputDisplay: (
<ContinuityOption iconType="continuityBelow">
{i18n.translate('xpack.lens.table.dynamicColoring.continuity.belowLabel', {
defaultMessage: 'Below range',
})}
</ContinuityOption>
),
'data-test-subj': 'continuity-below',
},
{
value: 'all',
inputDisplay: i18n.translate(
'xpack.lens.table.dynamicColoring.continuity.allLabel',
{
defaultMessage: 'Above and below range',
}
inputDisplay: (
<ContinuityOption iconType="continuityAboveBelow">
{i18n.translate('xpack.lens.table.dynamicColoring.continuity.allLabel', {
defaultMessage: 'Above and below range',
})}
</ContinuityOption>
),
'data-test-subj': 'continuity-all',
},
{
value: 'none',
inputDisplay: i18n.translate(
'xpack.lens.table.dynamicColoring.continuity.noneLabel',
{
defaultMessage: 'Within range',
}
inputDisplay: (
<ContinuityOption iconType="continuityWithin">
{i18n.translate('xpack.lens.table.dynamicColoring.continuity.noneLabel', {
defaultMessage: 'Within range',
})}
</ContinuityOption>
),
'data-test-subj': 'continuity-none',
},
Expand Down

0 comments on commit 1a9e87e

Please sign in to comment.