Skip to content

Commit

Permalink
:Filtering in Timeline-Chart components
Browse files Browse the repository at this point in the history
Enables filtering in gant-chart views.  Implements UI and functionality.
This change is dependent on changes in the Timeline-Chart repo for
the filtering of gap-states.

Signed-off-by: William Yang <william.yang@ericsson.com>
  • Loading branch information
williamsyang-work committed Jul 10, 2024
1 parent 2f5bb1d commit ce48725
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import { faSpinner } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import TextField from '@mui/material/TextField';
import InputAdornment from '@mui/material/InputAdornment';
import Chip from '@mui/material/Chip';
import { debounce } from 'lodash';
import '../../style/react-contextify.css';
import { Item, ItemParams, Menu, Separator, Submenu, useContextMenu } from 'react-contexify';
Expand Down Expand Up @@ -66,6 +67,7 @@ type TimegraphOutputState = AbstractTreeOutputState & {
columns: ColumnHeader[];
dataRows: TimelineChart.TimeGraphRowModel[];
searchString: string;
filters: string[];
menuItems?: ContextMenuItems;
};

Expand Down Expand Up @@ -100,7 +102,7 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent<Timegr
this.doHandleContextMenuContributed(payload);
private pendingSelection: TimeGraphEntry | undefined;

private _debouncedUpdateSearch = debounce(() => this.updateSearchFilter(), 500);
private _debouncedUpdateSearch = debounce(() => this.updateSearchFilters(), 500);
private _debouncedUpdateChart = debounce(() => {
this.chartLayer.updateChart();
}, 500);
Expand All @@ -124,7 +126,8 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent<Timegr
: [],
dataRows: [],
showTree: true,
searchString: ''
searchString: '',
filters: []
};
this.selectedMarkerCategories = this.props.markerCategories;
this.onToggleCollapse = this.onToggleCollapse.bind(this);
Expand Down Expand Up @@ -347,7 +350,10 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent<Timegr
) {
this.markersChartLayer.updateChart();
}
if (!isEqual(this.state.searchString, prevState.searchString)) {
if (
!isEqual(this.state.searchString, prevState.searchString) ||
!isEqual(this.state.filters, prevState.filters)
) {
this._debouncedUpdateSearch();
}
if (!isEqual(this.state.multiSelectedRows, prevState.multiSelectedRows)) {
Expand All @@ -360,16 +366,6 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent<Timegr
}
}

async updateSearchFilter(): Promise<void> {
if (this.state.searchString && this.state.searchString.length > 0) {
const filterExpressionsMap: { [key: number]: string[] } = {};
filterExpressionsMap[1] = [this.state.searchString];
this.chartLayer.updateChart(filterExpressionsMap);
} else {
this.chartLayer.updateChart();
}
}

private onToggleCollapse(id: number) {
let newList = [...this.state.collapsedNodes];
const exist = this.state.collapsedNodes.find(expandId => expandId === id);
Expand Down Expand Up @@ -820,8 +816,16 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent<Timegr
}}
value={this.state.searchString}
onChange={this.handleSearchChange}
onKeyDown={event => this.onKeyDown(event)}
onKeyDown={this.handleKeyDown}
/>
{this.state.filters.map((filter, index) => (
<Chip
key={index}
label={filter}
onDelete={() => this.removeFilter(filter)}
className="filter-chip"
/>
))}
</div>
</div>
);
Expand All @@ -835,6 +839,46 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent<Timegr
this.setState({ searchString: event.target.value ?? '' });
}

private handleKeyDown = (event: React.KeyboardEvent<HTMLInputElement>) => {
if (event.key === 'Enter' &&
this.state.searchString.trim() &&
event.target instanceof HTMLInputElement &&
event.target.classList.contains('MuiInputBase-input')) {
this.addFilter(this.state.searchString.trim());
this.setState({ searchString: '' });
}
};

private addFilter = (filter: string) => {
this.setState(
prevState => ({ filters: [...prevState.filters, filter] }),
this.updateSearchFilters
);
};

private removeFilter = (filter: string) => {
this.setState(
prevState => ({ filters: prevState.filters.filter(f => f !== filter) }),
this.updateSearchFilters
);
};

private updateSearchFilters = () => {
const filterExpressionsMap: { [key: number]: string[] } = {};
if (this.state.searchString) {
filterExpressionsMap[1] = [this.state.searchString]; // For greying out
}
if (this.state.filters.length > 0) {
filterExpressionsMap[4] = this.state.filters; // For filtering
}

if (Object.keys(filterExpressionsMap).length > 0) {
this.chartLayer.updateChart(filterExpressionsMap);
} else {
this.chartLayer.updateChart();
}
};

private clearSearchBox() {
this.setState({ searchString: '' });
}
Expand Down
30 changes: 22 additions & 8 deletions packages/react-components/style/output-components-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -442,14 +442,16 @@ canvas {
.timgraph-search-bar {
background: var(--trace-viewer-editor-background);
padding-top: 5px;
padding-bottom: 10px;
padding-bottom: 15px;
height: 30px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
}

.timegraph-search-box {
height: 24px;
height: 30px;
margin-left: 2.5px;
margin-right: 2.5px;
font-family: var(--trace-viewer-ui-font-family) !important;
Expand Down Expand Up @@ -495,12 +497,6 @@ canvas {
align-items: center;
}

.input-container {
flex: 5;
padding: 5px;
display: flex;
position: relative;
}

.input-container input {
flex: 1;
Expand All @@ -516,3 +512,21 @@ canvas {
flex: 1;
margin-right: 5px;
}

.filter-chip {
background-color: var(--theia-selection-background) !important;
color: var(--trace-viewer-ui-font-color0);
border-radius: 15px !important;
border-width: 1px !important;
display: flex;
align-items: center;
font-size: 12px;
height: 30px !important;
}

.filter-chip .MuiChip-deleteIcon {
color: var(--trace-viewer-ui-font-color0);
font-size: 16px;
margin-left: 4px;
cursor: pointer;
}

0 comments on commit ce48725

Please sign in to comment.