31 lines
769 B
TypeScript
31 lines
769 B
TypeScript
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
||
|
|
||
|
import { useFreshChat } from "./FreshChatProvider";
|
||
|
import { isFreshChatEnabled } from "./FreshChatScript";
|
||
|
|
||
|
interface FreshChatMenuItemProps {
|
||
|
onHelpItemSelect: () => void;
|
||
|
}
|
||
|
|
||
|
export default function FreshChatMenuItem(props: FreshChatMenuItemProps) {
|
||
|
const { onHelpItemSelect } = props;
|
||
|
const { t } = useLocale();
|
||
|
|
||
|
const { setActive } = useFreshChat();
|
||
|
|
||
|
if (!isFreshChatEnabled) return null;
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<button
|
||
|
onClick={() => {
|
||
|
setActive(true);
|
||
|
onHelpItemSelect();
|
||
|
}}
|
||
|
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>
|
||
|
</>
|
||
|
);
|
||
|
}
|