mirror of
https://github.com/supabase/supabase.git
synced 2026-09-22 13:37:53 +08:00
3669fef749
## Problem The tooltip comment we have about removing the `aria-describedby` attribute to avoid screen readers reading the same text twice is wrong. ## Solution Make it clear why we do that so that future devs don't remove it. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Accessibility** * Clarified accessibility guidance for tooltips and screen-reader labels across code blocks, database controls, function editors, hooks, and table actions. * **Documentation** * Updated internal comments to more clearly explain why duplicate tooltip text is avoided for screen readers. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
307 lines
8.4 KiB
TypeScript
307 lines
8.4 KiB
TypeScript
'use client'
|
|
|
|
import { ArrowRightFromLine, Check, Copy, WrapText, type LucideIcon } from 'lucide-react'
|
|
import { useCallback, useEffect, useRef, useState, type MouseEvent } from 'react'
|
|
import { type NodeHover } from 'twoslash'
|
|
import { Button, cn, copyToClipboard, Tooltip, TooltipContent, TooltipTrigger } from 'ui'
|
|
|
|
type CodeAnnotation = Pick<NodeHover, 'text' | 'docs' | 'tags'>
|
|
export type CodeToken = [
|
|
content: string,
|
|
className: string | undefined,
|
|
annotations?: Array<CodeAnnotation>,
|
|
]
|
|
|
|
export function CodeBlockTokens({
|
|
lines,
|
|
lineNumbers,
|
|
}: {
|
|
lines: Array<Array<CodeToken>>
|
|
lineNumbers: boolean
|
|
}) {
|
|
return (
|
|
<pre>
|
|
<code
|
|
className={cn(
|
|
'[contain:content]',
|
|
lineNumbers && 'grid grid-cols-[auto_1fr] w-fit min-w-full py-3',
|
|
'[--row-rest:var(--background-200)]',
|
|
'[--row-hover:color-mix(in_srgb,var(--foreground)_3%,var(--background-200))]'
|
|
)}
|
|
>
|
|
{lineNumbers ? (
|
|
lines.map((line, idx) => (
|
|
<div key={idx} className="group/row contents">
|
|
<div aria-hidden="true" className="code-line-number">
|
|
{idx + 1}
|
|
</div>
|
|
<div className="code-content code-line-content">
|
|
<CodeLine tokens={line} />
|
|
</div>
|
|
</div>
|
|
))
|
|
) : (
|
|
<div className="code-content p-6">
|
|
{lines.map((line, idx) => (
|
|
<CodeLine key={idx} tokens={line} />
|
|
))}
|
|
</div>
|
|
)}
|
|
</code>
|
|
</pre>
|
|
)
|
|
}
|
|
|
|
function CodeLine({ tokens }: { tokens: Array<CodeToken> }) {
|
|
return (
|
|
<span className="block min-h-5 leading-5">
|
|
{tokens.map(([content, className, annotations], idx) =>
|
|
annotations ? (
|
|
<AnnotatedSpan
|
|
key={idx}
|
|
content={content}
|
|
className={className}
|
|
annotations={annotations}
|
|
/>
|
|
) : (
|
|
<span key={idx} className={className}>
|
|
{content}
|
|
</span>
|
|
)
|
|
)}
|
|
</span>
|
|
)
|
|
}
|
|
|
|
export function AnnotatedSpan({
|
|
content,
|
|
className,
|
|
annotations,
|
|
}: {
|
|
content: string
|
|
className: string | undefined
|
|
annotations: Array<CodeAnnotation>
|
|
}) {
|
|
const [open, setOpen] = useState(false)
|
|
|
|
const [isTouchDevice, setIsTouchDevice] = useState(false)
|
|
useEffect(() => {
|
|
const touchDevice = !window.matchMedia('(pointer: fine)').matches
|
|
setIsTouchDevice(touchDevice)
|
|
}, [])
|
|
|
|
const handleClick = useCallback(
|
|
(evt: MouseEvent) => {
|
|
if (isTouchDevice) {
|
|
evt.preventDefault()
|
|
evt.stopPropagation()
|
|
setOpen((open) => !open)
|
|
}
|
|
},
|
|
[isTouchDevice]
|
|
)
|
|
const onOpenChange = useCallback(
|
|
(open: boolean) => {
|
|
if (!isTouchDevice || !open) {
|
|
setOpen(open)
|
|
}
|
|
},
|
|
[isTouchDevice]
|
|
)
|
|
|
|
return (
|
|
<Tooltip open={open} onOpenChange={onOpenChange}>
|
|
<TooltipTrigger asChild onClick={handleClick}>
|
|
<button
|
|
tabIndex={0}
|
|
className={cn(
|
|
className,
|
|
isTouchDevice &&
|
|
'underline underline-offset-4 decoration-dashed decoration-[rgba(from_currentColor_r_g_b/0.5)]'
|
|
)}
|
|
>
|
|
{content}
|
|
</button>
|
|
</TooltipTrigger>
|
|
<TooltipContent className="max-w-[min(80vw,400px)] p-0 divide-y">
|
|
{annotations.map((annotation, idx) => (
|
|
<Annotation key={idx} annotation={annotation} />
|
|
))}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
)
|
|
}
|
|
|
|
function Annotation({ annotation }: { annotation: CodeAnnotation }) {
|
|
const { text, docs, tags } = annotation
|
|
return (
|
|
<div className="flex flex-col gap-2">
|
|
<code className={cn('block bg-200 p-2', (docs || tags) && 'border-b border-default')}>
|
|
{text}
|
|
</code>
|
|
{docs && <p className={cn('p-2', tags && 'border-b border-default')}>{docs}</p>}
|
|
{tags && (
|
|
<div className="p-2 flex flex-col">
|
|
{tags.map((tag, idx) => {
|
|
return (
|
|
<span key={idx}>
|
|
<code>@{tag[0]}</code> {tag[1]}
|
|
</span>
|
|
)
|
|
})}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function CrossfadeIcon({
|
|
active,
|
|
activeIcon: ActiveIcon,
|
|
inactiveIcon: InactiveIcon,
|
|
}: {
|
|
active: boolean
|
|
activeIcon: LucideIcon
|
|
inactiveIcon: LucideIcon
|
|
}) {
|
|
const iconClass = (shown: boolean) =>
|
|
cn(
|
|
'absolute inset-0 m-auto text-lighter group-hover/btn:text-foreground',
|
|
'transition-[opacity,scale,filter,color] duration-300 [transition-timing-function:cubic-bezier(0.2,0,0,1)]',
|
|
'motion-reduce:transition-none',
|
|
shown ? 'opacity-100 scale-100 blur-none' : 'opacity-0 scale-[0.25] blur-[4px]'
|
|
)
|
|
|
|
return (
|
|
<span className="relative block size-3.5">
|
|
<ActiveIcon size={14} aria-hidden="true" className={iconClass(active)} />
|
|
<InactiveIcon size={14} aria-hidden="true" className={iconClass(!active)} />
|
|
</span>
|
|
)
|
|
}
|
|
|
|
export function CodeCopyButton({
|
|
className,
|
|
content,
|
|
label = 'Copy code',
|
|
copiedLabel = 'Code copied',
|
|
onCopied,
|
|
}: {
|
|
className?: string
|
|
content: string
|
|
label?: string
|
|
copiedLabel?: string
|
|
/** Runs after a successful clipboard write. */
|
|
onCopied?: () => void
|
|
}) {
|
|
const [copied, setCopied] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (!copied) return
|
|
|
|
const timeout = window.setTimeout(() => setCopied(false), 2000)
|
|
return () => window.clearTimeout(timeout)
|
|
}, [copied])
|
|
|
|
const handleCopy = async () => {
|
|
copyToClipboard(content, () => {
|
|
setCopied(true)
|
|
onCopied?.()
|
|
})
|
|
}
|
|
|
|
const resetStatus = () => {
|
|
setCopied(false)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<span className="sr-only" aria-live="polite">
|
|
{copied ? copiedLabel : ''}
|
|
</span>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="outline"
|
|
tabIndex={0}
|
|
onClick={handleCopy}
|
|
onBlur={resetStatus}
|
|
className={cn(
|
|
'group/btn size-6 p-1 cursor-pointer bg-200 hover:border-strong',
|
|
copied && 'bg-[var(--btn-active)]',
|
|
'hover:bg-[var(--btn-active)]',
|
|
className
|
|
)}
|
|
aria-label={label}
|
|
// Tooltip repeats the label; screen readers would read it twice
|
|
aria-describedby={undefined}
|
|
>
|
|
<CrossfadeIcon active={copied} activeIcon={Check} inactiveIcon={Copy} />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>{label}</TooltipContent>
|
|
</Tooltip>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function CodeBlockControls({ content }: { content: string }) {
|
|
const [isWrapped, setIsWrapped] = useState(false)
|
|
// Empty until the first toggle, so nothing is announced on mount
|
|
const [wrapStatus, setWrapStatus] = useState('')
|
|
const wrapperRef = useRef<HTMLDivElement>(null)
|
|
|
|
const toggleWrap = useCallback(() => {
|
|
const newValue = !isWrapped
|
|
setIsWrapped(newValue)
|
|
setWrapStatus(newValue ? 'Word wrap enabled' : 'Word wrap disabled')
|
|
|
|
const codeBlock = wrapperRef.current?.closest('.shiki')
|
|
if (codeBlock) {
|
|
if (newValue) {
|
|
codeBlock.setAttribute('data-wrapped', 'true')
|
|
} else {
|
|
codeBlock.removeAttribute('data-wrapped')
|
|
}
|
|
}
|
|
}, [isWrapped])
|
|
|
|
return (
|
|
<div
|
|
ref={wrapperRef}
|
|
className={cn(
|
|
'opacity-0 flex group-hover:opacity-100 group-focus-within:opacity-100 absolute top-[9.5px] right-[9.5px] gap-1',
|
|
'[--btn-active:color-mix(in_srgb,var(--foreground)_4%,var(--background-200))]'
|
|
)}
|
|
>
|
|
<span className="sr-only" aria-live="polite">
|
|
{wrapStatus}
|
|
</span>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="outline"
|
|
tabIndex={0}
|
|
onClick={toggleWrap}
|
|
className={cn(
|
|
'group/btn size-6 p-1 cursor-pointer bg-200 hover:border-strong',
|
|
'hover:bg-[var(--btn-active)]'
|
|
)}
|
|
aria-label={isWrapped ? 'Disable word wrap' : 'Enable word wrap'}
|
|
// Tooltip repeats the label; screen readers would read it twice
|
|
aria-describedby={undefined}
|
|
>
|
|
<CrossfadeIcon
|
|
active={isWrapped}
|
|
activeIcon={ArrowRightFromLine}
|
|
inactiveIcon={WrapText}
|
|
/>
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>{isWrapped ? 'Disable word wrap' : 'Enable word wrap'}</TooltipContent>
|
|
</Tooltip>
|
|
<CodeCopyButton content={content} />
|
|
</div>
|
|
)
|
|
}
|