mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 09:50:33 -04:00
f7bf7d7ce4
Feature / Refactor ## What is the current behavior? Data API docs live at the `/api` route as a standalone page. Old links point to the previous location. ## What is the new behavior? Data API docs are moved to the integrations section with a dedicated docs tab and settings tab. Old links are cleaned up, a mobile menu is added for data API docs navigation, and minor code review fixes are applied. ## Additional context Resolves FE-2517 ## Summary by CodeRabbit * **New Features** * Revamped API docs UI with reusable section layout, language toggle (JS/Bash), API key selection, and improved code snippets * Added Data API docs tab, mobile navigation, and dedicated loading/error/disabled states * **Navigation Updates** * Moved API docs and related links into the Integrations/Data API area and added redirects to new routes * Updated various internal links to the new Data API settings and overview locations * **Tests** * Added comprehensive unit tests for Data API utilities
15 lines
376 B
TypeScript
15 lines
376 B
TypeScript
interface DocViewErrorProps {
|
|
error: Error | null
|
|
}
|
|
|
|
export const DocViewError = ({ error }: DocViewErrorProps) => {
|
|
return (
|
|
<div className="p-6 mx-auto text-center sm:w-full md:w-3/4">
|
|
<div className="text-foreground-light">
|
|
<p>Error connecting to API</p>
|
|
<p>{error?.message ?? 'An unexpected error occurred'}</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|