PolicyEditorModalTitle() — supabase Function Reference
Architecture documentation for the PolicyEditorModalTitle() function in PolicyEditorModalTitle.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Auth/Policies/PolicyEditorModal/PolicyEditorModalTitle.tsx lines 19–67
const PolicyEditorModalTitle = ({
view,
schema,
table,
isNewPolicy,
showAssistantPreview,
onSelectBackFromTemplates = noop,
onToggleFeaturePreviewModal,
}: PolicyEditorModalTitleProps) => {
const getTitle = () => {
if (view === POLICY_MODAL_VIEWS.EDITOR || view === POLICY_MODAL_VIEWS.SELECTION) {
return `${isNewPolicy ? 'Adding new policy to' : 'Editing policy from'} ${schema}.${table}`
}
if (view === POLICY_MODAL_VIEWS.REVIEW) {
return `Reviewing policy to be ${isNewPolicy ? 'created' : 'updated'} on ${schema}.${table}`
}
}
if (view === POLICY_MODAL_VIEWS.TEMPLATES) {
return (
<div>
<div className="flex items-center space-x-3">
<span
onClick={onSelectBackFromTemplates}
className="cursor-pointer text-foreground-lighter transition-colors hover:text-foreground"
>
<ChevronLeft strokeWidth={2} size={14} />
</span>
<h4>Select a template to use for your new policy</h4>
</div>
</div>
)
}
return (
<div className="w-full flex items-center justify-between gap-x-4">
<h4 className="truncate" title={getTitle()}>
{getTitle()}
</h4>
<div className="flex items-center gap-x-2 pr-6">
{showAssistantPreview && view === POLICY_MODAL_VIEWS.EDITOR && (
<Button type="default" icon={<FlaskConical />} onClick={onToggleFeaturePreviewModal}>
Try Supabase Assistant
</Button>
)}
<DocsButton className="mt-[-4px]" href={`${DOCS_URL}/learn/auth-deep-dive/auth-policies`} />
</div>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free