mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b78e83d81b
* chore: workspace view icon consistency * chore: icon added in breadcrumb dropdown * chore: svg image replaced with webp * fix: build fix * chore: unused variables removed * chore: module sidebar copy module link fix
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import Link from "next/link";
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
// icons
|
|
import { PhotoFilterIcon } from "@plane/ui";
|
|
// 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;
|
|
|
|
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 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="grid h-10 w-10 place-items-center rounded bg-custom-background-90 group-hover:bg-custom-background-100">
|
|
<PhotoFilterIcon className="h-3.5 w-3.5" />
|
|
</div>
|
|
<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>
|
|
);
|
|
});
|