-
Notifications
You must be signed in to change notification settings - Fork 69
/
PageSurvey.tsx
108 lines (93 loc) · 3.38 KB
/
PageSurvey.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
104
105
106
107
108
import posthog from "posthog-js";
import { useState } from "react";
type Reaction = "positive" | "negative";
type Step = "prompt" | "feedback" | "thankyou";
const PageSurvey = () => {
const [reaction, setReaction] = useState<Reaction>();
const [feedback, setFeedback] = useState<string>();
const [step, setStep] = useState<Step>("prompt");
const nextStep = () => {
if (step === "prompt") {
setStep("feedback");
}
if (step === "feedback") {
setStep("thankyou");
}
};
const submitResponse = (reaction: Reaction) => {
setReaction(reaction);
posthog.capture("page_review", { reaction });
nextStep();
};
const submitFeedback = () => {
const trimmed = feedback?.trim();
posthog.capture("page_feedback", {
reaction,
feedback: trimmed,
});
nextStep();
};
return (
<div className="space-y-4">
{step === "prompt" && (
<>
<h3 className="text-lg font-semibold md:text-xl lg:text-2xl">
Was this page helpful?
</h3>
<div className="flex items-center space-x-2">
<button
className="flex items-center justify-between space-x-3 rounded-lg border-1.5 border-light-gray px-3 py-2 text-sm font-semibold tracking-tight hover:border-primary hover:bg-pale hover:shadow-sm dark:border-gray dark:hover:border-primary dark:hover:bg-darker-gray md:text-base"
onClick={() => submitResponse("positive")}
>
<span>Yes</span>
<span>👍</span>
</button>
<button
className="flex items-center justify-between space-x-3 rounded-lg border-1.5 border-light-gray px-3 py-2 text-sm font-semibold tracking-tight hover:border-primary hover:bg-pale hover:shadow-sm dark:border-gray dark:hover:border-primary dark:hover:bg-darker-gray md:text-base"
onClick={() => submitResponse("negative")}
>
<span>No</span>
<span>👎</span>
</button>
</div>
</>
)}
{step === "feedback" && (
<>
<h3 className="text-lg font-semibold md:text-xl lg:text-2xl">
{reaction === "positive"
? "What made this page great?"
: "How can we improve?"}
</h3>
<textarea
className="w-full resize-none rounded-lg border-1.5 border-soft-gray p-3 text-sm shadow-sm dark:border-gray dark:bg-dark md:p-4 md:text-base lg:p-2.5"
cols={25}
rows={5}
value={feedback}
onChange={(e) => setFeedback(e.target.value)}
placeholder={
reaction === "positive"
? "Let us know what you found helpful"
: "Let us know how we can do better"
}
autoFocus
/>
{feedback && (
<button
className="hoverName:text-pale rounded-lg bg-light-gray px-3 py-2 font-semibold text-dark hover:cursor-pointer hover:bg-gray active:bg-rose dark:bg-gray dark:text-pale dark:hover:bg-dark-gray"
onClick={submitFeedback}
>
Send feedback
</button>
)}
</>
)}
{step === "thankyou" && (
<h3 className="text-lg font-semibold md:text-xl lg:text-2xl">
Thank you for sharing!
</h3>
)}
</div>
);
};
export default PageSurvey;