Skip to content

Commit c7b5baa

Browse files
authoredDec 18, 2024··
fix!: ensure select category value label is string and type key as unknown (#298) (#299)
1 parent a15bcc0 commit c7b5baa

File tree

13 files changed

+33
-29
lines changed

13 files changed

+33
-29
lines changed
 

‎src/apis/azul/common/filterTransformer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export function transformTermFacets(
131131
categoryValues.push({
132132
count: 0,
133133
key: term,
134-
label: term ?? LABEL.UNSPECIFIED,
134+
label: String(term ?? LABEL.UNSPECIFIED),
135135
selected: false, // Selected state updated in filter hook
136136
});
137137
}

‎src/apis/azul/common/utils.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ParamValue } from "./filterTransformer";
55
* @param value - Filter value.
66
* @returns filter parameter value.
77
*/
8-
export function getFilterParameterValue(value: string): ParamValue {
8+
export function getFilterParameterValue(value: unknown): ParamValue {
99
if (value === "Unspecified") {
1010
return null;
1111
}
@@ -15,5 +15,7 @@ export function getFilterParameterValue(value: string): ParamValue {
1515
if (value === "false") {
1616
return false;
1717
}
18-
return value;
18+
if (typeof value === "string" || typeof value === "boolean") return value;
19+
if (value === null || value === undefined) return null;
20+
return String(value);
1921
}

‎src/common/entities.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export interface CategoryTag {
1515
/**
1616
* Category values to be used as keys. For example, "Homo sapiens" or "10X 3' v2 sequencing".
1717
*/
18-
export type CategoryValueKey = string;
18+
export type CategoryValueKey = unknown;
1919

2020
/**
2121
* Set of selected category values.
@@ -53,7 +53,7 @@ export interface SelectCategory {
5353
*/
5454
export interface SelectCategoryValue {
5555
count: number;
56-
key: CategoryKey;
56+
key: CategoryValueKey;
5757
label: string; // Allows for displaying null values as "Unspecified"
5858
selected: boolean;
5959
}
@@ -73,7 +73,7 @@ export interface SelectCategoryValueView {
7373
*/
7474
export interface SelectCategoryView {
7575
isDisabled?: boolean;
76-
key: CategoryValueKey;
76+
key: CategoryKey;
7777
label: string;
7878
values: SelectCategoryValueView[];
7979
}

‎src/components/Filter/common/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function getSortMatchesFn(
7474
let match = matchString(value.label || "");
7575
if (match) {
7676
matches.push({ labelRanges: match.ranges, score: match.score, value });
77-
} else {
77+
} else if (typeof value.key === "string") {
7878
match = matchString(value.key || "");
7979
if (match) matches.push({ score: match.score, value });
8080
}

‎src/components/Filter/components/VariableSizeList/VariableSizeList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { FilterMenuSearchMatch } from "../../common/entities";
1717
import { List as FilterList } from "../FilterList/filterList.styles";
1818
import VariableSizeListItem from "../VariableSizeListItem/variableSizeListItem";
1919

20-
export type ItemSizeByItemKey = Map<string, number>;
20+
export type ItemSizeByItemKey = Map<unknown, number>;
2121

2222
export interface VariableSizeListProps {
2323
categoryKey: CategoryKey;

‎src/components/Filter/components/VariableSizeListItem/variableSizeListItem.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ interface Props {
1919
categorySection?: string;
2020
matchedItem: FilterMenuSearchMatch;
2121
onFilter: OnFilterFn;
22-
onUpdateItemSizeByItemKey: (itemKey: string, itemSize: number) => void;
22+
onUpdateItemSizeByItemKey: (itemKey: unknown, itemSize: number) => void;
2323
style: CSSProperties;
2424
}
2525

‎src/components/Table/common/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export function buildCategoryViews<T extends RowData>(
8888
const values = [...getFacetedUniqueValues()].map(([value, count]) => ({
8989
count,
9090
key: value,
91-
label: value,
91+
label: String(value ?? ""),
9292
selected: false, // Selected state updated in reducer.
9393
}));
9494
categoryViews.push({

‎src/config/entities.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ export interface TrackFilterAppliedPayload {
324324
searchTerm: string;
325325
section: string;
326326
selected: boolean;
327-
value: string;
327+
value: unknown;
328328
}
329329

330330
/**

‎src/hooks/useCategoryFilter.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,11 @@ function sortCategoryValueViews(
273273
cvv0: SelectCategoryValueView,
274274
cvv1: SelectCategoryValueView
275275
): number {
276-
return COLLATOR_CASE_INSENSITIVE.compare(cvv0.label, cvv1.label);
276+
return !cvv0.label
277+
? 1
278+
: !cvv1.label
279+
? -1
280+
: COLLATOR_CASE_INSENSITIVE.compare(cvv0.label, cvv1.label);
277281
}
278282

279283
/**

‎src/hooks/useFileManifest/common/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function bindFacets(
7070
function bindFacetTerms(
7171
facetName: string,
7272
responseTerms: AzulTerm[],
73-
searchTermNames: string[]
73+
searchTermNames: unknown[]
7474
): Term[] {
7575
return responseTerms.reduce((accum: Term[], responseTerm) => {
7676
// Default term name to "Unspecified" if term name is null.
@@ -203,7 +203,7 @@ export function isFacetTermSelected(
203203
function listFacetSearchTermNames(
204204
facetName: string,
205205
searchTermsBySearchKey: SelectedSearchTermsBySearchKey
206-
): string[] {
206+
): unknown[] {
207207
return [...(searchTermsBySearchKey.get(facetName) ?? [])];
208208
}
209209

‎src/providers/fileManifestState.tsx

+2-4
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ function fileManifestReducer(
262262
const filters = buildNextFilterState(
263263
state.filters,
264264
payload.categoryKey,
265-
getFilterParameterValue(payload.selectedValue) as unknown as string, // TODO CategoryValueKey may be boolean or null.
265+
getFilterParameterValue(payload.selectedValue),
266266
payload.selected
267267
);
268268
// Get file summary filters.
@@ -322,9 +322,7 @@ function buildNextFileSummaryFilterState(
322322
* @returns all terms for the given category.
323323
*/
324324
function getFileFacetTerms(fileFacet: FileFacet): SelectedFilterValue {
325-
return fileFacet.terms.map(
326-
(term) => getFilterParameterValue(term.name) as unknown as string // TODO CategoryValueKey may be boolean or null.
327-
);
325+
return fileFacet.terms.map((term) => getFilterParameterValue(term.name));
328326
}
329327

330328
/**

‎src/viewModelBuilders/common/utils.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@ export function mapCategoryKeyLabel(
1919
}
2020

2121
/**
22-
* Sanitizes a string for display i.e. any empty, null or undefined value is sanitized to "Unspecified".
23-
* @param str - String to sanitize.
22+
* Sanitizes a value to a string for display i.e. any empty, null or undefined value is sanitized to "Unspecified".
23+
* @param value - Value to sanitize.
2424
* @returns the string or sanitized string value.
2525
*/
26-
export function sanitizeString(str: string): string {
27-
if (str === "" || str === null || str === undefined) {
26+
export function sanitizeString(value: unknown): string {
27+
if (value === "" || value === null || value === undefined) {
2828
return "Unspecified";
2929
} else {
30-
return str;
30+
return String(value);
3131
}
3232
}
3333

3434
/**
35-
* Sanitizes a string array for display i.e. any string element within the string array that is an empty, null or
35+
* Sanitizes array elements to strings for display i.e. any element within the string array that is an empty, null or
3636
* undefined value is sanitized to "Unspecified".
37-
* @param strArray - String array to sanitize.
37+
* @param array - Array to sanitize.
3838
* @returns the string array, sanitized.
3939
*/
40-
export function sanitizeStringArray(strArray: string[]): string[] {
41-
if (!strArray || strArray.length === 0) {
40+
export function sanitizeStringArray(array: unknown[]): string[] {
41+
if (!array || array.length === 0) {
4242
return ["Unspecified"];
4343
}
44-
return strArray.map(sanitizeString);
44+
return array.map(sanitizeString);
4545
}

‎src/views/ExploreView/exploreView.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export const ExploreView = (props: ExploreViewProps): JSX.Element => {
114114
if (selected) {
115115
track(EVENT_NAME.FILTER_SELECTED, {
116116
[EVENT_PARAM.FILTER_NAME]: categoryKey,
117-
[EVENT_PARAM.FILTER_VALUE]: selectedCategoryValue,
117+
[EVENT_PARAM.FILTER_VALUE]: String(selectedCategoryValue),
118118
});
119119
}
120120
};

0 commit comments

Comments
 (0)