mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 05:44:39 +08:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { FC } from 'react'
|
|
import Link from 'next/link'
|
|
import { Button, IconAlertCircle, IconLock } from '@supabase/ui'
|
|
import { PostgresPolicy, PostgresTable } from '@supabase/postgres-meta'
|
|
|
|
import { useStore } from 'hooks'
|
|
|
|
interface Props {
|
|
table: PostgresTable
|
|
}
|
|
|
|
const GridHeaderActions: FC<Props> = ({ table }) => {
|
|
const { ui, meta } = useStore()
|
|
const projectRef = ui.selectedProject?.ref
|
|
const policies = meta.policies.list((policy: PostgresPolicy) => policy.table_id === table.id)
|
|
|
|
return (
|
|
<div className="space-x-3 flex items-center">
|
|
<Link href={`/project/${projectRef}/auth/policies#${table.id}`}>
|
|
<a>
|
|
<Button
|
|
type={table.rls_enabled ? 'link' : 'warning'}
|
|
icon={
|
|
table.rls_enabled ? (
|
|
<IconLock strokeWidth={2} size={14} />
|
|
) : (
|
|
<IconAlertCircle strokeWidth={2} size={14} />
|
|
)
|
|
}
|
|
>
|
|
{/* RLS {table.rls_enabled ? 'is' : 'not'} enabled */}
|
|
{!table.rls_enabled ? 'RLS is not enabled' : `${policies.length} active RLS policies`}
|
|
</Button>
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default GridHeaderActions
|