mirror of
https://github.com/fleetdm/fleet
synced 2026-05-19 06:58:30 +00:00
## For #29721 - Build the new Labels page - Forward to the Labels page after saving a label ### [Demo video](https://drive.google.com/file/d/1iArnSiVn7CSwOpCrKEdO9HByHu9qga3L/view?usp=sharing) <img width="1798" height="1082" alt="Screenshot 2025-09-17 at 4 00 55 PM" src="https://github.com/user-attachments/assets/6a51f48c-07c3-44d9-b2bf-07025ffa61ed" /> - [x] Changes file added for user-visible changes in `changes/` - [x] Added/updated automated tests - [x] QA'd all new/changed functionality manually --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
169 lines
4 KiB
TypeScript
169 lines
4 KiB
TypeScript
import React from "react";
|
|
import { ILabel } from "interfaces/label";
|
|
import { IDropdownOption } from "interfaces/dropdownOption";
|
|
|
|
import TextCell from "components/TableContainer/DataTable/TextCell";
|
|
import ActionsDropdown from "components/ActionsDropdown";
|
|
import {
|
|
isGlobalAdmin,
|
|
isGlobalMaintainer,
|
|
isAnyTeamMaintainerOrTeamAdmin,
|
|
} from "utilities/permissions/permissions";
|
|
import { IUser } from "interfaces/user";
|
|
import { capitalize } from "lodash";
|
|
import HeaderCell from "components/TableContainer/DataTable/HeaderCell";
|
|
import ViewAllHostsLink from "components/ViewAllHostsLink";
|
|
|
|
interface IHeaderProps {
|
|
column: {
|
|
title: string;
|
|
isSortedDesc: boolean;
|
|
};
|
|
}
|
|
|
|
interface IRowProps {
|
|
row: {
|
|
original: ILabel;
|
|
};
|
|
}
|
|
|
|
interface ICellProps extends IRowProps {
|
|
cell: {
|
|
value: string;
|
|
};
|
|
}
|
|
|
|
interface IDropdownCellProps extends IRowProps {
|
|
cell: {
|
|
value: IDropdownOption[];
|
|
};
|
|
}
|
|
|
|
interface IDataColumn {
|
|
title: string;
|
|
Header: ((props: IHeaderProps) => JSX.Element) | string;
|
|
accessor: string;
|
|
Cell:
|
|
| ((props: ICellProps) => JSX.Element)
|
|
| ((props: IDropdownCellProps) => JSX.Element);
|
|
disableHidden?: boolean;
|
|
disableSortBy?: boolean;
|
|
sortType?: string;
|
|
}
|
|
|
|
const generateActionDropdownOptions = (
|
|
currentUser: IUser,
|
|
label: ILabel
|
|
): IDropdownOption[] => {
|
|
const options: IDropdownOption[] = [
|
|
{
|
|
label: "View all hosts",
|
|
disabled: false,
|
|
value: "view_hosts",
|
|
},
|
|
];
|
|
|
|
const hasGlobalWritePermission =
|
|
isGlobalAdmin(currentUser) || isGlobalMaintainer(currentUser);
|
|
|
|
const hasLabelAuthorWritePermission =
|
|
isAnyTeamMaintainerOrTeamAdmin(currentUser) &&
|
|
label.author_id === currentUser.id;
|
|
|
|
if (hasGlobalWritePermission || hasLabelAuthorWritePermission) {
|
|
options.push(
|
|
{
|
|
label: "Edit",
|
|
disabled: false,
|
|
value: "edit",
|
|
},
|
|
{
|
|
label: "Delete",
|
|
disabled: false,
|
|
value: "delete",
|
|
}
|
|
);
|
|
}
|
|
|
|
return options;
|
|
};
|
|
|
|
const generateTableHeaders = (
|
|
currentUser: IUser,
|
|
onClickAction: (action: string, label: ILabel) => void
|
|
): IDataColumn[] => {
|
|
return [
|
|
{
|
|
title: "Name",
|
|
Header: (cellProps) => (
|
|
<HeaderCell
|
|
value={cellProps.column.title}
|
|
isSortedDesc={cellProps.column.isSortedDesc}
|
|
/>
|
|
),
|
|
accessor: "name",
|
|
disableSortBy: false,
|
|
Cell: (cellProps: ICellProps) => (
|
|
<TextCell value={cellProps.cell.value} />
|
|
),
|
|
},
|
|
{
|
|
title: "Description",
|
|
Header: (cellProps) => (
|
|
<HeaderCell
|
|
value={cellProps.column.title}
|
|
isSortedDesc={cellProps.column.isSortedDesc}
|
|
/>
|
|
),
|
|
accessor: "description",
|
|
Cell: (cellProps: ICellProps) => (
|
|
<TextCell value={cellProps.cell.value || ""} />
|
|
),
|
|
},
|
|
{
|
|
title: "Type",
|
|
Header: (cellProps) => (
|
|
<HeaderCell
|
|
value={cellProps.column.title}
|
|
isSortedDesc={cellProps.column.isSortedDesc}
|
|
/>
|
|
),
|
|
accessor: "label_membership_type",
|
|
Cell: (cellProps: ICellProps) => (
|
|
<TextCell value={capitalize(cellProps.cell.value)} />
|
|
),
|
|
},
|
|
{
|
|
title: "Actions",
|
|
Header: "",
|
|
disableSortBy: true,
|
|
accessor: "actions",
|
|
Cell: (cellProps: IDropdownCellProps) => {
|
|
const label = cellProps.row.original;
|
|
const dropdownOptions = generateActionDropdownOptions(
|
|
currentUser,
|
|
label
|
|
);
|
|
return (
|
|
<ViewAllHostsLink
|
|
rowHover
|
|
noLink
|
|
excludeChevron
|
|
customContent={
|
|
<ActionsDropdown
|
|
options={dropdownOptions}
|
|
onChange={(value: string) => onClickAction(value, label)}
|
|
placeholder="Actions"
|
|
/>
|
|
}
|
|
/>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
};
|
|
|
|
const generateDataSet = (labels: ILabel[]) =>
|
|
labels.filter((label) => label.label_type !== "builtin");
|
|
|
|
export { generateTableHeaders, generateDataSet };
|