Some checks failed
Branch Build CE / Build Setup (push) Has been cancelled
Branch Build CE / Build-Push Admin Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Web Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Space Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Live Collaboration Docker Image (push) Has been cancelled
Branch Build CE / Build-Push API Server Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Proxy Docker Image (push) Has been cancelled
Branch Build CE / Build-Push AIO Docker Image (push) Has been cancelled
Branch Build CE / Upload Build Assets (push) Has been cancelled
Branch Build CE / Build Release (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Sync Repositories / sync_changes (push) Has been cancelled
Synced from upstream: 8853637e981ed7d8a6cff32bd98e7afe20f54362
85 lines
2.5 KiB
TypeScript
85 lines
2.5 KiB
TypeScript
// next
|
|
import React from "react";
|
|
import Link from "next/link";
|
|
import { ChevronRightIcon } from "@plane/propel/icons";
|
|
|
|
type EmptySpaceProps = {
|
|
title: string;
|
|
description: string;
|
|
children: any;
|
|
Icon?: any;
|
|
link?: { text: string; href: string };
|
|
};
|
|
|
|
const EmptySpace: React.FC<EmptySpaceProps> = ({ title, description, children, Icon, link }) => (
|
|
<>
|
|
<div className="max-w-lg">
|
|
{Icon ? (
|
|
<div className="mb-4">
|
|
<Icon className="h-14 w-14 text-custom-text-200" />
|
|
</div>
|
|
) : null}
|
|
|
|
<h2 className="text-lg font-medium text-custom-text-100">{title}</h2>
|
|
<div className="mt-1 text-sm text-custom-text-200">{description}</div>
|
|
<ul role="list" className="mt-6 divide-y divide-custom-border-200 border-b border-t border-custom-border-200">
|
|
{children}
|
|
</ul>
|
|
{link ? (
|
|
<div className="mt-6 flex">
|
|
<Link href={link.href}>
|
|
<span className="text-sm font-medium text-custom-primary hover:text-custom-primary">
|
|
{link.text}
|
|
<span aria-hidden="true"> →</span>
|
|
</span>
|
|
</Link>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</>
|
|
);
|
|
|
|
type EmptySpaceItemProps = {
|
|
title: string;
|
|
description?: React.ReactNode | string;
|
|
Icon: any;
|
|
action?: () => void;
|
|
href?: string;
|
|
};
|
|
|
|
const EmptySpaceItem: React.FC<EmptySpaceItemProps> = ({ title, description, Icon, action, href }) => {
|
|
let spaceItem = (
|
|
<div className={`group relative flex ${description ? "items-start" : "items-center"} space-x-3 py-4`}>
|
|
<div className="flex-shrink-0">
|
|
<span className="inline-flex h-10 w-10 items-center justify-center rounded-lg bg-custom-primary">
|
|
<Icon className="h-6 w-6 text-white" aria-hidden="true" />
|
|
</span>
|
|
</div>
|
|
<div className="min-w-0 flex-1 text-custom-text-200">
|
|
<div className="text-sm font-medium group-hover:text-custom-text-100">{title}</div>
|
|
{description ? <div className="text-sm">{description}</div> : null}
|
|
</div>
|
|
<div className="flex-shrink-0 self-center">
|
|
<ChevronRightIcon
|
|
className="h-5 w-5 text-custom-text-200 group-hover:text-custom-text-100"
|
|
aria-hidden="true"
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
if (href) {
|
|
spaceItem = <Link href={href}>{spaceItem}</Link>;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<li className="cursor-pointer" onClick={action} role="button">
|
|
{spaceItem}
|
|
</li>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export { EmptySpace, EmptySpaceItem };
|