getDisabledGuidePaths() — supabase Function Reference
Architecture documentation for the getDisabledGuidePaths() function in NavigationPageStatus.utils.ts from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD 44f452ed_9ac1_ef7b_d0f6_38537df333ce["getDisabledGuidePaths()"] 1673fedf_e2e8_e78f_d1bc_ea27d0b7b85a["checkGuidePageEnabled()"] 1673fedf_e2e8_e78f_d1bc_ea27d0b7b85a -->|calls| 44f452ed_9ac1_ef7b_d0f6_38537df333ce a03c92fe_6453_0afc_7e5b_7e9bbd9e669e["collectDisabledPaths()"] 44f452ed_9ac1_ef7b_d0f6_38537df333ce -->|calls| a03c92fe_6453_0afc_7e5b_7e9bbd9e669e style 44f452ed_9ac1_ef7b_d0f6_38537df333ce fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/docs/features/docs/NavigationPageStatus.utils.ts lines 102–118
function getDisabledGuidePaths(): Set<string> {
if (cachedDisabledPaths === null) {
cachedDisabledPaths = new Set<string>()
// Collect disabled paths from global menu items
collectDisabledPaths(GLOBAL_MENU_ITEMS, cachedDisabledPaths)
// Collect disabled paths from section-specific navigation
Object.values(SECTION_NAV_MAPS).forEach((sectionNav) => {
if (sectionNav.items) {
collectDisabledPaths([sectionNav], cachedDisabledPaths!)
}
})
}
return cachedDisabledPaths
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does getDisabledGuidePaths() do?
getDisabledGuidePaths() is a function in the supabase codebase.
What does getDisabledGuidePaths() call?
getDisabledGuidePaths() calls 1 function(s): collectDisabledPaths.
What calls getDisabledGuidePaths()?
getDisabledGuidePaths() is called by 1 function(s): checkGuidePageEnabled.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free