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
13 lines
432 B
TypeScript
13 lines
432 B
TypeScript
import { ShimmeringLoader } from 'ui-patterns'
|
|
|
|
export const DocViewLoading = () => {
|
|
return (
|
|
<div className="w-full h-full overflow-y-auto flex flex-col py-10 space-y-2">
|
|
<ShimmeringLoader className="h-2 w-24 max-w-full" />
|
|
<ShimmeringLoader className="h-2 w-96 max-w-full" />
|
|
<ShimmeringLoader className="h-2 w-96 max-w-full" />
|
|
<ShimmeringLoader className="h-2 w-96 max-w-full" />
|
|
</div>
|
|
)
|
|
}
|