* add endpoint to fetch managed user from client id * update typings * minor tweaks * custom hook to fetch managed users from client id * add translations for platform onboarding * add isPlatformOrg boolean to figure out which is platform and which is not * set isPlatform hook based on data obtained from org * add limitWidth prop to control component width * add props to shell to make sidebar display different tabs based on if the shell isPlattform or not * platform related pages * fix merge conflicts * fix merge conflicts * platform oauth client form and card * remove everything related to platform from organization * update oauth client card and form * fixup * fix imports and remove logs * fixup * update redirect url * split oauth client form into separate update and create forms * separate forms for create and edit oauth clients * fixup * fixup * dynamic routes for oauth client edit page * fixup fixup * fix to not show error when redirect uri is empty * refactor create handler for org * cleaup comments * add custom hook to check user billing * export managed user type * refactor platform index page * refactor edit and create pages * dashboard component containing oauth client list and managed user * common oauth client form used for create and edit form * platform pricing helper * platform pricing component * fix typing and data response for billing * use custom hook to check team billing info * fix type checks * upgrade conditional rendering for upgrade to org banner * add isLoading prop to check button loading state * pass in button handler * add custom hook to subscribe to stripe and typings * update typings * fix incorrect endpoint * pass in team id as prop * fix type check * update stripe success and cancel redirect url * add and pass redirect url param to custom hook * custom hooks for platform * cleanup * update imports * fix merge conflicts * fixup * fixup fixup * fixup * merge conflicts fixup * merge conlficts battle :( * minor fixes * skip admin checks for a platform client * fix typo * append slug with _platform for a platform user * PR feedback * dashboard refactor * bring back org form to its orginal state * add platform folder to ee * update typings * use new create platform form * fixup * fix typo and update plans * simplifying rendering * remove managed users endpoint since it already exists * url for endpoint * rename tabs * pr feedback * managed users endpoint * update endpoint * remove form --------- Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: exception <erik@erosemberg.com> Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
import type { ReactNode } from "react";
|
|
import React from "react";
|
|
|
|
import { classNames } from "@calcom/lib";
|
|
|
|
import type { IconName } from "../..";
|
|
import { Icon } from "../..";
|
|
import { Button } from "../../components/button";
|
|
|
|
export function EmptyScreen({
|
|
Icon: icon,
|
|
customIcon,
|
|
avatar,
|
|
headline,
|
|
description,
|
|
buttonText,
|
|
buttonOnClick,
|
|
buttonRaw,
|
|
border = true,
|
|
dashedBorder = true,
|
|
className,
|
|
iconClassName,
|
|
iconWrapperClassName,
|
|
limitWidth = true,
|
|
}: {
|
|
Icon?: IconName;
|
|
customIcon?: React.ReactElement;
|
|
avatar?: React.ReactElement;
|
|
headline: string | React.ReactElement;
|
|
description?: string | React.ReactElement;
|
|
buttonText?: string;
|
|
buttonOnClick?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
buttonRaw?: ReactNode; // Used incase you want to provide your own button.
|
|
border?: boolean;
|
|
dashedBorder?: boolean;
|
|
iconWrapperClassName?: string;
|
|
iconClassName?: string;
|
|
limitWidth?: boolean;
|
|
} & React.HTMLAttributes<HTMLDivElement>) {
|
|
return (
|
|
<>
|
|
<div
|
|
data-testid="empty-screen"
|
|
className={classNames(
|
|
"flex w-full select-none flex-col items-center justify-center rounded-lg p-7 lg:p-20",
|
|
border && "border-subtle border",
|
|
dashedBorder && "border-dashed",
|
|
className
|
|
)}>
|
|
{!avatar ? null : (
|
|
<div className="flex h-[72px] w-[72px] items-center justify-center rounded-full">{avatar}</div>
|
|
)}
|
|
|
|
{!icon ? null : (
|
|
<div
|
|
className={classNames(
|
|
"bg-emphasis flex h-[72px] w-[72px] items-center justify-center rounded-full ",
|
|
iconWrapperClassName
|
|
)}>
|
|
<Icon
|
|
name={icon}
|
|
className={classNames("text-default inline-block h-10 w-10 stroke-[1.3px]", iconClassName)}
|
|
/>
|
|
</div>
|
|
)}
|
|
{!customIcon ? null : <>{customIcon}</>}
|
|
<div className={`flex ${limitWidth ? "max-w-[420px]" : ""} flex-col items-center`}>
|
|
<h2
|
|
className={classNames(
|
|
"text-semibold font-cal text-emphasis text-center text-xl",
|
|
icon && "mt-6"
|
|
)}>
|
|
{headline}
|
|
</h2>
|
|
{description && (
|
|
<div className="text-default mb-8 mt-3 text-center text-sm font-normal leading-6">
|
|
{description}
|
|
</div>
|
|
)}
|
|
{buttonOnClick && buttonText && <Button onClick={(e) => buttonOnClick(e)}>{buttonText}</Button>}
|
|
{buttonRaw}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|