2022-03-15 22:46:14 +00:00
|
|
|
import Script from "next/script";
|
|
|
|
import { useState } from "react";
|
|
|
|
|
2022-03-18 15:09:13 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-03-15 22:46:14 +00:00
|
|
|
|
2023-03-08 11:30:24 +00:00
|
|
|
// eslint-disable-next-line turbo/no-undeclared-env-vars
|
2022-03-15 22:46:14 +00:00
|
|
|
const ZENDESK_KEY = process.env.NEXT_PUBLIC_ZENDESK_KEY;
|
|
|
|
|
2023-03-08 11:30:24 +00:00
|
|
|
interface ZendeskMenuItemProps {
|
|
|
|
onHelpItemSelect: () => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function ZendeskMenuItem(props: ZendeskMenuItemProps) {
|
|
|
|
const { onHelpItemSelect } = props;
|
2022-03-15 22:46:14 +00:00
|
|
|
const [active, setActive] = useState(false);
|
|
|
|
const { t } = useLocale();
|
|
|
|
|
2023-03-08 11:30:24 +00:00
|
|
|
if (!ZENDESK_KEY) return null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<button
|
|
|
|
onClick={() => {
|
|
|
|
setActive(true);
|
|
|
|
onHelpItemSelect();
|
|
|
|
}}
|
2023-04-05 18:14:46 +00:00
|
|
|
className="hover:bg-subtle hover:text-emphasis text-default flex w-full px-5 py-2 pr-4 text-sm font-medium">
|
2023-03-08 11:30:24 +00:00
|
|
|
{t("contact_support")}
|
|
|
|
</button>
|
|
|
|
{active && (
|
|
|
|
<Script id="ze-snippet" src={"https://static.zdassets.com/ekr/snippet.js?key=" + ZENDESK_KEY} />
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
2022-03-15 22:46:14 +00:00
|
|
|
}
|