import { Checkbox, ChoiceGroup, DefaultButton, IconButton, Link, Modal, PrimaryButton, Stack, Text, TextField, } from "@fluentui/react"; import Explorer from "Explorer/Explorer"; import { SubmitFeedback } from "Explorer/QueryCopilot/Shared/QueryCopilotClient"; import { useQueryCopilot } from "hooks/useQueryCopilot"; import React from "react"; import { getUserEmail } from "../../../Utils/UserUtils"; export const QueryCopilotFeedbackModal = ({ explorer }: { explorer: Explorer }): JSX.Element => { const { generatedQuery, userPrompt, likeQuery, showFeedbackModal, closeFeedbackModal, setHideFeedbackModalForLikedQueries, } = useQueryCopilot(); const [isContactAllowed, setIsContactAllowed] = React.useState(false); const [description, setDescription] = React.useState(""); const [doNotShowAgainChecked, setDoNotShowAgainChecked] = React.useState(false); const [contact, setContact] = React.useState(getUserEmail()); const handleSubmit = () => { closeFeedbackModal(); setHideFeedbackModalForLikedQueries(doNotShowAgainChecked); SubmitFeedback({ params: { generatedQuery, likeQuery, description, userPrompt, contact }, explorer: explorer, }); }; return (
Send feedback to Microsoft closeFeedbackModal()} /> Your feedback will help improve the experience. setDescription(newValue)} multiline rows={3} /> { setIsContactAllowed(option.key === "yes"); setContact(option.key === "yes" ? getUserEmail() : ""); }} > By pressing submit, your feedback will be used to improve Microsoft products and services. Please see the{" "} { Privacy statement }{" "} for more information. {likeQuery && ( setDoNotShowAgainChecked(checked)} /> )} Submit closeFeedbackModal()}>Cancel
); };