keycloak-scim/apps/admin-ui/src/clients/authorization/SearchDropdown.tsx

192 lines
5.1 KiB
TypeScript
Raw Normal View History

import type PolicyProviderRepresentation from "@keycloak/keycloak-admin-client/lib/defs/policyProviderRepresentation";
import {
2022-01-24 14:17:32 +00:00
ActionGroup,
Button,
Dropdown,
DropdownToggle,
Form,
FormGroup,
Select,
SelectOption,
SelectVariant,
} from "@patternfly/react-core";
import { useEffect } from "react";
import { Controller, useForm } from "react-hook-form-v7";
import { useTranslation } from "react-i18next";
import { KeycloakTextInput } from "../../components/keycloak-text-input/KeycloakTextInput";
import useToggle from "../../utils/useToggle";
import "./search-dropdown.css";
2022-01-24 14:17:32 +00:00
export type SearchForm = {
name?: string;
resource?: string;
scope?: string;
type?: string;
uri?: string;
owner?: string;
2022-01-24 14:17:32 +00:00
};
type SearchDropdownProps = {
types?: PolicyProviderRepresentation[] | PolicyProviderRepresentation[];
search: SearchForm;
2022-01-24 14:17:32 +00:00
onSearch: (form: SearchForm) => void;
isResource?: boolean;
};
export const SearchDropdown = ({
types,
search,
onSearch,
isResource = false,
}: SearchDropdownProps) => {
const { t } = useTranslation("clients");
2022-01-24 14:17:32 +00:00
const {
register,
control,
reset,
2022-01-24 14:17:32 +00:00
formState: { isDirty },
handleSubmit,
} = useForm<SearchForm>({ mode: "onChange" });
const [open, toggle] = useToggle();
const [typeOpen, toggleType] = useToggle();
2022-01-24 14:17:32 +00:00
const submit = (form: SearchForm) => {
toggle();
onSearch(form);
};
useEffect(() => reset(search), [search]);
const typeOptions = (value?: string) => [
2022-01-24 14:17:32 +00:00
<SelectOption key="empty" value="">
{t("allTypes")}
</SelectOption>,
...(types || []).map((type) => (
<SelectOption
selected={type.type === value}
key={type.type}
value={type.type}
>
{type.name}
</SelectOption>
)),
];
return (
<Dropdown
data-testid="searchdropdown_dorpdown"
className="pf-u-ml-md"
toggle={
<DropdownToggle
onToggle={toggle}
className="keycloak__client_authentication__searchdropdown"
>
{t("searchForPermission")}
</DropdownToggle>
}
isOpen={open}
>
<Form
isHorizontal
className="keycloak__client_authentication__searchdropdown_form"
2022-01-24 14:17:32 +00:00
onSubmit={handleSubmit(submit)}
>
<FormGroup label={t("common:name")} fieldId="name">
<KeycloakTextInput
id="name"
data-testid="searchdropdown_name"
{...register("name")}
/>
</FormGroup>
{isResource && (
<>
<FormGroup label={t("common:type")} fieldId="type">
<KeycloakTextInput
id="type"
data-testid="searchdropdown_type"
{...register("type")}
/>
</FormGroup>
<FormGroup label={t("uris")} fieldId="uri">
<KeycloakTextInput
id="uri"
data-testid="searchdropdown_uri"
{...register("uri")}
/>
</FormGroup>
<FormGroup label={t("owner")} fieldId="owner">
<KeycloakTextInput
id="owner"
data-testid="searchdropdown_owner"
{...register("owner")}
/>
</FormGroup>
</>
)}
{!isResource && (
<FormGroup label={t("resource")} fieldId="resource">
<KeycloakTextInput
id="resource"
data-testid="searchdropdown_resource"
{...register("resource")}
/>
</FormGroup>
)}
2022-01-24 14:17:32 +00:00
<FormGroup label={t("scope")} fieldId="scope">
<KeycloakTextInput
2022-01-24 14:17:32 +00:00
id="scope"
data-testid="searchdropdown_scope"
{...register("scope")}
2022-01-24 14:17:32 +00:00
/>
</FormGroup>
{!isResource && (
<FormGroup label={t("common:type")} fieldId="type">
<Controller
name="type"
defaultValue=""
control={control}
render={({ field }) => (
<Select
toggleId="type"
onToggle={toggleType}
onSelect={(event, value) => {
event.stopPropagation();
field.onChange(value);
toggleType();
}}
selections={field.value || t("allTypes")}
variant={SelectVariant.single}
aria-label={t("common:type")}
isOpen={typeOpen}
>
{typeOptions(field.value)}
</Select>
)}
/>
</FormGroup>
)}
2022-01-24 14:17:32 +00:00
<ActionGroup>
<Button
variant="primary"
type="submit"
data-testid="search-btn"
isDisabled={!isDirty}
>
{t("common:search")}
</Button>
<Button
variant="link"
data-testid="revert-btn"
onClick={() => onSearch({})}
>
{t("common:clear")}
</Button>
</ActionGroup>
</Form>
</Dropdown>
);
};