2022-08-03 12:12:07 +00:00
|
|
|
import { useEffect, useMemo, useState } from "react";
|
2022-03-16 09:39:58 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { Controller, useFieldArray, useFormContext } from "react-hook-form";
|
|
|
|
import {
|
|
|
|
Button,
|
|
|
|
Select,
|
|
|
|
SelectOption,
|
|
|
|
SelectVariant,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
import {
|
|
|
|
TableComposable,
|
|
|
|
Tbody,
|
|
|
|
Td,
|
|
|
|
Th,
|
|
|
|
Thead,
|
|
|
|
Tr,
|
|
|
|
} from "@patternfly/react-table";
|
|
|
|
import { MinusCircleIcon, PlusCircleIcon } from "@patternfly/react-icons";
|
2022-04-21 15:03:26 +00:00
|
|
|
import { camelCase } from "lodash-es";
|
2022-03-16 09:39:58 +00:00
|
|
|
|
|
|
|
import type ResourceRepresentation from "@keycloak/keycloak-admin-client/lib/defs/resourceRepresentation";
|
|
|
|
import { defaultContextAttributes } from "../utils";
|
2022-04-21 15:03:26 +00:00
|
|
|
import { KeycloakTextInput } from "../../components/keycloak-text-input/KeycloakTextInput";
|
2022-03-16 09:39:58 +00:00
|
|
|
|
2022-04-20 17:11:46 +00:00
|
|
|
import "./key-based-attribute-input.css";
|
2022-03-16 09:39:58 +00:00
|
|
|
|
|
|
|
export type AttributeType = {
|
|
|
|
key?: string;
|
|
|
|
name: string;
|
|
|
|
custom?: boolean;
|
|
|
|
values?: {
|
|
|
|
[key: string]: string;
|
|
|
|
}[];
|
|
|
|
};
|
|
|
|
|
|
|
|
type AttributeInputProps = {
|
|
|
|
name: string;
|
|
|
|
selectableValues?: AttributeType[];
|
|
|
|
resources?: ResourceRepresentation[];
|
|
|
|
};
|
|
|
|
|
|
|
|
type ValueInputProps = {
|
|
|
|
name: string;
|
|
|
|
rowIndex: number;
|
|
|
|
attribute: any;
|
|
|
|
selectableValues?: AttributeType[];
|
|
|
|
resources?: ResourceRepresentation[];
|
|
|
|
};
|
|
|
|
|
|
|
|
const ValueInput = ({
|
|
|
|
name,
|
|
|
|
rowIndex,
|
|
|
|
attribute,
|
|
|
|
selectableValues,
|
|
|
|
resources,
|
|
|
|
}: ValueInputProps) => {
|
|
|
|
const { t } = useTranslation("common");
|
|
|
|
const { control, register, getValues } = useFormContext();
|
|
|
|
const [isValueOpenArray, setIsValueOpenArray] = useState([false]);
|
|
|
|
|
|
|
|
const toggleValueSelect = (rowIndex: number, open: boolean) => {
|
|
|
|
const arr = [...isValueOpenArray];
|
|
|
|
arr[rowIndex] = open;
|
|
|
|
setIsValueOpenArray(arr);
|
|
|
|
};
|
|
|
|
|
2022-04-20 19:10:30 +00:00
|
|
|
const attributeValues = useMemo(() => {
|
|
|
|
let values: AttributeType[] | undefined = [];
|
2022-03-16 09:39:58 +00:00
|
|
|
|
2022-04-20 19:10:30 +00:00
|
|
|
if (selectableValues) {
|
|
|
|
values = defaultContextAttributes.find(
|
|
|
|
(attr) => attr.key === getValues().context?.[rowIndex]?.key
|
|
|
|
)?.values;
|
|
|
|
}
|
2022-03-16 09:39:58 +00:00
|
|
|
|
2022-04-20 19:10:30 +00:00
|
|
|
return values;
|
|
|
|
}, [getValues]);
|
2022-03-16 09:39:58 +00:00
|
|
|
|
|
|
|
const renderSelectOptionType = () => {
|
2022-04-20 19:10:30 +00:00
|
|
|
const scopeValues = resources?.find(
|
|
|
|
(resource) => resource.name === getValues().resources?.[rowIndex]?.key
|
|
|
|
)?.scopes;
|
|
|
|
|
2022-03-16 09:39:58 +00:00
|
|
|
if (attributeValues?.length && !resources) {
|
|
|
|
return attributeValues.map((attr) => (
|
|
|
|
<SelectOption key={attr.key} value={attr.key}>
|
|
|
|
{attr.name}
|
|
|
|
</SelectOption>
|
|
|
|
));
|
|
|
|
} else if (scopeValues?.length) {
|
|
|
|
return scopeValues.map((scope) => (
|
|
|
|
<SelectOption key={scope.name} value={scope.name}>
|
|
|
|
{scope.name}
|
|
|
|
</SelectOption>
|
|
|
|
));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const getMessageBundleKey = (attributeName: string) =>
|
|
|
|
camelCase(attributeName).replace(/\W/g, "");
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Td>
|
|
|
|
{resources || attributeValues?.length ? (
|
|
|
|
<Controller
|
|
|
|
name={`${name}[${rowIndex}].value`}
|
|
|
|
defaultValue={[]}
|
|
|
|
control={control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Select
|
|
|
|
id={`${attribute.id}-value`}
|
|
|
|
className="kc-attribute-value-selectable"
|
|
|
|
name={`${name}[${rowIndex}].value`}
|
|
|
|
chipGroupProps={{
|
|
|
|
numChips: 1,
|
|
|
|
expandedText: t("common:hide"),
|
|
|
|
collapsedText: t("common:showRemaining"),
|
|
|
|
}}
|
|
|
|
toggleId={`group-${name}`}
|
|
|
|
onToggle={(open) => toggleValueSelect(rowIndex, open)}
|
|
|
|
isOpen={isValueOpenArray[rowIndex]}
|
|
|
|
variant={SelectVariant.typeahead}
|
|
|
|
typeAheadAriaLabel={t("clients:selectOrTypeAKey")}
|
|
|
|
placeholderText={t("clients:selectOrTypeAKey")}
|
|
|
|
selections={value}
|
|
|
|
onSelect={(_, v) => {
|
|
|
|
onChange(v);
|
|
|
|
|
|
|
|
toggleValueSelect(rowIndex, false);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{renderSelectOptionType()}
|
|
|
|
</Select>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
) : (
|
2022-04-21 15:03:26 +00:00
|
|
|
<KeycloakTextInput
|
2022-03-16 09:39:58 +00:00
|
|
|
id={`${getMessageBundleKey(attribute.key)}-value`}
|
|
|
|
className="value-input"
|
|
|
|
name={`${name}[${rowIndex}].value`}
|
|
|
|
ref={register()}
|
|
|
|
defaultValue={attribute.value}
|
|
|
|
data-testid="attribute-value-input"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Td>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const KeyBasedAttributeInput = ({
|
|
|
|
name,
|
|
|
|
selectableValues,
|
|
|
|
resources,
|
|
|
|
}: AttributeInputProps) => {
|
|
|
|
const { t } = useTranslation("common");
|
|
|
|
const { control, watch } = useFormContext();
|
|
|
|
const { fields, append, remove } = useFieldArray({
|
|
|
|
control: control,
|
|
|
|
name,
|
|
|
|
});
|
|
|
|
|
|
|
|
const [isKeyOpenArray, setIsKeyOpenArray] = useState([false]);
|
|
|
|
const toggleKeySelect = (rowIndex: number, open: boolean) => {
|
|
|
|
const arr = [...isKeyOpenArray];
|
|
|
|
arr[rowIndex] = open;
|
|
|
|
setIsKeyOpenArray(arr);
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!fields.length) {
|
2022-04-20 19:10:30 +00:00
|
|
|
append({ key: "", value: "" }, false);
|
2022-03-16 09:39:58 +00:00
|
|
|
}
|
|
|
|
}, [fields]);
|
|
|
|
|
|
|
|
const watchLastValue = watch(`${name}[${fields.length - 1}].value`, "");
|
|
|
|
|
|
|
|
return (
|
|
|
|
<TableComposable
|
|
|
|
className="kc-attributes__table"
|
|
|
|
aria-label="Role attribute keys and values"
|
|
|
|
variant="compact"
|
|
|
|
borders={false}
|
|
|
|
>
|
|
|
|
<Thead>
|
|
|
|
<Tr>
|
|
|
|
<Th id="key" width={40}>
|
|
|
|
{t("key")}
|
|
|
|
</Th>
|
|
|
|
<Th id="value" width={40}>
|
|
|
|
{t("value")}
|
|
|
|
</Th>
|
|
|
|
</Tr>
|
|
|
|
</Thead>
|
|
|
|
<Tbody>
|
|
|
|
{fields.map((attribute, rowIndex) => (
|
|
|
|
<Tr key={attribute.id} data-testid="attribute-row">
|
|
|
|
<Td>
|
|
|
|
<Controller
|
|
|
|
name={`${name}[${rowIndex}].key`}
|
|
|
|
defaultValue={attribute.key}
|
|
|
|
control={control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Select
|
|
|
|
id={`${name}[${rowIndex}].key`}
|
|
|
|
className="kc-attribute-key-selectable"
|
|
|
|
name={`${name}[${rowIndex}].key`}
|
|
|
|
toggleId={`group-${name}`}
|
|
|
|
onToggle={(open) => toggleKeySelect(rowIndex, open)}
|
|
|
|
isOpen={isKeyOpenArray[rowIndex]}
|
|
|
|
variant={SelectVariant.typeahead}
|
|
|
|
typeAheadAriaLabel={t("clients:selectOrTypeAKey")}
|
|
|
|
placeholderText={t("clients:selectOrTypeAKey")}
|
|
|
|
selections={value}
|
|
|
|
onSelect={(_, v) => {
|
|
|
|
onChange(v.toString());
|
|
|
|
|
|
|
|
toggleKeySelect(rowIndex, false);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{selectableValues?.map((attribute) => (
|
|
|
|
<SelectOption
|
|
|
|
selected={attribute.name === value}
|
|
|
|
key={attribute.key}
|
|
|
|
value={resources ? attribute.name : attribute.key}
|
|
|
|
>
|
|
|
|
{attribute.name}
|
|
|
|
</SelectOption>
|
|
|
|
))}
|
|
|
|
</Select>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</Td>
|
|
|
|
<ValueInput
|
|
|
|
name={name}
|
|
|
|
attribute={attribute}
|
|
|
|
rowIndex={rowIndex}
|
|
|
|
selectableValues={selectableValues}
|
|
|
|
resources={resources}
|
|
|
|
/>
|
|
|
|
<Td key="minus-button" id={`kc-minus-button-${rowIndex}`}>
|
|
|
|
<Button
|
|
|
|
id={`minus-button-${rowIndex}`}
|
|
|
|
variant="link"
|
|
|
|
className="kc-attributes__minus-icon"
|
|
|
|
onClick={() => remove(rowIndex)}
|
|
|
|
>
|
|
|
|
<MinusCircleIcon />
|
|
|
|
</Button>
|
|
|
|
</Td>
|
|
|
|
</Tr>
|
|
|
|
))}
|
|
|
|
<Tr>
|
|
|
|
<Td>
|
|
|
|
<Button
|
2022-05-23 08:52:06 +00:00
|
|
|
aria-label={t("addAttribute")}
|
2022-03-16 09:39:58 +00:00
|
|
|
id="plus-icon"
|
|
|
|
variant="link"
|
|
|
|
className="kc-attributes__plus-icon"
|
|
|
|
onClick={() => {
|
|
|
|
append({ key: "", value: "" });
|
|
|
|
setIsKeyOpenArray([...isKeyOpenArray, false]);
|
|
|
|
}}
|
|
|
|
icon={<PlusCircleIcon />}
|
|
|
|
isDisabled={!watchLastValue}
|
|
|
|
data-testid="attribute-add-row"
|
|
|
|
>
|
2022-05-23 08:52:06 +00:00
|
|
|
{t("addAttribute")}
|
2022-03-16 09:39:58 +00:00
|
|
|
</Button>
|
|
|
|
</Td>
|
|
|
|
</Tr>
|
|
|
|
</Tbody>
|
|
|
|
</TableComposable>
|
|
|
|
);
|
|
|
|
};
|