Added filter (#2224)
This commit is contained in:
parent
c73b4d2432
commit
4ca905d667
2 changed files with 88 additions and 82 deletions
|
@ -372,6 +372,7 @@ export default {
|
||||||
updateMessageBundleSuccess: "Success! Message bundle updated.",
|
updateMessageBundleSuccess: "Success! Message bundle updated.",
|
||||||
updateMessageBundleError: "Error updating message bundle.",
|
updateMessageBundleError: "Error updating message bundle.",
|
||||||
addMessageBundleError: "Error creating message bundle, {{error}}",
|
addMessageBundleError: "Error creating message bundle, {{error}}",
|
||||||
|
allGroups: "All groups",
|
||||||
attributeName: "Name",
|
attributeName: "Name",
|
||||||
attributeDisplayName: "Display name",
|
attributeDisplayName: "Display name",
|
||||||
attributeGroup: "Attribute group",
|
attributeGroup: "Attribute group",
|
||||||
|
|
|
@ -4,19 +4,24 @@ import {
|
||||||
Button,
|
Button,
|
||||||
ButtonVariant,
|
ButtonVariant,
|
||||||
Divider,
|
Divider,
|
||||||
Dropdown,
|
Select,
|
||||||
DropdownItem,
|
SelectOption,
|
||||||
KebabToggle,
|
SelectVariant,
|
||||||
|
Toolbar,
|
||||||
|
ToolbarContent,
|
||||||
ToolbarItem,
|
ToolbarItem,
|
||||||
} from "@patternfly/react-core";
|
} from "@patternfly/react-core";
|
||||||
|
import { FilterIcon } from "@patternfly/react-icons";
|
||||||
|
|
||||||
|
import type { UserProfileAttribute } from "@keycloak/keycloak-admin-client/lib/defs/userProfileConfig";
|
||||||
import { KeycloakSpinner } from "../../components/keycloak-spinner/KeycloakSpinner";
|
import { KeycloakSpinner } from "../../components/keycloak-spinner/KeycloakSpinner";
|
||||||
import { DraggableTable } from "../../authentication/components/DraggableTable";
|
import { DraggableTable } from "../../authentication/components/DraggableTable";
|
||||||
import type { UserProfileAttribute } from "@keycloak/keycloak-admin-client/lib/defs/userProfileConfig";
|
import { Link, useHistory } from "react-router-dom";
|
||||||
import { useHistory } from "react-router-dom";
|
|
||||||
import { toAddAttribute } from "../routes/AddAttribute";
|
import { toAddAttribute } from "../routes/AddAttribute";
|
||||||
import { useRealm } from "../../context/realm-context/RealmContext";
|
import { useRealm } from "../../context/realm-context/RealmContext";
|
||||||
import { useUserProfile } from "./UserProfileContext";
|
import { useUserProfile } from "./UserProfileContext";
|
||||||
import { useConfirmDialog } from "../../components/confirm-dialog/ConfirmDialog";
|
import { useConfirmDialog } from "../../components/confirm-dialog/ConfirmDialog";
|
||||||
|
import useToggle from "../../utils/useToggle";
|
||||||
|
|
||||||
type movedAttributeType = UserProfileAttribute;
|
type movedAttributeType = UserProfileAttribute;
|
||||||
|
|
||||||
|
@ -25,12 +30,12 @@ export const AttributesTab = () => {
|
||||||
const { realm: realmName } = useRealm();
|
const { realm: realmName } = useRealm();
|
||||||
const { t } = useTranslation("realm-settings");
|
const { t } = useTranslation("realm-settings");
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
|
const [filter, setFilter] = useState("allGroups");
|
||||||
|
const [isFilterTypeDropdownOpen, toggleIsFilterTypeDropdownOpen] =
|
||||||
|
useToggle();
|
||||||
|
const [data, setData] = useState(config?.attributes);
|
||||||
const [attributeToDelete, setAttributeToDelete] =
|
const [attributeToDelete, setAttributeToDelete] =
|
||||||
useState<{ name: string }>();
|
useState<{ name: string }>();
|
||||||
const [kebabOpen, setKebabOpen] = useState({
|
|
||||||
status: false,
|
|
||||||
rowKey: "",
|
|
||||||
});
|
|
||||||
|
|
||||||
const executeMove = async (
|
const executeMove = async (
|
||||||
attribute: UserProfileAttribute,
|
attribute: UserProfileAttribute,
|
||||||
|
@ -81,23 +86,67 @@ export const AttributesTab = () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!config) {
|
if (!config?.attributes) {
|
||||||
return <KeycloakSpinner />;
|
return <KeycloakSpinner />;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="pf-u-mt-md pf-u-mb-md pf-u-ml-md">
|
<Toolbar>
|
||||||
|
<ToolbarContent>
|
||||||
|
<ToolbarItem>
|
||||||
|
<Select
|
||||||
|
width={200}
|
||||||
|
data-testid="filter-select"
|
||||||
|
isOpen={isFilterTypeDropdownOpen}
|
||||||
|
variant={SelectVariant.single}
|
||||||
|
onToggle={toggleIsFilterTypeDropdownOpen}
|
||||||
|
toggleIcon={<FilterIcon />}
|
||||||
|
onSelect={(_, value) => {
|
||||||
|
const filter = value.toString();
|
||||||
|
setFilter(filter);
|
||||||
|
setData(
|
||||||
|
filter === "allGroups"
|
||||||
|
? config.attributes
|
||||||
|
: config.attributes?.filter((attr) => attr.group === filter)
|
||||||
|
);
|
||||||
|
toggleIsFilterTypeDropdownOpen();
|
||||||
|
}}
|
||||||
|
selections={filter === "allGroups" ? t(filter) : filter}
|
||||||
|
>
|
||||||
|
{[
|
||||||
|
<SelectOption
|
||||||
|
key="allGroups"
|
||||||
|
data-testid="all-groups"
|
||||||
|
value="allGroups"
|
||||||
|
>
|
||||||
|
{t("allGroups")}
|
||||||
|
</SelectOption>,
|
||||||
|
...config
|
||||||
|
.attributes!.filter((attr) => !!attr.group)
|
||||||
|
.map((attr) => (
|
||||||
|
<SelectOption
|
||||||
|
key={attr.group}
|
||||||
|
data-testid={`${attr.group}-option`}
|
||||||
|
value={attr.group}
|
||||||
|
/>
|
||||||
|
)),
|
||||||
|
]}
|
||||||
|
</Select>
|
||||||
|
</ToolbarItem>
|
||||||
<ToolbarItem className="kc-toolbar-attributesTab">
|
<ToolbarItem className="kc-toolbar-attributesTab">
|
||||||
<Button
|
<Button
|
||||||
data-testid="createAttributeBtn"
|
data-testid="createAttributeBtn"
|
||||||
variant="primary"
|
variant="primary"
|
||||||
onClick={goToCreate}
|
component={(props) => (
|
||||||
|
<Link {...props} to={toAddAttribute({ realm: realmName })} />
|
||||||
|
)}
|
||||||
>
|
>
|
||||||
{t("createAttribute")}
|
{t("createAttribute")}
|
||||||
</Button>
|
</Button>
|
||||||
</ToolbarItem>
|
</ToolbarItem>
|
||||||
</div>
|
</ToolbarContent>
|
||||||
|
</Toolbar>
|
||||||
<Divider />
|
<Divider />
|
||||||
<DeleteConfirm />
|
<DeleteConfirm />
|
||||||
<DraggableTable
|
<DraggableTable
|
||||||
|
@ -111,10 +160,26 @@ export const AttributesTab = () => {
|
||||||
|
|
||||||
executeMove(dragged, newIndex);
|
executeMove(dragged, newIndex);
|
||||||
}}
|
}}
|
||||||
|
actions={[
|
||||||
|
{
|
||||||
|
title: t("common:edit"),
|
||||||
|
onClick: goToCreate,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: t("common:delete"),
|
||||||
|
onClick: (_key, _idx, component) => {
|
||||||
|
setAttributeToDelete(component.name);
|
||||||
|
toggleDeleteDialog();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]}
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
name: "name",
|
name: "name",
|
||||||
displayKey: t("attributeName"),
|
displayKey: t("attributeName"),
|
||||||
|
cellRenderer: (row) => (
|
||||||
|
<Link to={toAddAttribute({ realm: realmName })}>{row.name}</Link>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "displayName",
|
name: "displayName",
|
||||||
|
@ -124,68 +189,8 @@ export const AttributesTab = () => {
|
||||||
name: "group",
|
name: "group",
|
||||||
displayKey: t("attributeGroup"),
|
displayKey: t("attributeGroup"),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "",
|
|
||||||
displayKey: "",
|
|
||||||
cellRenderer: (row) => (
|
|
||||||
<Dropdown
|
|
||||||
id={`${row.name}`}
|
|
||||||
label={t("attributesDropdown")}
|
|
||||||
data-testid="actions-dropdown"
|
|
||||||
toggle={
|
|
||||||
<KebabToggle
|
|
||||||
onToggle={(status) =>
|
|
||||||
setKebabOpen({
|
|
||||||
status,
|
|
||||||
rowKey: row.name!,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
id={`toggle-${row.name}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
isOpen={kebabOpen.status && kebabOpen.rowKey === row.name}
|
|
||||||
isPlain
|
|
||||||
dropdownItems={[
|
|
||||||
<DropdownItem
|
|
||||||
key={`edit-dropdown-item-${row.name}`}
|
|
||||||
data-testid="editDropdownAttributeItem"
|
|
||||||
onClick={() => {
|
|
||||||
setKebabOpen({
|
|
||||||
status: false,
|
|
||||||
rowKey: row.name!,
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{t("common:edit")}
|
|
||||||
</DropdownItem>,
|
|
||||||
<Fragment key={`delete-dropdown-${row.name}`}>
|
|
||||||
{row.name !== "email" && row.name !== "username"
|
|
||||||
? [
|
|
||||||
<DropdownItem
|
|
||||||
key={`delete-dropdown-item-${row.name}`}
|
|
||||||
data-testid="deleteDropdownAttributeItem"
|
|
||||||
onClick={() => {
|
|
||||||
toggleDeleteDialog();
|
|
||||||
setAttributeToDelete({
|
|
||||||
name: row.name!,
|
|
||||||
});
|
|
||||||
setKebabOpen({
|
|
||||||
status: false,
|
|
||||||
rowKey: row.name!,
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{t("common:delete")}
|
|
||||||
</DropdownItem>,
|
|
||||||
]
|
|
||||||
: []}
|
|
||||||
</Fragment>,
|
|
||||||
]}
|
]}
|
||||||
/>
|
data={data || config.attributes}
|
||||||
),
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
data={config.attributes!}
|
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue