SchemaTable() — supabase Function Reference
Architecture documentation for the SchemaTable() function in SchemaTable.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Database/Hooks/HooksList/SchemaTable.tsx lines 14–58
export const SchemaTable = ({
schema,
filterString,
editHook = noop,
deleteHook = noop,
}: SchemaTableProps) => {
return (
<div key={schema}>
<div className="sticky top-0 backdrop-blur backdrop-filter">
<div className="flex items-baseline space-x-1 py-2">
<h5 className="text-foreground-light">schema</h5>
<h4>{schema}</h4>
</div>
</div>
<Table
className="table-fixed"
head={
<>
<Table.th key="name" className="w-[20%]">
<p className="translate-x-[36px]">Name</p>
</Table.th>
<Table.th key="table" className="w-[15%] hidden lg:table-cell">
Table
</Table.th>
<Table.th key="events" className="w-[24%] hidden xl:table-cell">
Events
</Table.th>
<Table.th key="webhook" className="hidden xl:table-cell">
Webhook
</Table.th>
<Table.th key="buttons" className="w-[5%]"></Table.th>
</>
}
body={
<HookList
filterString={filterString}
schema={schema}
editHook={editHook}
deleteHook={deleteHook}
/>
}
/>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free