plane/web/components/view/display-properties/root.tsx
2024-02-13 12:28:05 +05:30

48 lines
1.2 KiB
TypeScript

import { FC, Fragment } from "react";
import { observer } from "mobx-react-lite";
// components
import { ViewDisplayPropertySelection } from "../";
// types
import { TViewDisplayProperties, TViewTypes } from "@plane/types";
type TViewDisplayPropertiesRoot = {
workspaceSlug: string;
projectId: string | undefined;
viewId: string;
viewType: TViewTypes;
};
export const ViewDisplayPropertiesRoot: FC<TViewDisplayPropertiesRoot> = observer((props) => {
const { workspaceSlug, projectId, viewId, viewType } = props;
const displayProperties: Partial<keyof TViewDisplayProperties>[] = [
"key",
"state",
"labels",
"priority",
"assignee",
"start_date",
"due_date",
"sub_issue_count",
"attachment_count",
"estimate",
"link",
];
return (
<div className="relative flex items-center flex-wrap gap-2">
{displayProperties.map((property) => (
<Fragment key={property}>
<ViewDisplayPropertySelection
workspaceSlug={workspaceSlug}
projectId={projectId}
viewId={viewId}
viewType={viewType}
property={property}
/>
</Fragment>
))}
</div>
);
});