2022-03-18 15:09:13 +00:00
|
|
|
import { useState } from "react";
|
|
|
|
import { HelpScout, useChat } from "react-live-chat-loader";
|
|
|
|
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
|
2023-03-08 11:30:24 +00:00
|
|
|
interface HelpscoutMenuItemProps {
|
|
|
|
onHelpItemSelect: () => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function HelpscoutMenuItem(props: HelpscoutMenuItemProps) {
|
|
|
|
const { onHelpItemSelect } = props;
|
2022-03-18 15:09:13 +00:00
|
|
|
const { t } = useLocale();
|
|
|
|
const [active, setActive] = useState(false);
|
|
|
|
|
2022-06-06 18:24:37 +00:00
|
|
|
const [, loadChat] = useChat();
|
2022-03-18 15:09:13 +00:00
|
|
|
|
|
|
|
function handleClick() {
|
|
|
|
setActive(true);
|
|
|
|
loadChat({ open: true });
|
2023-03-08 11:30:24 +00:00
|
|
|
onHelpItemSelect();
|
2022-03-18 15:09:13 +00:00
|
|
|
}
|
|
|
|
|
2023-03-08 11:30:24 +00:00
|
|
|
// eslint-disable-next-line turbo/no-undeclared-env-vars
|
2022-03-18 15:09:13 +00:00
|
|
|
if (!process.env.NEXT_PUBLIC_HELPSCOUT_KEY) return null;
|
2023-03-08 11:30:24 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<button
|
|
|
|
onClick={handleClick}
|
|
|
|
className="flex w-full px-5 py-2 pr-4 text-sm font-medium text-gray-700 hover:bg-gray-100 hover:text-gray-900">
|
|
|
|
{t("contact_support")}
|
|
|
|
</button>
|
|
|
|
|
|
|
|
{active && <HelpScout color="#292929" icon="message" horizontalPosition="right" zIndex="1" />}
|
|
|
|
</>
|
|
|
|
);
|
2022-03-18 15:09:13 +00:00
|
|
|
}
|