forked from github/plane
490e032ac6
* style: new avatar components * chore: bug fixes * chore: add pixel to size * chore: add comments to helper functions * fix: build errors
29 lines
754 B
TypeScript
29 lines
754 B
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
// ui
|
|
import { Avatar } from "@plane/ui";
|
|
|
|
export interface IAssigneesHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
}
|
|
|
|
export const Icon = ({ user }: any) => <Avatar name={user.display_name} src={user.avatar} size="md" />;
|
|
|
|
export const AssigneesHeader: FC<IAssigneesHeader> = observer((props) => {
|
|
const { column_id, column_value, issues_count } = props;
|
|
|
|
const assignee = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{assignee && (
|
|
<HeaderGroupByCard icon={<Icon user={assignee} />} title={assignee?.display_name || ""} count={issues_count} />
|
|
)}
|
|
</>
|
|
);
|
|
});
|