mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 01:40:13 -04:00
56de26fe22
This PR migrates the whole monorepo to use Tailwind v4: - Removed `@tailwindcss/container-queries` plugin since it's included by default in v4, - Bump all instances of Tailwind to v4. Made minimal changes to the shared config to remove non-supported features (`alpha` mentions), - Migrate all apps to be compatible with v4 configs, - Fix the `typography.css` import in 3 apps, - Add missing rules which were included by default in v3, - Run `pnpm dlx @tailwindcss/upgrade` on all apps, which renames a lot of classes - Rename all misnamed classes according to https://tailwindcss.com/docs/upgrade-guide#renamed-utilities in all apps. --------- Co-authored-by: Jordi Enric <jordi.err@gmail.com>
69 lines
2.4 KiB
TypeScript
69 lines
2.4 KiB
TypeScript
import { ExternalLink, HelpCircle, LockKeyholeOpen, RectangleEllipsis } from 'lucide-react'
|
|
import { HoverCard, HoverCardContent, HoverCardTrigger } from 'ui'
|
|
|
|
import { AlgorithmDetail, algorithmDetails } from './algorithm-details'
|
|
|
|
interface AlgorithmHoverCardProps {
|
|
algorithm: keyof typeof algorithmDetails
|
|
legacy?: boolean
|
|
}
|
|
|
|
export const AlgorithmHoverCard = ({ algorithm, legacy }: AlgorithmHoverCardProps) => {
|
|
const details: AlgorithmDetail = algorithmDetails[algorithm]
|
|
|
|
return (
|
|
<div className="flex items-center gap-x-2">
|
|
{algorithm === 'HS256' ? (
|
|
<RectangleEllipsis className="shrink-0" size={14} />
|
|
) : (
|
|
<LockKeyholeOpen className="shrink-0" size={14} />
|
|
)}
|
|
<p>{legacy ? `Legacy ${details.label}` : details.label}</p>
|
|
<HoverCard closeDelay={50} openDelay={300}>
|
|
<HoverCardTrigger className="min-w-0">
|
|
<HelpCircle size={14} className="text-foreground-lighter" />
|
|
</HoverCardTrigger>
|
|
<HoverCardContent className="w-88 flex items-start gap-3" side="right" align="center">
|
|
<div className="flex-1">
|
|
<h4 className="font-semibold truncate">{details.name}</h4>
|
|
<div className="flex flex-col gap-2 text-sm text-foreground-light">
|
|
<p>{details.description}</p>
|
|
<p>
|
|
Pros:
|
|
<ul className="list-disc pl-6">
|
|
{details.pros.map((pro, i) => (
|
|
<li key={i}>{pro}</li>
|
|
))}
|
|
</ul>
|
|
</p>
|
|
<p>
|
|
Cons:{' '}
|
|
<ul className="list-disc pl-6">
|
|
{details.cons.map((con, i) => (
|
|
<li key={i}>{con}</li>
|
|
))}
|
|
</ul>
|
|
<br />
|
|
</p>
|
|
</div>
|
|
<div className="space-y-1 mt-2">
|
|
{details.links.map((link, index) => (
|
|
<a
|
|
key={index}
|
|
href={link.url}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-xs text-brand hover:text-brand-600 flex items-center"
|
|
>
|
|
<ExternalLink className="w-3 h-3 mr-1 shrink-0" />
|
|
<span className="truncate">{link.label}</span>
|
|
</a>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</HoverCardContent>
|
|
</HoverCard>
|
|
</div>
|
|
)
|
|
}
|