-
Notifications
You must be signed in to change notification settings - Fork 618
/
Copy pathfilter-toolbar.tsx
470 lines (439 loc) · 15.1 KB
/
filter-toolbar.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
import * as React from 'react';
import * as _ from 'lodash';
import { useLocation } from 'react-router-dom';
// eslint-disable-next-line @typescript-eslint/ban-ts-ignore
// @ts-ignore
import { useDispatch } from 'react-redux';
import {
Badge,
Button,
Select,
SelectGroup,
SelectOption,
SelectVariant,
Toolbar,
ToolbarChip,
ToolbarContent,
ToolbarFilter,
ToolbarGroup,
ToolbarItem,
ToolbarToggleGroup,
Tooltip,
} from '@patternfly/react-core';
import { FilterIcon, ColumnsIcon } from '@patternfly/react-icons';
import {
RowFilterItem,
ColumnLayout,
OnFilterChange,
FilterValue,
} from '@console/dynamic-plugin-sdk';
import {
Dropdown as DropdownInternal,
setOrRemoveQueryArgument,
} from '@console/internal/components/utils';
import { useTranslation } from 'react-i18next';
import AutocompleteInput from './autocomplete';
import { storagePrefix } from './row-filter';
import { createColumnManagementModal } from './modals';
import { useDebounceCallback, useDeepCompareMemoize } from '@console/shared/src';
import { TextFilter } from './factory';
import { filterList } from '@console/dynamic-plugin-sdk/src/app/k8s/actions/k8s';
import useRowFilterFix from './useRowFilterFix';
import useLabelSelectionFix from './useLabelSelectionFix';
/**
* Housing both the row filter and name/label filter in the same file.
*/
enum FilterType {
NAME = 'Name',
LABEL = 'Label',
}
export const filterTypeMap = Object.freeze({
[FilterType.LABEL]: 'labels',
[FilterType.NAME]: 'name',
});
type Filter = {
[key: string]: string[];
};
type FilterKeys = {
[key: string]: string;
};
export const FilterToolbar: React.FC<FilterToolbarProps> = ({
rowFilters,
data,
hideColumnManagement,
hideLabelFilter,
hideNameLabelFilters,
columnLayout,
nameFilterPlaceholder,
nameFilterTitle,
labelFilterPlaceholder,
textFilter = filterTypeMap[FilterType.NAME],
labelFilter = filterTypeMap[FilterType.LABEL],
uniqueFilterName,
reduxIDs,
onFilterChange,
labelPath,
}) => {
const dispatch = useDispatch();
const location = useLocation();
const { t } = useTranslation();
const translatedNameFilterTitle = nameFilterTitle ?? t('public~Name');
const translateFilterType = (value: string) => {
switch (value) {
case 'Name':
return translatedNameFilterTitle;
case 'Label':
return t('public~Label');
default:
return value;
}
};
const filterDropdownItems = {
NAME: translatedNameFilterTitle,
LABEL: t('public~Label'),
};
// use unique name only when only when more than 1 table is in the view
const nameFilterQueryArgumentKey = uniqueFilterName
? `${uniqueFilterName}-${textFilter}`
: textFilter;
const labelFilterQueryArgumentKey = uniqueFilterName
? `${uniqueFilterName}-${labelFilter}`
: labelFilter;
const params = new URLSearchParams(location.search);
const [filterType, setFilterType] = React.useState(FilterType.NAME);
const [isOpen, setOpen] = React.useState(false);
const [nameInputText, setNameInputText] = React.useState(
params.get(nameFilterQueryArgumentKey) ?? '',
);
const [labelInputText, setLabelInputText] = React.useState('');
// Generate rowFilter items and counts. Memoize to minimize re-renders.
const generatedRowFilters = useDeepCompareMemoize(
(rowFilters ?? []).map((rowFilter) => ({
...rowFilter,
items: rowFilter.items.map((item) => ({
...item,
count: (rowFilter as RowMatchFilter).isMatch
? _.filter(data, (d) => (rowFilter as RowMatchFilter).isMatch(d, item.id)).length
: _.countBy(data, (rowFilter as RowReducerFilter).reducer)?.[item.id] ?? '0',
})),
})),
);
// Reduce generatedRowFilters once and memoize
const [filters, filtersNameMap, filterKeys, defaultSelections] = React.useMemo<
[Filter, FilterKeys, FilterKeys, string[]]
>(
() =>
generatedRowFilters.reduce(
(
[filtersAcc, filtersNameMapAcc, filterKeysAcc, defaultSelectedAcc],
{ defaultSelected, filterGroupName, items, type },
) => [
// (rowFilters) => {'rowFilterTypeA': ['staA', 'staB'], 'rowFilterTypeB': ['stbA'] }
{
...filtersAcc,
[filterGroupName]: (items ?? []).map(({ id }) => id),
},
// {id: 'a' , title: 'A'} => filterNameMap['a'] = A
{
...filtersNameMapAcc,
...(items ?? []).reduce(
(itemAcc, { id, title }) => ({
...itemAcc,
[id]: title,
}),
{},
),
},
// (storagePrefix, rowFilters) => { 'rowFilterTypeA' = 'storagePrefix-filterTypeA' ...}
{
...filterKeysAcc,
[filterGroupName]: `${storagePrefix}${type}`,
},
// Default selections
_.uniq([...defaultSelectedAcc, ...(defaultSelected ?? [])]),
],
[{}, {}, {}, []],
),
[generatedRowFilters],
);
const [selectedRowFilters, onRowFilterSearchParamChange, rowFiltersInitialized] = useRowFilterFix(
params,
filters,
filterKeys,
defaultSelections,
);
const [labelSelection, onLabelSelectionChange, labelSelectionInitialized] = useLabelSelectionFix(
params,
labelFilterQueryArgumentKey,
);
// Map row filters to select groups
const dropdownItems = generatedRowFilters.map((rowFilter) => (
<SelectGroup key={rowFilter.filterGroupName} label={rowFilter.filterGroupName}>
{rowFilter.items?.map?.((item) =>
item.hideIfEmpty && (item.count === 0 || item.count === '0') ? (
<></>
) : (
<SelectOption
data-test-row-filter={item.id}
key={item.id}
inputId={item.id}
value={item.id}
>
<span className="co-filter-dropdown-item__name">{item.title}</span>
<Badge key={item.id} isRead>
{item.count}
</Badge>
</SelectOption>
),
)}
</SelectGroup>
));
const applyFilters = React.useCallback(
(type: string, input: FilterValue) =>
onFilterChange
? onFilterChange(type, input)
: reduxIDs?.forEach?.((id) => dispatch(filterList(id, type, input))),
[onFilterChange, reduxIDs, dispatch],
);
const applyRowFilter = (selected: string[]) => {
generatedRowFilters?.forEach?.(({ items, type }) => {
const all = items?.map?.(({ id }) => id) ?? [];
const recognized = _.intersection(selected, all);
applyFilters(type, { selected: [...new Set(recognized)], all });
});
};
const updateRowFilterSelected = (id: string[]) => {
const selectedNew = _.xor(selectedRowFilters, id);
onRowFilterSearchParamChange(selectedNew);
applyRowFilter(selectedNew);
};
const clearAllRowFilter = (f: string) => {
updateRowFilterSelected(_.intersection(filters[f], selectedRowFilters));
};
const onRowFilterSelect = (event) => {
updateRowFilterSelected([event?.target?.id]);
};
const applyLabelFilters = (values: string[]) => {
setLabelInputText('');
onLabelSelectionChange(values);
applyFilters(labelFilter, { all: values });
};
const applyNameFilter = React.useCallback(
(value: string) => {
setOrRemoveQueryArgument(nameFilterQueryArgumentKey, value);
applyFilters(textFilter, { selected: [value] });
},
[applyFilters, nameFilterQueryArgumentKey, textFilter],
);
const debounceApplyNameFilter = useDebounceCallback(applyNameFilter, 250);
const clearAll = () => {
updateRowFilterSelected(selectedRowFilters);
if (!hideNameLabelFilters) {
setNameInputText('');
applyNameFilter('');
}
if (!hideNameLabelFilters || !hideLabelFilter) {
setLabelInputText('');
applyLabelFilters([]);
}
};
// Run once on mount to apply filters from query params
React.useEffect(() => {
if (!hideNameLabelFilters || !hideLabelFilter) {
applyFilters(labelFilter, { all: labelSelection });
}
if (!hideNameLabelFilters) {
applyFilters(textFilter, { selected: [nameInputText] });
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
/**
* Initialize any external data filters based on the hack-fix data when they are finished init
* TODO: Remove during https://issues.redhat.com/browse/CONSOLE-3147
*/
React.useEffect(() => {
if (rowFiltersInitialized && labelSelectionInitialized) {
applyFilters(labelFilter, { all: labelSelection });
applyRowFilter(selectedRowFilters);
}
// Trigger the update only when we are initialized to sync the url params with the data
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [rowFiltersInitialized, labelSelectionInitialized]);
return (
<Toolbar
className="co-toolbar-no-padding pf-m-toggle-group-container"
data-test="filter-toolbar"
id="filter-toolbar"
clearAllFilters={clearAll}
clearFiltersButtonText={t('public~Clear all filters')}
>
<ToolbarContent>
<ToolbarToggleGroup toggleIcon={<FilterIcon />} breakpoint="md">
{rowFilters?.length > 0 && (
<ToolbarItem>
{_.reduce(
Object.keys(filters),
(acc, key) => (
<ToolbarFilter
key={key}
chips={_.intersection(selectedRowFilters, filters[key]).map((item) => {
return {
key: item,
node: filtersNameMap[item],
};
})}
deleteChip={(filter, chip: ToolbarChip) => updateRowFilterSelected([chip.key])}
categoryName={key}
deleteChipGroup={() => clearAllRowFilter(key)}
chipGroupCollapsedText={t('public~{{numRemaining}} more', {
numRemaining: '${remaining}',
})}
chipGroupExpandedText={t('public~Show less')}
>
{acc}
</ToolbarFilter>
),
<div data-test-id="filter-dropdown-toggle">
<Select
placeholderText={
<span>
<FilterIcon className="span--icon__right-margin" />
{t('public~Filter')}
</span>
}
isOpen={isOpen}
onToggle={() => {
setOpen(!isOpen);
}}
onSelect={onRowFilterSelect}
variant={SelectVariant.checkbox}
selections={selectedRowFilters}
isCheckboxSelectionBadgeHidden
isGrouped
maxHeight="60vh"
>
{dropdownItems}
</Select>
</div>,
)}
</ToolbarItem>
)}
{!hideNameLabelFilters && (
<ToolbarItem className="co-filter-search--full-width">
<ToolbarFilter
deleteChipGroup={() => {
setLabelInputText('');
applyLabelFilters([]);
}}
chips={labelSelection}
deleteChip={(f, chip: string) => {
setLabelInputText('');
applyLabelFilters(_.difference(labelSelection, [chip]));
}}
categoryName={t('public~Label')}
>
<ToolbarFilter
chips={nameInputText ? [nameInputText] : []}
deleteChip={() => {
setNameInputText('');
applyNameFilter('');
}}
categoryName={translatedNameFilterTitle}
>
<div className="pf-c-input-group">
{!hideLabelFilter && (
<DropdownInternal
items={filterDropdownItems}
onChange={(type) => setFilterType(FilterType[type])}
selectedKey={filterType}
title={translateFilterType(filterType)}
/>
)}
{filterType === FilterType.LABEL ? (
<AutocompleteInput
className="co-text-node"
onSuggestionSelect={(selected) => {
applyLabelFilters(_.uniq([...labelSelection, selected]));
}}
showSuggestions
textValue={labelInputText}
setTextValue={setLabelInputText}
placeholder={labelFilterPlaceholder ?? t('public~Search by label...')}
data={data}
labelPath={labelPath}
/>
) : (
<TextFilter
data-test="name-filter-input"
value={nameInputText}
onChange={(value: string) => {
setNameInputText(value);
debounceApplyNameFilter(value);
}}
placeholder={nameFilterPlaceholder ?? t('public~Search by name...')}
/>
)}
</div>
</ToolbarFilter>
</ToolbarFilter>
</ToolbarItem>
)}
</ToolbarToggleGroup>
{columnLayout?.id && !hideColumnManagement && (
<ToolbarGroup>
<ToolbarItem>
<Tooltip content={t('public~Manage columns')}>
<Button
variant="plain"
onClick={() =>
createColumnManagementModal({
columnLayout,
})
}
aria-label={t('public~Column management')}
>
<ColumnsIcon />
</Button>
</Tooltip>
</ToolbarItem>
</ToolbarGroup>
)}
</ToolbarContent>
</Toolbar>
);
};
type RowFilterBase<R> = {
filterGroupName: string;
type: string;
items: RowFilterItem[];
filter?: (input: FilterValue, obj: R) => boolean;
defaultSelected?: string[];
};
export type RowMatchFilter<R = any> = RowFilterBase<R> & {
isMatch: (obj: R, id: string) => boolean;
};
export type RowReducerFilter<R = any> = RowFilterBase<R> & {
reducer: (obj: R) => React.ReactText;
};
export type RowFilter<R = any> = RowMatchFilter<R> | RowReducerFilter<R>;
type FilterToolbarProps = {
rowFilters?: RowFilter[];
data?: any;
reduxIDs?: string[];
textFilter?: string;
hideColumnManagement?: boolean;
hideLabelFilter?: boolean;
hideNameLabelFilters?: boolean;
labelFilter?: string;
parseAutoComplete?: any;
kinds?: any;
labelPath?: string;
columnLayout?: ColumnLayout;
nameFilterPlaceholder?: string;
nameFilterTitle?: string;
labelFilterPlaceholder?: string;
// Used when multiple tables are in the same page
uniqueFilterName?: string;
onFilterChange?: OnFilterChange;
};
FilterToolbar.displayName = 'FilterToolbar';