Added tooltip and styling to group name (#4044)
This commit is contained in:
parent
fb5b62d267
commit
c9c8fe7317
2 changed files with 23 additions and 8 deletions
|
@ -9,6 +9,7 @@ import {
|
|||
DropdownSeparator,
|
||||
InputGroup,
|
||||
KebabToggle,
|
||||
Tooltip,
|
||||
TreeView,
|
||||
TreeViewDataItem,
|
||||
} from "@patternfly/react-core";
|
||||
|
@ -26,6 +27,8 @@ import { fetchAdminUI } from "../../context/auth/admin-ui-endpoint";
|
|||
import { useRealm } from "../../context/realm-context/RealmContext";
|
||||
import { joinPath } from "../../utils/joinPath";
|
||||
|
||||
import "./group-tree.css";
|
||||
|
||||
type GroupTreeContextMenuProps = {
|
||||
group: GroupRepresentation;
|
||||
refresh: () => void;
|
||||
|
@ -128,13 +131,14 @@ export const GroupTree = ({ refresh: viewRefresh }: GroupTreeProps) => {
|
|||
return {
|
||||
id: group.id,
|
||||
name: (
|
||||
<Tooltip content={group.name}>
|
||||
<Link
|
||||
key={group.id}
|
||||
to={`/${realm}/groups/${joinPath(...groups.map((g) => g.id!))}`}
|
||||
onClick={() => setSubGroups(groups)}
|
||||
>
|
||||
{group.name}
|
||||
</Link>
|
||||
</Tooltip>
|
||||
),
|
||||
children:
|
||||
group.subGroups && group.subGroups.length > 0
|
||||
|
@ -191,7 +195,12 @@ export const GroupTree = ({ refresh: viewRefresh }: GroupTreeProps) => {
|
|||
}
|
||||
>
|
||||
{data.length > 0 && (
|
||||
<TreeView data={data} allExpanded={search.length > 0} hasGuides />
|
||||
<TreeView
|
||||
data={data}
|
||||
allExpanded={search.length > 0}
|
||||
hasGuides
|
||||
className="keycloak_groups_treeview"
|
||||
/>
|
||||
)}
|
||||
</PaginatingTableToolbar>
|
||||
) : (
|
||||
|
|
6
apps/admin-ui/src/groups/components/group-tree.css
Normal file
6
apps/admin-ui/src/groups/components/group-tree.css
Normal file
|
@ -0,0 +1,6 @@
|
|||
.keycloak_groups_treeview .pf-c-tree-view__node {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: block;
|
||||
}
|
Loading…
Reference in a new issue