-
-
Notifications
You must be signed in to change notification settings - Fork 729
Added the new Help & Feedback popover to the account side menu #1482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
182 changes: 182 additions & 0 deletions
182
apps/webapp/app/components/navigation/HelpAndFeedbackPopover.tsx
This file contains hidden or 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,182 @@ | ||
import { | ||
ArrowUpRightIcon, | ||
CalendarDaysIcon, | ||
ChatBubbleLeftEllipsisIcon, | ||
EnvelopeIcon, | ||
LightBulbIcon, | ||
SignalIcon, | ||
} from "@heroicons/react/20/solid"; | ||
import { DiscordIcon, SlackIcon } from "@trigger.dev/companyicons"; | ||
import { Fragment, useState } from "react"; | ||
import { useCurrentPlan } from "~/routes/_app.orgs.$organizationSlug/route"; | ||
import { Feedback } from "../Feedback"; | ||
import { StepContentContainer } from "../StepContentContainer"; | ||
import { Button } from "../primitives/Buttons"; | ||
import { ClipboardField } from "../primitives/ClipboardField"; | ||
import { Dialog, DialogContent, DialogHeader, DialogTrigger } from "../primitives/Dialog"; | ||
import { Icon } from "../primitives/Icon"; | ||
import { Paragraph } from "../primitives/Paragraph"; | ||
import { Popover, PopoverContent, PopoverSideMenuTrigger } from "../primitives/Popover"; | ||
import { StepNumber } from "../primitives/StepNumber"; | ||
import { MenuCount, SideMenuItem } from "./SideMenuItem"; | ||
|
||
export function HelpAndFeedback() { | ||
const [isHelpMenuOpen, setHelpMenuOpen] = useState(false); | ||
const currentPlan = useCurrentPlan(); | ||
|
||
return ( | ||
<Popover onOpenChange={(open) => setHelpMenuOpen(open)}> | ||
<PopoverSideMenuTrigger isOpen={isHelpMenuOpen} shortcut={{ key: "h" }}> | ||
<div className="flex items-center gap-1.5"> | ||
<ChatBubbleLeftEllipsisIcon className="size-4 text-success" /> | ||
Help & Feedback | ||
</div> | ||
</PopoverSideMenuTrigger> | ||
<PopoverContent | ||
className="min-w-[14rem] divide-y divide-grid-bright overflow-y-auto p-0 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-charcoal-600" | ||
align="start" | ||
> | ||
<Fragment> | ||
<div className="flex flex-col gap-1 p-1"> | ||
<SideMenuItem | ||
name="Documentation" | ||
icon="docs" | ||
trailingIcon={ArrowUpRightIcon} | ||
trailingIconClassName="text-text-dimmed" | ||
inactiveIconColor="text-green-500" | ||
activeIconColor="text-green-500" | ||
to="https://trigger.dev/docs" | ||
data-action="documentation" | ||
target="_blank" | ||
/> | ||
</div> | ||
<div className="flex flex-col gap-1 p-1"> | ||
<SideMenuItem | ||
name="Status" | ||
icon={SignalIcon} | ||
trailingIcon={ArrowUpRightIcon} | ||
trailingIconClassName="text-text-dimmed" | ||
inactiveIconColor="text-green-500" | ||
activeIconColor="text-green-500" | ||
to="https://status.trigger.dev/" | ||
data-action="status" | ||
target="_blank" | ||
/> | ||
<SideMenuItem | ||
name="Suggest a feature" | ||
icon={LightBulbIcon} | ||
trailingIcon={ArrowUpRightIcon} | ||
trailingIconClassName="text-text-dimmed" | ||
inactiveIconColor="text-sun-500" | ||
activeIconColor="text-sun-500" | ||
to="https://feedback.trigger.dev/" | ||
data-action="suggest-a-feature" | ||
target="_blank" | ||
/> | ||
<SideMenuItem | ||
name="Changelog" | ||
icon="star" | ||
trailingIcon={ArrowUpRightIcon} | ||
trailingIconClassName="text-text-dimmed" | ||
inactiveIconColor="text-sun-500" | ||
activeIconColor="text-sun-500" | ||
to="https://trigger.dev/changelog" | ||
data-action="changelog" | ||
target="_blank" | ||
/> | ||
</div> | ||
<div className="flex flex-col gap-1 p-1"> | ||
<Paragraph className="pb-1 pl-1.5 pt-1.5 text-xs">Need help?</Paragraph> | ||
{currentPlan?.v3Subscription?.plan?.limits.support === "slack" && ( | ||
<div> | ||
<Dialog> | ||
<DialogTrigger asChild> | ||
<Button | ||
variant="small-menu-item" | ||
LeadingIcon={SlackIcon} | ||
data-action="join-our-slack" | ||
fullWidth | ||
textAlignLeft | ||
> | ||
<div className="flex w-full items-center justify-between"> | ||
<span className="text-text-bright">Join our Slack…</span> | ||
<MenuCount count="PRO" /> | ||
</div> | ||
</Button> | ||
</DialogTrigger> | ||
<DialogContent> | ||
<DialogHeader>Join our Slack</DialogHeader> | ||
<div className="mt-2 flex flex-col gap-4"> | ||
<div className="flex items-center gap-4"> | ||
<Icon icon={SlackIcon} className="h-10 w-10 min-w-[2.5rem]" /> | ||
<Paragraph variant="base/bright"> | ||
As a subscriber, you have access to a dedicated Slack channel for 1-to-1 | ||
support with the Trigger.dev team. | ||
</Paragraph> | ||
</div> | ||
<hr className="border-charcoal-800" /> | ||
<div> | ||
<StepNumber stepNumber="1" title="Email us" /> | ||
<StepContentContainer> | ||
<Paragraph> | ||
Send us an email to this address from your Trigger.dev account email | ||
address: | ||
<ClipboardField | ||
variant="secondary/medium" | ||
value="[email protected]" | ||
className="my-2" | ||
/> | ||
</Paragraph> | ||
</StepContentContainer> | ||
<StepNumber stepNumber="2" title="Look out for an invite from Slack" /> | ||
<StepContentContainer> | ||
<Paragraph> | ||
As soon as we can, we'll setup a Slack Connect channel and say hello! | ||
</Paragraph> | ||
</StepContentContainer> | ||
</div> | ||
</div> | ||
</DialogContent> | ||
</Dialog> | ||
</div> | ||
)} | ||
<SideMenuItem | ||
name="Ask in our Discord" | ||
icon={DiscordIcon} | ||
trailingIcon={ArrowUpRightIcon} | ||
trailingIconClassName="text-text-dimmed" | ||
to="https://trigger.dev/discord" | ||
data-action="join our discord" | ||
target="_blank" | ||
/> | ||
<SideMenuItem | ||
name="Book a 15 min call" | ||
icon={CalendarDaysIcon} | ||
trailingIcon={ArrowUpRightIcon} | ||
trailingIconClassName="text-text-dimmed" | ||
inactiveIconColor="text-rose-500" | ||
activeIconColor="text-rose-500" | ||
to="https://cal.com/team/triggerdotdev/founders-call" | ||
data-action="book-a-call" | ||
target="_blank" | ||
/> | ||
<Feedback | ||
button={ | ||
<Button | ||
variant="small-menu-item" | ||
LeadingIcon={EnvelopeIcon} | ||
leadingIconClassName="text-blue-500" | ||
data-action="contact-us" | ||
fullWidth | ||
textAlignLeft | ||
> | ||
Contact us… | ||
</Button> | ||
} | ||
/> | ||
</div> | ||
</Fragment> | ||
</PopoverContent> | ||
</Popover> | ||
); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add security attributes to external links
When using
target="_blank"
, it's recommended to addrel="noopener noreferrer"
to prevent potential security vulnerabilities (reverse tabnabbing).Apply this pattern to all external links:
<SideMenuItem name="Documentation" icon="docs" trailingIcon={ArrowUpRightIcon} trailingIconClassName="text-text-dimmed" inactiveIconColor="text-green-500" activeIconColor="text-green-500" to="https://trigger.dev/docs" data-action="documentation" target="_blank" + rel="noopener noreferrer" />