studio-error-handling

โดย supabase

รูปแบบการแสดงข้อผิดพลาดและการแก้ไขปัญหาสำหรับ Supabase Studio ใช้เมื่อ

npx skills add https://github.com/supabase/supabase --skill studio-error-handling

Studio Error Handling Pattern

Full docs and code examples: apps/studio/components/interfaces/ErrorHandling/README.md

How it works

Classification happens in the data layer: handleError in data/fetchers.ts tests the error message against ERROR_PATTERNS and throws the matching error subclass (e.g. ConnectionTimeoutError extends ResponseError). The component (ErrorMatcher) reads errorType from the instance and does an O(1) lookup — it never does regex matching.

handleError() → throws ConnectionTimeoutError → React Query catches → ErrorMatcher reads errorType → renders troubleshooting

Key files

FilePurpose
data/error-patterns.tsArray of { pattern, ErrorClass } — the regex lives here
types/api-errors.tsError classes, KnownErrorType union, ClassifiedError type
ErrorMatcher.tsxComponent — reads errorType, looks up mapping, renders
error-mappings.tsxRecord<KnownErrorType, { id, Troubleshooting: ComponentType }>
errorMappings/ConnectionTimeout.tsxReference troubleshooting component
TroubleshootingSections.tsxReusable accordion section components
TroubleshootingAccordion.tsxAccordion wrapper with telemetry

Usage

Pass the full error object from React Query — not error.message:

{
  isError && (
    <ErrorMatcher title="Failed to load tables" error={error} supportFormParams={{ projectRef }} />
  )
}

What NOT to do

  • Do not pass error.message to ErrorMatcher — pass the full error object so the class is preserved.
  • Do not put regex patterns in error-mappings.tsx — they belong in data/error-patterns.ts.
  • Do not use Object.assign to stamp errorType — throw a proper subclass instead.
  • Do not pass a raw URL string for support — use supportFormParams={{ projectRef }}.
  • Do not put the page title inside the error mapping — it belongs on the <ErrorMatcher> caller.
  • Do not add callback props (onDebugWithAI, onRestartProject) to troubleshooting components — use hooks inside them instead.

Skills เพิ่มเติมจาก supabase

studio-e2e-tests
supabase
เขียนและรันการทดสอบ E2E ด้วย Playwright สำหรับ Supabase Studio ใช้เมื่อถูกถาม
pm-the-docs
supabase
Docs-PM การสนับสนุนการตัดสินใจสำหรับกระบวนการเขียน "Write the docs" — ช่วยตัดสินใจเกี่ยวกับกลุ่มผู้ชม ขั้นตอน และขอบเขตงานแบบครอบคลุมในช่วง Frame และ Shape stages,…
studio-best-practices
supabase
แนวทางปฏิบัติที่ดีที่สุดสำหรับ React และ TypeScript สำหรับ Supabase Studio ใช้เมื่อเขียนหรือตรวจสอบคอมโพเนนต์ของ Studio — ครอบคลุมการตั้งชื่อบูลีน โครงสร้างคอมโพเนนต์…
docs-content
supabase
เขียน แก้ไข จัดระเบียบ และตรวจสอบเนื้อหา Supabase ทุกที่ใน apps/docs — คู่มือ บทอธิบาย บทช่วยสอน รายการแก้ไขปัญหา เอกสารอ้างอิง และ…
studio-mock-api-tests
supabase
การทดสอบคอมโพเนนต์สำหรับ Supabase Studio ที่จำลองคำขอ API ที่ชั้นเครือข่ายด้วย MSW ใช้เมื่อเขียนหรือตรวจสอบการทดสอบคอมโพเนนต์ที่ใช้งาน React…
studio-ui-patterns
supabase
ดีไซน์ซิสเต็ม UI แพตเทิร์นสำหรับ Supabase Studio ใช้เมื่อสร้างหรืออัปเดตหน้าเพจ ฟอร์ม ตาราง แผนภูมิ สถานะว่าง การนำทาง การ์ด การแจ้งเตือน หรือไซด์…
react-hook-form
supabase
แก้ไขการใช้งาน React Hook Form ให้ถูกต้องทุกที่ใน monorepo — data flow, subscriptions, reset, dirty state, number inputs, และกฎของ controlled-input. โหลดสิ่งนี้…
studio-queries
supabase
ข้อกำหนดของ React Query สำหรับการดึงข้อมูลใน Supabase Studio ใช้เมื่อเขียนหรือตรวจสอบ query hooks, mutation hooks หรือ query keys ใน apps/studio/data/ —…