plane/web/components/view/display-properties/root.tsx

51 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-02-02 08:22:38 +00:00
import { FC } from "react";
// types
import { TViewDisplayProperties, TViewTypes } from "@plane/types";
import { TViewOperations } from "../types";
2024-02-02 08:22:38 +00:00
type TViewDisplayPropertiesRoot = {
workspaceSlug: string;
projectId: string | undefined;
viewId: string;
viewType: TViewTypes;
viewOperations: TViewOperations;
2024-02-02 08:22:38 +00:00
};
export const ViewDisplayPropertiesRoot: FC<TViewDisplayPropertiesRoot> = (props) => {
const { workspaceSlug, projectId, viewId, viewType, viewOperations } = props;
const displayProperties: Partial<keyof TViewDisplayProperties>[] = [
"key",
"state",
"labels",
"priority",
"assignee",
"start_date",
"due_date",
"sub_issue_count",
"attachment_count",
"estimate",
"link",
];
2024-02-02 08:22:38 +00:00
return (
<div className="relative flex items-center flex-wrap gap-2">
{displayProperties.map((property) => (
<div
key={property}
className={`relative flex items-center gap-1 text-xs rounded p-0.5 px-2 border transition-all capitalize cursor-pointer
${
false
? `border-custom-primary-100 bg-custom-primary-100`
: `border-custom-border-300 hover:bg-custom-background-80`
}
`}
onClick={() => {}}
>
{["key"].includes(property) ? "ID" : property.replaceAll("_", " ")}
</div>
))}
2024-02-02 08:22:38 +00:00
</div>
);
};