Skip to content

Commit

Permalink
refactor(SeriesSpec): add series name settings (#539)
Browse files Browse the repository at this point in the history
Refactor name prop on SeriesSpec to take custom naming props to name series.

BREAKING CHANGE:
Remove `customSubSeriesName` prop on series specs in favor of cleaner api using just the `name` prop on `SeriesSpec`. The types `SeriesStringPredicate`, `SubSeriesStringPredicate` have been removed.
  • Loading branch information
nickofthyme authored Feb 24, 2020
1 parent df9a095 commit ba43ccd
Show file tree
Hide file tree
Showing 18 changed files with 518 additions and 232 deletions.
62 changes: 29 additions & 33 deletions .playground/playground.tsx
Original file line number Diff line number Diff line change
@@ -1,43 +1,39 @@
import React from 'react';
import { Chart, ScaleType, Position, Axis, getAxisId, timeFormatter, getSpecId, AreaSeries, Settings } from '../src';
import { KIBANA_METRICS } from '../src/utils/data_samples/test_dataset_kibana';
export class Playground extends React.Component {
chartRef: React.RefObject<Chart> = React.createRef();
onBrushEnd = (min: number, max: number) => {
// eslint-disable-next-line no-console
console.log({ min, max });
};

import { Chart, LineSeries, ScaleType, Position, Axis } from '../src';
import { SeededDataGenerator } from '../src/mocks/utils';

export class Playground extends React.Component<{}, { isSunburstShown: boolean }> {
render() {
const dg = new SeededDataGenerator();
const data = dg.generateGroupedSeries(10, 2).map((item) => ({
...item,
y1: item.y + 100,
}));

return (
<>
<div className="chart">
<Chart className={'story-chart'}>
<Settings showLegend={true} />
<Axis
id={getAxisId('bottom')}
title={'timestamp per 1 minute'}
position={Position.Bottom}
showOverlappingTicks={true}
tickFormat={timeFormatter('HH:mm')}
<Chart>
<Axis id="y1" position={Position.Left} title={'y1'} />
<Axis id="y2" domain={{ fit: true }} groupId="g2" position={Position.Right} title={'y2'} />
<Axis id="x" position={Position.Bottom} title={'x'} />
<LineSeries
id="line1"
xScaleType={ScaleType.Linear}
xAccessor={'x'}
yAccessors={['y']}
splitSeriesAccessors={['g']}
data={data}
/>
<Axis
id={getAxisId('left')}
title={KIBANA_METRICS.metrics.kibana_os_load[0].metric.title}
position={Position.Left}
tickFormat={(d) => Number(d).toFixed(2)}
/>

<AreaSeries
id={getSpecId('area')}
xScaleType={ScaleType.Time}
yScaleType={ScaleType.Linear}
xAccessor={0}
yAccessors={[1]}
y0Accessors={[2]}
data={KIBANA_METRICS.metrics.kibana_os_load[0].data.map((d) => {
return [...d, d[1] - 10];
})}
<LineSeries
id="line2"
groupId="g2"
xScaleType={ScaleType.Linear}
xAccessor={'x'}
yAccessors={['y1']}
splitSeriesAccessors={['g']}
data={data}
/>
</Chart>
</div>
Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
94 changes: 47 additions & 47 deletions src/chart_types/xy_chart/legend/legend.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getAxisId, getGroupId, getSpecId } from '../../../utils/ids';
import { ScaleType } from '../../../scales';
import { computeLegend } from './legend';
import { SeriesCollectionValue, getSeriesLabel } from '../utils/series';
import { SeriesCollectionValue, getSeriesName } from '../utils/series';
import { AxisSpec, BasicSeriesSpec, SeriesTypes } from '../utils/specs';
import { Position } from '../../../utils/commons';
import { ChartTypes } from '../..';
Expand Down Expand Up @@ -118,7 +118,7 @@ describe('Legends', () => {
const expected = [
{
color: 'red',
label: 'Spec 1 title',
name: 'Spec 1 title',
seriesIdentifier: {
seriesKeys: ['y1'],
specId: 'spec1',
Expand All @@ -142,7 +142,7 @@ describe('Legends', () => {
const expected = [
{
color: 'red',
label: 'Spec 1 title',
name: 'Spec 1 title',
seriesIdentifier: {
seriesKeys: ['y1'],
specId: 'spec1',
Expand All @@ -158,7 +158,7 @@ describe('Legends', () => {
},
{
color: 'blue',
label: 'a - b',
name: 'a - b',
seriesIdentifier: {
seriesKeys: ['a', 'b', 'y1'],
specId: 'spec1',
Expand All @@ -182,7 +182,7 @@ describe('Legends', () => {
const expected = [
{
color: 'red',
label: 'Spec 1 title',
name: 'Spec 1 title',
seriesIdentifier: {
seriesKeys: ['y1'],
specId: 'spec1',
Expand All @@ -198,7 +198,7 @@ describe('Legends', () => {
},
{
color: 'green',
label: 'spec2',
name: 'spec2',
seriesIdentifier: {
seriesKeys: ['y1'],
specId: 'spec2',
Expand Down Expand Up @@ -227,7 +227,7 @@ describe('Legends', () => {
const expected = [
{
color: 'violet',
label: 'Spec 1 title',
name: 'Spec 1 title',
banded: undefined,
seriesIdentifier: {
seriesKeys: ['y1'],
Expand Down Expand Up @@ -272,7 +272,7 @@ describe('Legends', () => {
const visibility = [...legend.values()].map((item) => item.isSeriesVisible);
expect(visibility).toEqual([false, false, true]);
});
it('returns the right series label for a color series', () => {
it('returns the right series name for a color series', () => {
const seriesIdentifier1 = {
specId: getSpecId(''),
yAccessor: 'y1',
Expand All @@ -289,38 +289,38 @@ describe('Legends', () => {
};

// null removed, seriesIdentifier has to be at least an empty array
let label = getSeriesLabel(seriesIdentifier1, true, false);
expect(label).toBe('');
label = getSeriesLabel(seriesIdentifier1, true, false, spec1);
expect(label).toBe('Spec 1 title');
label = getSeriesLabel(seriesIdentifier1, true, false, spec2);
expect(label).toBe('spec2');
label = getSeriesLabel(seriesIdentifier2, true, false, spec1);
expect(label).toBe('Spec 1 title');
label = getSeriesLabel(seriesIdentifier2, true, false, spec2);
expect(label).toBe('spec2');
let name = getSeriesName(seriesIdentifier1, true, false);
expect(name).toBe('');
name = getSeriesName(seriesIdentifier1, true, false, spec1);
expect(name).toBe('Spec 1 title');
name = getSeriesName(seriesIdentifier1, true, false, spec2);
expect(name).toBe('spec2');
name = getSeriesName(seriesIdentifier2, true, false, spec1);
expect(name).toBe('Spec 1 title');
name = getSeriesName(seriesIdentifier2, true, false, spec2);
expect(name).toBe('spec2');

label = getSeriesLabel(seriesIdentifier1, false, false, spec1);
expect(label).toBe('Spec 1 title');
label = getSeriesLabel(seriesIdentifier1, false, false, spec2);
expect(label).toBe('spec2');
label = getSeriesLabel(seriesIdentifier2, false, false, spec1);
expect(label).toBe('a - b');
label = getSeriesLabel(seriesIdentifier2, false, false, spec2);
expect(label).toBe('a - b');
name = getSeriesName(seriesIdentifier1, false, false, spec1);
expect(name).toBe('Spec 1 title');
name = getSeriesName(seriesIdentifier1, false, false, spec2);
expect(name).toBe('spec2');
name = getSeriesName(seriesIdentifier2, false, false, spec1);
expect(name).toBe('a - b');
name = getSeriesName(seriesIdentifier2, false, false, spec2);
expect(name).toBe('a - b');

label = getSeriesLabel(seriesIdentifier1, true, false, spec1);
expect(label).toBe('Spec 1 title');
label = getSeriesLabel(seriesIdentifier1, true, false, spec2);
expect(label).toBe('spec2');
label = getSeriesLabel(seriesIdentifier1, true, false);
expect(label).toBe('');
label = getSeriesLabel(seriesIdentifier1, true, false, spec1);
expect(label).toBe('Spec 1 title');
label = getSeriesLabel(seriesIdentifier1, true, false, spec2);
expect(label).toBe('spec2');
name = getSeriesName(seriesIdentifier1, true, false, spec1);
expect(name).toBe('Spec 1 title');
name = getSeriesName(seriesIdentifier1, true, false, spec2);
expect(name).toBe('spec2');
name = getSeriesName(seriesIdentifier1, true, false);
expect(name).toBe('');
name = getSeriesName(seriesIdentifier1, true, false, spec1);
expect(name).toBe('Spec 1 title');
name = getSeriesName(seriesIdentifier1, true, false, spec2);
expect(name).toBe('spec2');
});
it('use the splitted value as label if has a single series and splitSeries is used', () => {
it('use the splitted value as name if has a single series and splitSeries is used', () => {
const seriesIdentifier1 = {
specId: getSpecId(''),
yAccessor: 'y1',
Expand All @@ -347,22 +347,22 @@ describe('Legends', () => {
...spec1,
splitSeriesAccessors: ['g'],
};
let label = getSeriesLabel(seriesIdentifier1, true, false, specWithSplit);
expect(label).toBe('Spec 1 title');
let name = getSeriesName(seriesIdentifier1, true, false, specWithSplit);
expect(name).toBe('Spec 1 title');

label = getSeriesLabel(seriesIdentifier3, true, false, specWithSplit);
expect(label).toBe('a');
name = getSeriesName(seriesIdentifier3, true, false, specWithSplit);
expect(name).toBe('a');

// happens when we have multiple values in splitSeriesAccessor
// or we have also multiple yAccessors
label = getSeriesLabel(seriesIdentifier2, true, false, specWithSplit);
expect(label).toBe('a - b');
name = getSeriesName(seriesIdentifier2, true, false, specWithSplit);
expect(name).toBe('a - b');

// happens when the value of a splitSeriesAccessor is null
label = getSeriesLabel(seriesIdentifier1, true, false, specWithSplit);
expect(label).toBe('Spec 1 title');
name = getSeriesName(seriesIdentifier1, true, false, specWithSplit);
expect(name).toBe('Spec 1 title');

label = getSeriesLabel(seriesIdentifier1, false, false, specWithSplit);
expect(label).toBe('Spec 1 title');
name = getSeriesName(seriesIdentifier1, false, false, specWithSplit);
expect(name).toBe('Spec 1 title');
});
});
16 changes: 8 additions & 8 deletions src/chart_types/xy_chart/legend/legend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
SeriesCollectionValue,
getSeriesIndex,
getSortedDataSeriesColorsValuesMap,
getSeriesLabel,
getSeriesName,
XYChartSeriesIdentifier,
} from '../utils/series';
import { AxisSpec, BasicSeriesSpec, Postfixes, isAreaSeriesSpec, isBarSeriesSpec } from '../utils/specs';
Expand All @@ -19,7 +19,7 @@ interface FormattedLastValues {
export type LegendItem = Postfixes & {
key: string;
color: string;
label: string;
name: string;
seriesIdentifier: XYChartSeriesIdentifier;
isSeriesVisible?: boolean;
banded?: boolean;
Expand All @@ -43,14 +43,14 @@ function getPostfix(spec: BasicSeriesSpec): Postfixes {
}

export function getItemLabel(
{ banded, label, y1AccessorFormat, y0AccessorFormat }: LegendItem,
{ banded, name, y1AccessorFormat, y0AccessorFormat }: LegendItem,
yAccessor: BandedAccessorType,
) {
if (!banded) {
return label;
return name;
}

return yAccessor === BandedAccessorType.Y1 ? `${label}${y1AccessorFormat}` : `${label}${y0AccessorFormat}`;
return yAccessor === BandedAccessorType.Y1 ? `${name}${y1AccessorFormat}` : `${name}${y0AccessorFormat}`;
}

export function computeLegend(
Expand All @@ -69,10 +69,10 @@ export function computeLegend(
const spec = getSpecsById<BasicSeriesSpec>(specs, seriesIdentifier.specId);
const color = seriesColors.get(key) || defaultColor;
const hasSingleSeries = seriesCollection.size === 1;
const label = getSeriesLabel(seriesIdentifier, hasSingleSeries, false, spec);
const name = getSeriesName(seriesIdentifier, hasSingleSeries, false, spec);
const isSeriesVisible = deselectedDataSeries ? getSeriesIndex(deselectedDataSeries, seriesIdentifier) < 0 : true;

if (label === '' || !spec) {
if (name === '' || !spec) {
return;
}

Expand All @@ -84,7 +84,7 @@ export function computeLegend(
const legendItem: LegendItem = {
key,
color,
label,
name,
banded,
seriesIdentifier,
isSeriesVisible,
Expand Down
2 changes: 1 addition & 1 deletion src/chart_types/xy_chart/rendering/rendering.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('Rendering utils', () => {
const highlightedLegendItem: LegendItem = {
key: 'somekey',
color: '',
label: '',
name: '',
seriesIdentifier,
isSeriesVisible: true,
isLegendItemVisible: true,
Expand Down
24 changes: 12 additions & 12 deletions src/chart_types/xy_chart/state/chart_state.specs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ describe('XYChart - specs ordering', () => {
store.dispatch(specParsed());

const legendItems = getLegendItemsSelector(store.getState());
const labels = [...legendItems.values()].map((item) => item.label);
expect(labels).toEqual(['A', 'B', 'C']);
const names = [...legendItems.values()].map((item) => item.name);
expect(names).toEqual(['A', 'B', 'C']);
});
it('the legend respect the insert order [B, A, C]', () => {
store.dispatch(specParsing());
Expand All @@ -35,8 +35,8 @@ describe('XYChart - specs ordering', () => {
store.dispatch(upsertSpec(MockSeriesSpec.bar({ id: 'C', data })));
store.dispatch(specParsed());
const legendItems = getLegendItemsSelector(store.getState());
const labels = [...legendItems.values()].map((item) => item.label);
expect(labels).toEqual(['B', 'A', 'C']);
const names = [...legendItems.values()].map((item) => item.name);
expect(names).toEqual(['B', 'A', 'C']);
});
it('the legend respect the order when changing properties of existing specs', () => {
store.dispatch(specParsing());
Expand All @@ -46,8 +46,8 @@ describe('XYChart - specs ordering', () => {
store.dispatch(specParsed());

let legendItems = getLegendItemsSelector(store.getState());
let labels = [...legendItems.values()].map((item) => item.label);
expect(labels).toEqual(['A', 'B', 'C']);
let names = [...legendItems.values()].map((item) => item.name);
expect(names).toEqual(['A', 'B', 'C']);

store.dispatch(specParsing());
store.dispatch(upsertSpec(MockSeriesSpec.bar({ id: 'A', data })));
Expand All @@ -56,8 +56,8 @@ describe('XYChart - specs ordering', () => {
store.dispatch(specParsed());

legendItems = getLegendItemsSelector(store.getState());
labels = [...legendItems.values()].map((item) => item.label);
expect(labels).toEqual(['A', 'B updated', 'C']);
names = [...legendItems.values()].map((item) => item.name);
expect(names).toEqual(['A', 'B updated', 'C']);
});
it('the legend respect the order when changing the order of the specs', () => {
store.dispatch(specParsing());
Expand All @@ -67,8 +67,8 @@ describe('XYChart - specs ordering', () => {
store.dispatch(specParsed());

let legendItems = getLegendItemsSelector(store.getState());
let labels = [...legendItems.values()].map((item) => item.label);
expect(labels).toEqual(['A', 'B', 'C']);
let names = [...legendItems.values()].map((item) => item.name);
expect(names).toEqual(['A', 'B', 'C']);

store.dispatch(specParsing());
store.dispatch(upsertSpec(MockSeriesSpec.bar({ id: 'B', data })));
Expand All @@ -77,7 +77,7 @@ describe('XYChart - specs ordering', () => {
store.dispatch(specParsed());

legendItems = getLegendItemsSelector(store.getState());
labels = [...legendItems.values()].map((item) => item.label);
expect(labels).toEqual(['B', 'A', 'C']);
names = [...legendItems.values()].map((item) => item.name);
expect(names).toEqual(['B', 'A', 'C']);
});
});
4 changes: 2 additions & 2 deletions src/chart_types/xy_chart/state/chart_state.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe.skip('Chart Store', () => {
const firstLegendItem: LegendItem = {
key: 'color1',
color: 'foo',
label: 'bar',
name: 'bar',
seriesIdentifier: {
specId: SPEC_ID,
yAccessor: 'y1',
Expand All @@ -68,7 +68,7 @@ describe.skip('Chart Store', () => {
const secondLegendItem: LegendItem = {
key: 'color2',
color: 'baz',
label: 'qux',
name: 'qux',
seriesIdentifier: {
specId: SPEC_ID,
yAccessor: '',
Expand Down
Loading

0 comments on commit ba43ccd

Please sign in to comment.