import DOMPurify from "dompurify";
import { useSession } from "next-auth/react";
import React, { AriaRole, ComponentType, Fragment } from "react";
import { APP_NAME, CONSOLE_URL, SUPPORT_MAIL_ADDRESS } from "@calcom/lib/constants";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { EmptyScreen, Icon } from "@calcom/ui";
type LicenseRequiredProps = {
as?: keyof JSX.IntrinsicElements | "";
className?: string;
role?: AriaRole | undefined;
children: React.ReactNode;
};
/**
* This component will only render it's children if the installation has a valid
* license.
*/
const LicenseRequired = ({ children, as = "", ...rest }: LicenseRequiredProps) => {
const session = useSession();
const { t } = useLocale();
const Component = as || Fragment;
const hasValidLicense = session.data ? session.data.hasValidLicense : null;
return (
{hasValidLicense === null || hasValidLicense ? (
children
) : (
${APP_NAME}
`,
supportMail: `
${SUPPORT_MAIL_ADDRESS}
`,
})
),
}}
/>
}
/>
)}
);
};
export const withLicenseRequired =
(Component: ComponentType) =>
// eslint-disable-next-line react/display-name
(hocProps: T) =>
(
);
export default LicenseRequired;