forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* display column title correctly * deangular and re-use formatted column * convert formatted column to data grid column * restore filter in and filter out value functions Partially resolve: opensearch-project#2305 Signed-off-by: Anan Zhuang <ananzh@amazon.com>
- Loading branch information
Showing
5 changed files
with
347 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
149 changes: 149 additions & 0 deletions
149
src/plugins/vis_type_table/public/components/table_vis_grid_columns.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React from 'react'; | ||
import { i18n } from '@osd/i18n'; | ||
import { EuiDataGridColumn, EuiDataGridColumnCellActionProps } from '@elastic/eui'; | ||
import { IInterpreterRenderHandlers } from 'src/plugins/expressions'; | ||
import { Table } from '../table_vis_response_handler'; | ||
import { TableVisConfig } from '../types'; | ||
import { convertToFormattedData } from '../utils/convert_to_formatted_data'; | ||
|
||
interface FilterData { | ||
row: number; | ||
column: number; | ||
value: unknown; | ||
} | ||
|
||
export const getDataGridColumns = ( | ||
table: Table, | ||
visConfig: TableVisConfig, | ||
handlers: IInterpreterRenderHandlers | ||
) => { | ||
const { formattedRows, formattedColumns } = convertToFormattedData(table, visConfig); | ||
|
||
const filterBucket = (data: FilterData, negate: boolean) => { | ||
const foramttedColumnId = formattedColumns[data.column].id; | ||
const filterColumnIndex = table.columns.findIndex((col) => col.id === foramttedColumnId); | ||
handlers.event({ | ||
name: 'filterBucket', | ||
data: { | ||
data: [ | ||
{ | ||
table: { | ||
columns: table.columns, | ||
rows: formattedRows, | ||
}, | ||
...data, | ||
column: filterColumnIndex, | ||
}, | ||
], | ||
negate, | ||
}, | ||
}); | ||
}; | ||
|
||
return formattedColumns.map((col, colIndex) => { | ||
const cellActions = col.filterable | ||
? [ | ||
({ rowIndex, columnId, Component, closePopover }: EuiDataGridColumnCellActionProps) => { | ||
const filterValue = formattedRows[rowIndex][columnId]; | ||
const filterContent = col.formatter?.convert(filterValue); | ||
|
||
const filterForValueText = i18n.translate( | ||
'visTypeTable.tableVisFilter.filterForValue', | ||
{ | ||
defaultMessage: 'Filter for value', | ||
} | ||
); | ||
const filterForValueLabel = i18n.translate( | ||
'visTypeTable.tableVisFilter.filterForValueLabel', | ||
{ | ||
defaultMessage: 'Filter for value: {filterContent}', | ||
values: { | ||
filterContent, | ||
}, | ||
} | ||
); | ||
|
||
return ( | ||
filterValue != null && ( | ||
<Component | ||
onClick={() => { | ||
filterBucket({ row: rowIndex, column: colIndex, value: filterValue }, false); | ||
closePopover(); | ||
}} | ||
iconType="plusInCircle" | ||
aria-label={filterForValueLabel} | ||
data-test-subj="filterForValue" | ||
> | ||
{filterForValueText} | ||
</Component> | ||
) | ||
); | ||
}, | ||
({ rowIndex, columnId, Component, closePopover }: EuiDataGridColumnCellActionProps) => { | ||
const filterValue = formattedRows[rowIndex][columnId]; | ||
const filterContent = col.formatter?.convert(filterValue); | ||
|
||
const filterOutValueText = i18n.translate( | ||
'visTypeTable.tableVisFilter.filterOutValue', | ||
{ | ||
defaultMessage: 'Filter out value', | ||
} | ||
); | ||
const filterOutValueLabel = i18n.translate( | ||
'visTypeTable.tableVisFilter.filterOutValueLabel', | ||
{ | ||
defaultMessage: 'Filter out value: {filterContent}', | ||
values: { | ||
filterContent, | ||
}, | ||
} | ||
); | ||
|
||
return ( | ||
filterValue != null && ( | ||
<Component | ||
onClick={() => { | ||
filterBucket({ row: rowIndex, column: colIndex, value: filterValue }, true); | ||
closePopover(); | ||
}} | ||
iconType="minusInCircle" | ||
aria-label={filterOutValueLabel} | ||
data-test-subj="filterOutValue" | ||
> | ||
{filterOutValueText} | ||
</Component> | ||
) | ||
); | ||
}, | ||
] | ||
: undefined; | ||
|
||
const dataGridColumn: EuiDataGridColumn = { | ||
id: col.id, | ||
display: col.title, | ||
displayAsText: col.title, | ||
actions: { | ||
showHide: false, | ||
showMoveLeft: false, | ||
showMoveRight: false, | ||
showSortAsc: { | ||
label: i18n.translate('visTypeTable.sort.ascLabel', { | ||
defaultMessage: 'Sort asc', | ||
}), | ||
}, | ||
showSortDesc: { | ||
label: i18n.translate('visTypeTable.sort.descLabel', { | ||
defaultMessage: 'Sort desc', | ||
}), | ||
}, | ||
}, | ||
cellActions, | ||
}; | ||
return dataGridColumn; | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
178 changes: 178 additions & 0 deletions
178
src/plugins/vis_type_table/public/utils/convert_to_formatted_data.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Any modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { i18n } from '@osd/i18n'; | ||
import { chain, findIndex } from 'lodash'; | ||
import { OpenSearchDashboardsDatatableRow } from 'src/plugins/expressions'; | ||
import { Table } from '../table_vis_response_handler'; | ||
import { AggTypes, TableVisConfig } from '../types'; | ||
import { getFormatService } from '../services'; | ||
import { FormattedColumn } from '../types'; | ||
|
||
function insert(arr: FormattedColumn[], index: number, col: FormattedColumn) { | ||
const newArray = [...arr]; | ||
newArray.splice(index + 1, 0, col); | ||
return newArray; | ||
} | ||
|
||
/** | ||
* @param columns - the formatted columns that will be displayed | ||
* @param title - the title of the column to add to | ||
* @param rows - the row data for the columns | ||
* @param insertAtIndex - the index to insert the percentage column at | ||
* @returns cols and rows for the table to render now included percentage column(s) | ||
*/ | ||
function addPercentageCol( | ||
columns: FormattedColumn[], | ||
title: string, | ||
rows: Table['rows'], | ||
insertAtIndex: number | ||
) { | ||
const { id, sumTotal } = columns[insertAtIndex]; | ||
const newId = `${id}-percents`; | ||
const formatter = getFormatService().deserialize({ id: 'percent' }); | ||
const i18nTitle = i18n.translate('visTypeTable.params.percentageTableColumnName', { | ||
defaultMessage: '{title} percentages', | ||
values: { title }, | ||
}); | ||
const newCols = insert(columns, insertAtIndex, { | ||
title: i18nTitle, | ||
id: newId, | ||
formatter, | ||
filterable: false, | ||
}); | ||
const newRows = rows.map((row) => ({ | ||
[newId]: (row[id] as number) / (sumTotal as number), | ||
...row, | ||
})); | ||
|
||
return { cols: newCols, rows: newRows }; | ||
} | ||
|
||
export interface FormattedDataProps { | ||
formattedRows: OpenSearchDashboardsDatatableRow[]; | ||
formattedColumns: FormattedColumn[]; | ||
} | ||
export const convertToFormattedData = ( | ||
table: Table, | ||
visConfig: TableVisConfig | ||
): FormattedDataProps => { | ||
const { buckets, metrics, splitColumn } = visConfig; | ||
let formattedRows: OpenSearchDashboardsDatatableRow[] = table.rows; | ||
let formattedColumns: FormattedColumn[] = table.columns | ||
.map(function (col, i) { | ||
const isBucket = buckets.find((bucket) => bucket.accessor === i); | ||
const isSplitColumn = splitColumn | ||
? splitColumn.find((splitCol) => splitCol.accessor === i) | ||
: undefined; | ||
const dimension = | ||
isBucket || isSplitColumn || metrics.find((metric) => metric.accessor === i); | ||
|
||
const formatter = dimension ? getFormatService().deserialize(dimension.format) : undefined; | ||
|
||
const formattedColumn: FormattedColumn = { | ||
id: col.id, | ||
title: col.name, | ||
formatter, | ||
filterable: !!isBucket, | ||
}; | ||
|
||
const isDate = dimension?.format?.id === 'date' || dimension?.format?.params?.id === 'date'; | ||
const allowsNumericalAggregations = formatter?.allowsNumericalAggregations; | ||
|
||
if (allowsNumericalAggregations || isDate || visConfig.totalFunc === AggTypes.COUNT) { | ||
const sum = table.rows.reduce((prev, curr) => { | ||
// some metrics return undefined for some of the values | ||
// derivative is an example of this as it returns undefined in the first row | ||
if (curr[col.id] === undefined) return prev; | ||
return prev + (curr[col.id] as number); | ||
}, 0); | ||
|
||
formattedColumn.sumTotal = sum; | ||
switch (visConfig.totalFunc) { | ||
case AggTypes.SUM: { | ||
if (!isDate) { | ||
formattedColumn.formattedTotal = formatter?.convert(sum); | ||
formattedColumn.total = formattedColumn.sumTotal; | ||
} | ||
break; | ||
} | ||
case AggTypes.AVG: { | ||
if (!isDate) { | ||
const total = sum / table.rows.length; | ||
formattedColumn.formattedTotal = formatter?.convert(total); | ||
formattedColumn.total = total; | ||
} | ||
break; | ||
} | ||
case AggTypes.MIN: { | ||
const total = chain(table.rows).map(col.id).min().value() as number; | ||
formattedColumn.formattedTotal = formatter?.convert(total); | ||
formattedColumn.total = total; | ||
break; | ||
} | ||
case AggTypes.MAX: { | ||
const total = chain(table.rows).map(col.id).max().value() as number; | ||
formattedColumn.formattedTotal = formatter?.convert(total); | ||
formattedColumn.total = total; | ||
break; | ||
} | ||
case 'count': { | ||
const total = table.rows.length; | ||
formattedColumn.formattedTotal = total; | ||
formattedColumn.total = total; | ||
break; | ||
} | ||
default: | ||
break; | ||
} | ||
} | ||
|
||
return formattedColumn; | ||
}) | ||
.filter((column) => column); | ||
|
||
if (visConfig.percentageCol) { | ||
const insertAtIndex = findIndex(formattedColumns, { title: visConfig.percentageCol }); | ||
|
||
// column to show percentage for was removed | ||
if (insertAtIndex < 0) return; | ||
|
||
const { cols, rows } = addPercentageCol( | ||
formattedColumns, | ||
visConfig.percentageCol, | ||
table.rows, | ||
insertAtIndex | ||
); | ||
formattedRows = rows; | ||
formattedColumns = cols; | ||
} | ||
return { formattedRows, formattedColumns }; | ||
}; |