Skip to content

Commit

Permalink
feat(nx-dev): when feedback button is pressed hide buttons (#18141)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed Aug 3, 2023
1 parent 50a145b commit ccad52e
Showing 1 changed file with 47 additions and 34 deletions.
81 changes: 47 additions & 34 deletions nx-dev/feature-ai/src/lib/feature-ai.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ export function FeatureAi(): JSX.Element {
const [error, setError] = useState(null);
const [query, setSearchTerm] = useState('');
const [loading, setLoading] = useState(false);
const [feedbackSent, setFeedbackSent] = useState<boolean>(false);

const warning = `
{% callout type="warning" title="Always double check!" %}
This feature is still in Alpha.
The results may not be accurate, so please always double check with our documentation.
{% /callout %}
`;

const handleSubmit = async () => {
Expand All @@ -33,11 +33,24 @@ export function FeatureAi(): JSX.Element {
setLoading(false);
}
sendCustomEvent('ai_query', 'ai', 'query', undefined, { query, ...usage });
setFeedbackSent(false);
setFinalResult(
renderMarkdown(warning + completeText, { filePath: '' }).node
);
};

const handleFeedback = (type: 'good' | 'bad') => {
try {
sendCustomEvent('ai_feedback', 'ai', type, undefined, {
query,
result: finalResult,
});
setFeedbackSent(true);
} catch (error) {
setFeedbackSent(false);
}
};

return (
<div
className="p-2 mx-auto flex h-full w-full flex-col"
Expand Down Expand Up @@ -73,43 +86,43 @@ export function FeatureAi(): JSX.Element {
<h1>Thinking...</h1>
</div>
) : null}
{finalResult && !error ? (
{finalResult && !loading && !error ? (
<>
<div className="p-4 max-w-none prose prose-slate dark:prose-invert">
{finalResult}
</div>
<div>
<Button
variant="primary"
size="small"
onClick={() =>
sendCustomEvent('ai_feedback', 'ai', 'good', undefined, {
query,
result: finalResult,
})
}
>
Answer was helpful{' '}
<span role="img" aria-label="thumbs-up">
👍
</span>
</Button>
<Button
variant="primary"
size="small"
onClick={() =>
sendCustomEvent('ai_feedback', 'ai', 'bad', undefined, {
query,
result: finalResult,
})
}
>
Answer looks wrong{' '}
<span role="img" aria-label="thumbs-down">
👎
</span>
</Button>
</div>
{!feedbackSent && (
<div>
<Button
variant="primary"
size="small"
onClick={() => handleFeedback('good')}
>
Answer was helpful{' '}
<span role="img" aria-label="thumbs-up">
👍
</span>
</Button>
<Button
variant="primary"
size="small"
onClick={() => handleFeedback('bad')}
>
Answer looks wrong{' '}
<span role="img" aria-label="thumbs-down">
👎
</span>
</Button>
</div>
)}
{feedbackSent && (
<p>
<span role="img" aria-label="check">
</span>{' '}
Thank you for your feedback!
</p>
)}
</>
) : null}
{error ? <div>There was an error: {error['message']}</div> : null}
Expand Down

1 comment on commit ccad52e

@vercel
Copy link

@vercel vercel bot commented on ccad52e Aug 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx-five.vercel.app
nx.dev

Please sign in to comment.