| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- import { SupportCategories } from '@supabase/shared-types/out/constants'
- import { PropsWithChildren, useEffect, useRef } from 'react'
- import { Button } from 'ui'
- import { Admonition } from 'ui-patterns/admonition'
- import { SupportLink } from '@/components/interfaces/Support/SupportLink'
- import { useTrack } from '@/lib/telemetry/track'
- export interface AlertErrorProps {
- projectRef?: string
- subject?: string
- description?: string
- error?: { message: string } | null
- layout?: 'vertical' | 'horizontal' | 'responsive'
- className?: string
- showIcon?: boolean
- showInstructions?: boolean
- showErrorPrefix?: boolean
- additionalActions?: React.ReactNode
- }
- export const ContactSupportButton = ({
- projectRef,
- subject,
- error,
- }: {
- projectRef?: string
- subject?: string
- error?: { message: string } | null
- }) => {
- return (
- <Button asChild type="default" className="w-min">
- <SupportLink
- queryParams={{
- category: SupportCategories.DASHBOARD_BUG,
- projectRef,
- subject,
- error: error?.message,
- }}
- >
- Contact support
- </SupportLink>
- </Button>
- )
- }
- // [Joshen] To standardize the language for all error UIs
- export const AlertError = ({
- projectRef,
- subject,
- description = 'Try refreshing your browser, but if the issue persists for more than a few minutes, please reach out to us via support.',
- error,
- className,
- showIcon = true,
- layout = 'responsive',
- showInstructions = true,
- showErrorPrefix = true,
- children,
- additionalActions,
- }: PropsWithChildren<AlertErrorProps>) => {
- const track = useTrack()
- const hasTrackedRef = useRef(false)
- const formattedErrorMessage = error?.message?.includes('503')
- ? '503 Service Temporarily Unavailable'
- : error?.message
- useEffect(() => {
- if (!hasTrackedRef.current) {
- hasTrackedRef.current = true
- if (Math.random() < 0.1) {
- track('dashboard_error_created', {
- source: 'admonition',
- })
- }
- }
- }, [track])
- return (
- <Admonition
- type="warning"
- layout={additionalActions ? 'vertical' : layout}
- showIcon={showIcon}
- title={subject}
- description={
- <>
- {error?.message && (
- <p>
- {showErrorPrefix && 'Error: '}
- {formattedErrorMessage}
- </p>
- )}
- {showInstructions && <p>{description}</p>}
- {children}
- </>
- }
- actions={
- additionalActions ? (
- <>
- {additionalActions}
- <ContactSupportButton projectRef={projectRef} subject={subject} error={error} />
- </>
- ) : (
- <ContactSupportButton projectRef={projectRef} subject={subject} error={error} />
- )
- }
- className={className}
- />
- )
- }
- export default AlertError
|