mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
// helpers
|
|
import { truncateText } from "helpers/string.helper";
|
|
|
|
type Props = { view: { key: string; label: string } };
|
|
|
|
export const GlobalDefaultViewListItem: React.FC<Props> = observer((props) => {
|
|
const { view } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
return (
|
|
<div className="group border-b border-custom-border-200 hover:bg-custom-background-90">
|
|
<Link href={`/${workspaceSlug}/workspace-views/${view.key}`}>
|
|
<div className="relative flex w-full h-[52px] items-center justify-between rounded px-5 py-4">
|
|
<div className="flex w-full items-center justify-between">
|
|
<div className="flex items-center gap-4">
|
|
<div className="flex flex-col">
|
|
<p className="truncate text-sm font-medium leading-4">{truncateText(view.label, 75)}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
);
|
|
});
|