-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
247 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
160 changes: 160 additions & 0 deletions
160
components/dashboard/src/feedback-form/FeedbackComponent.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
/** | ||
* Copyright (c) 2022 Gitpod GmbH. All rights reserved. | ||
* Licensed under the GNU Affero General Public License (AGPL). | ||
* See License-AGPL.txt in the project root for license information. | ||
*/ | ||
|
||
import { useState } from "react"; | ||
import starryEyed from "../images/feedback/starry-eyed-emoji.svg"; | ||
import happy from "../images/feedback/happy-emoji.svg"; | ||
import meh from "../images/feedback/meh-emoji.svg"; | ||
import crying from "../images/feedback/crying-emoji.svg"; | ||
import { trackEvent } from "../Analytics"; | ||
|
||
function FeedbackComponent(props: { onClose: () => void; onSubmit: () => void; isModal: boolean }) { | ||
const [text, setText] = useState<string>(""); | ||
const [selectedEmoji, setSelectedEmoji] = useState<number | undefined>(); | ||
|
||
const emojiScore: any = { | ||
starry: 4, | ||
happy: 3, | ||
meh: 2, | ||
crying: 1, | ||
}; | ||
|
||
const height = props.isModal ? "300px" : ""; | ||
|
||
const onSubmit = () => { | ||
if (selectedEmoji) { | ||
const feedbackObj = { | ||
score: selectedEmoji, | ||
feedback: text, | ||
href: window.location.href, | ||
path: window.location.pathname, | ||
}; | ||
trackEvent("feedback_submitted", feedbackObj); | ||
} | ||
|
||
props.onSubmit(); | ||
}; | ||
|
||
const handleClick = (target: any) => { | ||
const title = target.title; | ||
setSelectedEmoji(emojiScore[title]); | ||
}; | ||
|
||
const emojiGroup = (width: number) => { | ||
return ( | ||
<> | ||
<button | ||
className={ | ||
"hover:scale-150 transform bg-transparent bottom-5 right-5 cursor-pointer " + | ||
(selectedEmoji === emojiScore["starry"] ? "" : "grayed") | ||
} | ||
onClick={(e) => handleClick(e.target)} | ||
> | ||
<img src={starryEyed} alt="starry eyed emoji" width={width || "24px"} title="starry" /> | ||
</button> | ||
<button | ||
className={ | ||
"hover:scale-150 transform bg-transparent bottom-5 right-5 cursor-pointer " + | ||
(selectedEmoji === emojiScore["happy"] ? "" : "grayed") | ||
} | ||
onClick={(e) => handleClick(e.target)} | ||
> | ||
<img | ||
className="bottom-5 right-5 cursor-pointer" | ||
title="happy" | ||
src={happy} | ||
alt="happy emoji" | ||
width={width} | ||
/> | ||
</button> | ||
<button | ||
className={ | ||
"hover:scale-150 transform bg-transparent bottom-5 right-5 cursor-pointer " + | ||
(selectedEmoji === emojiScore["meh"] ? "" : "grayed") | ||
} | ||
onClick={(e) => handleClick(e.target)} | ||
> | ||
<img | ||
className="bottom-5 right-5 cursor-pointer" | ||
title="meh" | ||
src={meh} | ||
alt="meh emoji" | ||
width={width} | ||
/> | ||
</button> | ||
<button | ||
className={ | ||
"hover:scale-150 transform bg-transparent bottom-5 right-5 cursor-pointer " + | ||
(selectedEmoji === emojiScore["crying"] ? "" : "grayed") | ||
} | ||
onClick={(e) => handleClick(e.target)} | ||
> | ||
<img | ||
className="bottom-5 right-5 cursor-pointer" | ||
title="crying" | ||
src={crying} | ||
alt="crying emoji" | ||
width={width} | ||
/> | ||
</button> | ||
</> | ||
); | ||
}; | ||
return ( | ||
<> | ||
<h3 className="mb-4">Send Feedback</h3> | ||
{selectedEmoji ? ( | ||
<> | ||
<div className="flex flex-col -mx-6 px-6 py-4 border-t border-b border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-900"> | ||
<div className="relative"> | ||
<div className="absolute flex bottom-5 right-5 -space-x-3">{emojiGroup(24)}</div> | ||
<textarea | ||
style={{ height: "160px", borderRadius: "6px" }} | ||
autoFocus | ||
className="w-full resize-none text-gray-500 dark:text-gray-400 bg-white focus:ring-0 focus:border-gray-400 dark:focus:border-gray-400 rounded-md border border-gray-300 dark:border-gray-500" | ||
name="name" | ||
value={text} | ||
placeholder="Have more feedback?" | ||
onChange={(e) => setText(e.target.value)} | ||
/> | ||
</div> | ||
<div> | ||
<p className="text-gray-500"> | ||
{" "} | ||
By submitting this form you acknowledge that you have read and understood our{" "} | ||
<a className="gp-link" target="gitpod-privacy" href="https://www.gitpod.io/privacy/"> | ||
privacy policy | ||
</a> | ||
. | ||
</p> | ||
</div> | ||
</div> | ||
<div className="flex justify-end mt-6"> | ||
<button className="secondary" onClick={props.onClose}> | ||
Cancel | ||
</button> | ||
<button className="ml-2" onClick={onSubmit}> | ||
Send Feedback | ||
</button> | ||
</div> | ||
</> | ||
) : ( | ||
<div | ||
className="flex flex-col justify-center -mx-6 px-6 py-4 border-t border-gray-200 dark:border-gray-800" | ||
style={{ height: height }} | ||
> | ||
<p className="text-center text-lg mb-8 text-gray-500 dark:text-gray-400"> | ||
We'd love to know what you think! | ||
</p> | ||
|
||
<div className="flex items-center justify-center w-full space-x-3">{emojiGroup(50)}</div> | ||
</div> | ||
)} | ||
</> | ||
); | ||
} | ||
|
||
export default FeedbackComponent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* Copyright (c) 2022 Gitpod GmbH. All rights reserved. | ||
* Licensed under the GNU Affero General Public License (AGPL). | ||
* See License-AGPL.txt in the project root for license information. | ||
*/ | ||
|
||
import Modal from "../components/Modal"; | ||
import FeedbackComponent from "./FeedbackComponent"; | ||
|
||
function FeedbackFormModal(props: { onClose: () => void }) { | ||
const onClose = () => { | ||
props.onClose(); | ||
}; | ||
|
||
const onSubmit = () => { | ||
props.onClose(); | ||
}; | ||
|
||
return ( | ||
<Modal visible={true} onClose={onClose}> | ||
<FeedbackComponent onClose={onClose} onSubmit={onSubmit} isModal={true} /> | ||
</Modal> | ||
); | ||
} | ||
|
||
export default FeedbackFormModal; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.