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

[Lens] Update label if operation and field are changed at once #100991

Merged
merged 3 commits into from
Jun 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Expand Up @@ -965,6 +965,41 @@ describe('state_helpers', () => {
);
});

it('should not carry over label when operation and field change at the same time', () => {
expect(
replaceColumn({
layer: {
indexPatternId: '1',
columnOrder: ['col1'],
columns: {
col1: {
label: 'My custom label',
customLabel: true,
dataType: 'date',
isBucketed: true,

// Private
operationType: 'date_histogram',
sourceField: 'timestamp',
params: {
interval: 'h',
},
},
},
},
indexPattern,
columnId: 'col1',
op: 'terms',
field: indexPattern.fields[4],
visualizationGroups: [],
}).columns.col1
).toEqual(
expect.objectContaining({
label: 'Top values of source',
})
);
});

it('should carry over label on operation switch when customLabel flag on previousColumn is set', () => {
expect(
replaceColumn({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -827,12 +827,14 @@ function applyReferenceTransition({
);
}

function copyCustomLabel(
newColumn: IndexPatternColumn,
previousOptions: { customLabel?: boolean; label: string }
) {
function copyCustomLabel(newColumn: IndexPatternColumn, previousOptions: IndexPatternColumn) {
const adjustedColumn = { ...newColumn };
if (previousOptions.customLabel) {
const operationChanged = newColumn.operationType !== previousOptions.operationType;
const fieldChanged =
('sourceField' in newColumn && newColumn.sourceField) !==
('sourceField' in previousOptions && previousOptions.sourceField);
// only copy custom label if either used operation or used field stayed the same
if (previousOptions.customLabel && (!operationChanged || !fieldChanged)) {
adjustedColumn.customLabel = true;
adjustedColumn.label = previousOptions.label;
}
Expand Down