mirror of
https://github.com/supabase/supabase.git
synced 2026-05-26 13:42:56 +08:00
strictNullChecks was off for docs, which lets errors slip through and leads to incorrect required/optional typing on Zod-inferred types. This PR enables strictNullChecks and fixes all the existing violations.
133 lines
4.1 KiB
TypeScript
133 lines
4.1 KiB
TypeScript
import { X } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import React, { useState } from 'react'
|
|
import { extensions } from 'shared-data'
|
|
import { Badge, Input } from 'ui'
|
|
import { GlassPanel } from 'ui-patterns/GlassPanel'
|
|
|
|
type Extension = {
|
|
name: string
|
|
comment: string
|
|
tags: string[]
|
|
link: string
|
|
}
|
|
|
|
type LinkTarget = React.ComponentProps<'a'>['target']
|
|
|
|
function getLinkTarget(link: string): LinkTarget {
|
|
// Link is relative, open in the same tab
|
|
if (link.startsWith('/')) {
|
|
return '_self'
|
|
}
|
|
// Link is external, open in a new tab
|
|
return '_blank'
|
|
}
|
|
|
|
function getUniqueTags(json: Extension[]): string[] {
|
|
const tags: string[] = []
|
|
for (const item of json) {
|
|
if (item.tags) {
|
|
tags.push(...item.tags)
|
|
}
|
|
}
|
|
return [...new Set(tags)]
|
|
}
|
|
|
|
export default function Extensions() {
|
|
const [searchTerm, setSearchTerm] = useState<string>('')
|
|
const [filters, setFilters] = useState<string[]>([])
|
|
|
|
const tags = getUniqueTags(extensions)
|
|
|
|
function handleChecked(tag: string) {
|
|
if (filters.includes(tag)) {
|
|
setFilters(filters.filter((x) => x !== tag))
|
|
} else {
|
|
setFilters([...filters, tag])
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className="mb-8 grid">
|
|
<label className="mb-2 text-xs text-foreground-light">Search extensions</label>
|
|
<Input
|
|
type="text"
|
|
placeholder="Extension name"
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|
/>
|
|
</div>
|
|
<div className="lg:grid lg:grid-cols-12">
|
|
<div className="col-span-3 not-prose">
|
|
<div className="lg:sticky top-32">
|
|
<h3 className="text-sm text-foreground-light">Filter</h3>
|
|
<ul className="mt-3 flex flex-wrap lg:grid gap-2 grow">
|
|
{tags.sort().map((tag) => (
|
|
<li key={tag}>
|
|
<label
|
|
htmlFor={tag}
|
|
className={`text-sm text-foreground-lighter py-0.5 px-2 capitalize inline-block rounded-lg hover:bg-surface-100 cursor-pointer border ${
|
|
filters.includes(tag) ? 'bg-surface-100 ' : ''
|
|
}`}
|
|
>
|
|
<span className="flex items-center gap-1">
|
|
<input
|
|
type="checkbox"
|
|
className="sr-only"
|
|
id={tag}
|
|
name={tag}
|
|
value={tag}
|
|
onChange={() => handleChecked(tag)}
|
|
checked={filters.includes(tag)}
|
|
/>
|
|
{tag}
|
|
<span>{filters.includes(tag) && <X size={12} />}</span>
|
|
</span>
|
|
</label>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
<p className="mt-2">
|
|
<button
|
|
type="reset"
|
|
className="text-xs hover:underline"
|
|
onClick={() => setFilters([])}
|
|
>
|
|
Reset
|
|
</button>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="col-span-9 mt-4 lg:mt-0">
|
|
<div className="grid gap-4">
|
|
{extensions
|
|
.filter((x) => x.name.indexOf(searchTerm) >= 0)
|
|
.filter((x) =>
|
|
filters.length === 0 ? x : x.tags.some((item) => filters.includes(item))
|
|
)
|
|
.map((extension) => (
|
|
<Link
|
|
href={extension.link}
|
|
target={getLinkTarget(extension.link)}
|
|
className="no-underline"
|
|
>
|
|
<GlassPanel title={extension.name} background={false} key={extension.name}>
|
|
<p className="mt-4">
|
|
{extension.comment.charAt(0).toUpperCase() + extension.comment.slice(1)}
|
|
</p>
|
|
{extension.deprecated && (
|
|
<Badge variant="destructive">
|
|
Deprecated in {extension.deprecated.join(', ')}
|
|
</Badge>
|
|
)}
|
|
</GlassPanel>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|