Files
supabase/studio/components/layouts/ProjectLayout/LayoutHeader/HelpPopover.tsx
2022-08-09 20:18:24 +01:00

132 lines
4.3 KiB
TypeScript

import {
Button,
IconHelpCircle,
IconMail,
IconMessageCircle,
Popover,
IconBookOpen,
IconActivity,
} from '@supabase/ui'
import { useRouter } from 'next/router'
import { FC } from 'react'
import Link from 'next/link'
import Image from 'next/image'
import SVG from 'react-inlinesvg'
interface Props {}
const HelpPopover: FC<Props> = () => {
const router = useRouter()
const projectRef = router.query.ref
const supportUrl = `/support/new${projectRef ? `?ref=${projectRef}` : ''}`
return (
<Popover
size="content"
align="end"
side="bottom"
sideOffset={8}
overlay={
<div className="space-y-4 my-4 w-96">
<div className="px-5 space-y-4 my-5">
<h5 className="text-scale-1200">Need help with your project?</h5>
<p className="text-sm text-scale-900">
For issues with your project hosted on supabase.com, or other inquiries about our
hosted services.
</p>
<div className="space-x-1">
<Link href={supportUrl}>
<Button type="default" icon={<IconMail />} as="a">
Contact Support
</Button>
</Link>
<Link href="https://supabase.com/docs/">
<Button type="text" size="tiny" icon={<IconBookOpen />} as="a">
Docs
</Button>
</Link>
<Link href="https://status.supabase.com/">
<Button type="text" size="tiny" icon={<IconActivity />} as="a">
Supabase Status
</Button>
</Link>
</div>
<p className="text-sm text-scale-900">
Expected response time is based on your billing tier. Pro and Pay as You Go plans are
prioritised.
</p>
</div>
<Popover.Seperator />
<div className="space-y-2 mb-4">
<div className="px-5 mb-4">
<h5 className={'mb-2'}>Reach out to the community</h5>
<p className="text-sm text-scale-900">
For other support, including questions on our client libraries, advice, or best
practices.
</p>
</div>
<div className="px-5">
<div
className="relative px-5 py-4 pb-12 rounded overflow-hidden space-y-2 shadow-md"
style={{ background: '#404EED' }}
>
<a
href="https://discord.supabase.com"
target="_blank"
className="block cursor-pointer dark"
>
<Image
className="absolute left-0 top-0 opacity-50"
src={'/img/support/discord-bg-small.jpg'}
layout="fill"
objectFit="cover"
alt="discord illustration header"
/>
<Button
type="secondary"
icon={<SVG src={`/img/discord-icon.svg`} className="w-4 h-4" />}
>
<span style={{ color: '#404EED' }}>Join Discord server</span>
</Button>
</a>
</div>
</div>
<div className="px-5">
<div className="relative px-5 py-4 pb-12 rounded overflow-hidden space-y-2 shadow-md">
<a
href="https://github.com/supabase/supabase/discussions"
target="_blank"
className="block cursor-pointer"
>
<Image
className="absolute left-0 top-0 opacity-50"
src={'/img/support/github-bg.jpg?v-1'}
layout="fill"
objectFit="cover"
alt="discord illustration header"
/>
<Button type="secondary" icon={<IconMessageCircle />}>
GitHub Discussions
</Button>
</a>
</div>
</div>
</div>
</div>
}
>
<Button
as="span"
type="default"
icon={<IconHelpCircle size={16} strokeWidth={1.5} className="text-scale-900" />}
>
Help
</Button>
</Popover>
)
}
export default HelpPopover