forked from basetool-io/basetool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeedbackPanel.tsx
103 lines (98 loc) · 3.13 KB
/
FeedbackPanel.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { ArrowRightIcon } from "@heroicons/react/outline";
import { Button, IconButton, Textarea } from "@chakra-ui/react";
import { isEmpty } from "lodash";
import { useRouter } from "next/router";
import { useSendFeedbackMutation } from "@/features/app/api-slice";
import React, { memo, useState } from "react";
import TinyLabel from "./TinyLabel";
const FeedbackPanel = ({
label = "Feedback",
closePanel,
firstFieldRef,
}: {
label?: string;
closePanel?: () => void;
firstFieldRef?: any;
}) => {
const [emotion, setEmotion] = useState<string | null>(null);
const [value, setValue] = useState<string | null>(null);
const [sendFeedback, { isLoading }] = useSendFeedbackMutation();
const router = useRouter();
const handleSendFeedback = async () => {
if (closePanel) closePanel();
await sendFeedback({
body: {
note: value ? value : "",
emotion: emotion ? emotion : "",
url: router.pathname ? router.pathname : "",
},
}).unwrap();
};
return (
<div className="border rounded-md shadow-lg bg-white z-30 p-4 space-y-2">
<TinyLabel>{label}</TinyLabel>
<Textarea
value={value ? value : undefined}
onChange={(e) => setValue(e.currentTarget.value)}
placeholder="Your feedback..."
size="sm"
className="text-black"
resize="none"
autoFocus={true}
ref={firstFieldRef}
/>
<hr />
<div className="flex justify-between">
<div className="space-x-1">
<IconButton
size="sm"
className={`border hover:border-gray-500 ${
emotion === "😻" ? "border-palatinate-blue " : ""
}`}
aria-label="star"
icon={<p className="text-2xl mt-[1px]">😻</p>}
onClick={() => setEmotion("😻")}
/>
<IconButton
size="sm"
className={`border hover:border-gray-500 ${
emotion === "😸" ? "border-palatinate-blue " : ""
}`}
aria-label="happy"
icon={<p className="text-2xl mt-[1px]">😸</p>}
onClick={() => setEmotion("😸")}
/>
<IconButton
size="sm"
className={`border hover:border-gray-500 ${
emotion === "😿" ? "border-palatinate-blue " : ""
}`}
aria-label="sad"
icon={<p className="text-2xl mt-[1px]">😿</p>}
onClick={() => setEmotion("😿")}
/>
<IconButton
size="sm"
className={`border hover:border-gray-500 ${
emotion === "😾" ? "border-palatinate-blue " : ""
}`}
aria-label="cry"
icon={<p className="text-2xl mt-[1px]">😾</p>}
onClick={() => setEmotion("😾")}
/>
</div>
<Button
size="sm"
colorScheme="blue"
onClick={handleSendFeedback}
isDisabled={isEmpty(value)}
isLoading={isLoading}
rightIcon={<ArrowRightIcon className="h-3" />}
>
Send
</Button>
</div>
</div>
);
};
export default memo(FeedbackPanel);