Skip to content
Snippets Groups Projects
Unverified Commit 54485cc8 authored by Oisin Coveney's avatar Oisin Coveney Committed by GitHub
Browse files

Reorder type filter elements for Search (#35055)

parent adb2df0c
No related branches found
No related tags found
No related merge requests found
/* eslint-disable react/prop-types */
import { useState } from "react";
import { enabledSearchTypes } from "metabase/search/constants";
import type { SearchFilterDropdown } from "metabase/search/types";
import { useSearchListQuery } from "metabase/common/hooks";
import { Checkbox, Stack } from "metabase/ui";
import { getTranslatedEntityName } from "metabase/common/utils/model-names";
import type { EnabledSearchModelType } from "metabase-types/api";
import { SearchFilterPopoverWrapper } from "metabase/search/components/SearchFilterPopoverWrapper";
import { filterEnabledSearchTypes } from "metabase/search/utils";
const EMPTY_SEARCH_QUERY = { models: "dataset", limit: 1 } as const;
export const TypeFilterContent: SearchFilterDropdown<"type">["ContentComponent"] =
......@@ -20,7 +20,9 @@ export const TypeFilterContent: SearchFilterDropdown<"type">["ContentComponent"]
>(value ?? []);
const availableModels = (metadata && metadata.available_models) ?? [];
const typeFilters = filterEnabledSearchTypes(availableModels);
const typeFilters = enabledSearchTypes.filter(type =>
availableModels.includes(type),
);
return (
<SearchFilterPopoverWrapper
......@@ -39,6 +41,9 @@ export const TypeFilterContent: SearchFilterDropdown<"type">["ContentComponent"]
<Stack spacing="md" p="md" justify="center" align="flex-start">
{typeFilters.map(model => (
<Checkbox
wrapperProps={{
"data-testid": "type-filter-checkbox",
}}
key={model}
value={model}
label={getTranslatedEntityName(model)}
......
......@@ -28,12 +28,12 @@ const MODEL_NAME: Record<EnabledSearchModelType, string> = {
};
const TEST_TYPES: Array<EnabledSearchModelType> = [
"collection",
"dashboard",
"card",
"dataset",
"collection",
"database",
"table",
"dataset",
"action",
];
......@@ -102,15 +102,23 @@ const setup = async ({
const getCheckboxes = () => {
return within(screen.getByTestId("type-filter-checkbox-group")).getAllByRole(
"checkbox",
{},
) as HTMLInputElement[];
};
describe("TypeFilterContent", () => {
it("should display `Type` and all type labels", async () => {
it("should display `Type` and all type labels in order", async () => {
await setup();
for (const entityType of TEST_TYPES) {
expect(screen.getByText(MODEL_NAME[entityType])).toBeInTheDocument();
}
const typeFilterElements = screen.getAllByTestId("type-filter-checkbox");
TEST_TYPES.forEach((type, index) => {
const checkboxWrapper = within(typeFilterElements[index]);
const checkboxValue = checkboxWrapper
.getByRole("checkbox")
.getAttribute("value");
expect(checkboxValue).toEqual(type);
expect(
checkboxWrapper.getByLabelText(MODEL_NAME[type]),
).toBeInTheDocument();
});
});
it("should only display available types", async () => {
......
......@@ -11,11 +11,11 @@ export const SearchFilterKeys = {
} as const;
export const enabledSearchTypes: EnabledSearchModelType[] = [
"collection",
"dashboard",
"card",
"dataset",
"collection",
"database",
"table",
"dataset",
"action",
];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment