changed to use on select (#17564)
that separates selection and expansion fixes: keycloak/keycloak-ui#4560
This commit is contained in:
parent
340025b412
commit
6d39c5336a
3 changed files with 44 additions and 14 deletions
|
@ -164,6 +164,8 @@ export default function GroupsSection() {
|
||||||
activeKey={activeTab}
|
activeKey={activeTab}
|
||||||
onSelect={(_, key) => setActiveTab(key as number)}
|
onSelect={(_, key) => setActiveTab(key as number)}
|
||||||
isBox
|
isBox
|
||||||
|
mountOnEnter
|
||||||
|
unmountOnExit
|
||||||
>
|
>
|
||||||
<Tab
|
<Tab
|
||||||
data-testid="groups"
|
data-testid="groups"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { Link } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import {
|
import {
|
||||||
Checkbox,
|
Checkbox,
|
||||||
|
@ -26,6 +26,7 @@ import { useSubGroups } from "../SubGroupsContext";
|
||||||
import { fetchAdminUI } from "../../context/auth/admin-ui-endpoint";
|
import { fetchAdminUI } from "../../context/auth/admin-ui-endpoint";
|
||||||
import { useRealm } from "../../context/realm-context/RealmContext";
|
import { useRealm } from "../../context/realm-context/RealmContext";
|
||||||
import { joinPath } from "../../utils/joinPath";
|
import { joinPath } from "../../utils/joinPath";
|
||||||
|
import { toGroups } from "../routes/Groups";
|
||||||
|
|
||||||
import "./group-tree.css";
|
import "./group-tree.css";
|
||||||
|
|
||||||
|
@ -111,14 +112,17 @@ export const GroupTree = ({
|
||||||
const { t } = useTranslation("groups");
|
const { t } = useTranslation("groups");
|
||||||
const { adminClient } = useAdminClient();
|
const { adminClient } = useAdminClient();
|
||||||
const { realm } = useRealm();
|
const { realm } = useRealm();
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const [data, setData] = useState<TreeViewDataItem[]>();
|
const [data, setData] = useState<TreeViewDataItem[]>();
|
||||||
|
const [groups, setGroups] = useState<GroupRepresentation[]>([]);
|
||||||
const { subGroups, setSubGroups } = useSubGroups();
|
const { subGroups, setSubGroups } = useSubGroups();
|
||||||
|
|
||||||
const [search, setSearch] = useState("");
|
const [search, setSearch] = useState("");
|
||||||
const [max, setMax] = useState(20);
|
const [max, setMax] = useState(20);
|
||||||
const [first, setFirst] = useState(0);
|
const [first, setFirst] = useState(0);
|
||||||
const [exact, setExact] = useState(false);
|
const [exact, setExact] = useState(false);
|
||||||
|
const [activeItem, setActiveItem] = useState<TreeViewDataItem>();
|
||||||
|
|
||||||
const [key, setKey] = useState(0);
|
const [key, setKey] = useState(0);
|
||||||
const refresh = () => {
|
const refresh = () => {
|
||||||
|
@ -133,19 +137,10 @@ export const GroupTree = ({
|
||||||
): TreeViewDataItem => {
|
): TreeViewDataItem => {
|
||||||
const groups = [...parents, group];
|
const groups = [...parents, group];
|
||||||
return {
|
return {
|
||||||
id: group.id,
|
id: joinPath(...groups.map((g) => g.id!)),
|
||||||
name: (
|
name: (
|
||||||
<Tooltip content={group.name}>
|
<Tooltip content={group.name}>
|
||||||
{canViewDetails ? (
|
<span>{group.name}</span>
|
||||||
<Link
|
|
||||||
to={`/${realm}/groups/${joinPath(...groups.map((g) => g.id!))}`}
|
|
||||||
onClick={() => setSubGroups(groups)}
|
|
||||||
>
|
|
||||||
{group.name}
|
|
||||||
</Link>
|
|
||||||
) : (
|
|
||||||
<span>{group.name}</span>
|
|
||||||
)}
|
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
),
|
),
|
||||||
children:
|
children:
|
||||||
|
@ -173,10 +168,31 @@ export const GroupTree = ({
|
||||||
search === "" ? null : { search }
|
search === "" ? null : { search }
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
(groups) => setData(groups.map((g) => mapGroup(g, [], refresh))),
|
(groups) => {
|
||||||
|
setGroups(groups);
|
||||||
|
setData(groups.map((g) => mapGroup(g, [], refresh)));
|
||||||
|
},
|
||||||
[key, first, max, search, exact]
|
[key, first, max, search, exact]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const findGroup = (
|
||||||
|
groups: GroupRepresentation[],
|
||||||
|
id: string,
|
||||||
|
path: GroupRepresentation[],
|
||||||
|
found: GroupRepresentation[]
|
||||||
|
) => {
|
||||||
|
return groups.map((group) => {
|
||||||
|
if (found.length > 0) return;
|
||||||
|
|
||||||
|
if (group.subGroups && group.subGroups.length > 0)
|
||||||
|
findGroup(group.subGroups, id, [...path, group], found);
|
||||||
|
|
||||||
|
if (group.id === id) {
|
||||||
|
found.push(...path, group);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
return data ? (
|
return data ? (
|
||||||
<PaginatingTableToolbar
|
<PaginatingTableToolbar
|
||||||
count={data.length || 0}
|
count={data.length || 0}
|
||||||
|
@ -210,8 +226,20 @@ export const GroupTree = ({
|
||||||
<TreeView
|
<TreeView
|
||||||
data={data}
|
data={data}
|
||||||
allExpanded={search.length > 0}
|
allExpanded={search.length > 0}
|
||||||
|
activeItems={activeItem ? [activeItem] : undefined}
|
||||||
hasGuides
|
hasGuides
|
||||||
|
hasSelectableNodes
|
||||||
className="keycloak_groups_treeview"
|
className="keycloak_groups_treeview"
|
||||||
|
onSelect={(_, item) => {
|
||||||
|
setActiveItem(item);
|
||||||
|
if (canViewDetails) {
|
||||||
|
const id = item.id?.substring(item.id.lastIndexOf("/") + 1);
|
||||||
|
const subGroups: GroupRepresentation[] = [];
|
||||||
|
findGroup(groups, id!, [], subGroups);
|
||||||
|
setSubGroups(subGroups);
|
||||||
|
navigate(toGroups({ realm, id: item.id }));
|
||||||
|
}
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</PaginatingTableToolbar>
|
</PaginatingTableToolbar>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.keycloak_groups_treeview .pf-c-tree-view__node {
|
.keycloak_groups_treeview .pf-c-tree-view__node-text {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
Loading…
Reference in a new issue