import React from "react"; import hotToast from "react-hot-toast"; import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; import { Feedback } from "#/api/open-hands.types"; import { useSubmitFeedback } from "#/hooks/mutation/use-submit-feedback"; import { ModalButton } from "#/components/shared/buttons/modal-button"; const FEEDBACK_VERSION = "1.0"; const VIEWER_PAGE = "https://www.all-hands.dev/share"; interface FeedbackFormProps { onClose: () => void; polarity: "positive" | "negative"; } export function FeedbackForm({ onClose, polarity }: FeedbackFormProps) { const { t } = useTranslation(); const copiedToClipboardToast = () => { hotToast(t(I18nKey.FEEDBACK$PASSWORD_COPIED_MESSAGE), { icon: "📋", position: "bottom-right", }); }; const onPressToast = (password: string) => { navigator.clipboard.writeText(password); copiedToClipboardToast(); }; const shareFeedbackToast = ( message: string, link: string, password: string, ) => { hotToast(