mirror of
https://github.com/supabase/supabase.git
synced 2026-07-02 00:54:25 +08:00
## Context Was informed of this UI bug through this PR [here](https://github.com/supabase/supabase/pull/42126) - apart from shifting the ScrollArea component, there's also known issue with ScrollArea and Popover which we need to set `modal` to `true` for the `Popover` ## To test - [ ] Verify that you can scroll via mouse wheel on the ColumnType component (Table Editor -> new table -> column type) <img width="698" height="471" alt="image" src="https://github.com/user-attachments/assets/b24af3f9-80f6-4dfc-9fa2-1492fe597598" /> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Improvements** * Popover in column editor now supports modal rendering mode with enhanced scrolling behavior. <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
Writing components
Where to create your components
- For components that declare the general structure and layout of a page:
/components/layouts/xxx
- For components that are tightly coupled to a specific interface:
/components/interfaces/xxx
- For components that are meant to be reusable across multiple pages:
/components/ui/xxx
- Note: We're gradually moving files out of the
to-be-cleanedfolder into the respective folders as we refactor
Component structure
- If a component has constants and utility methods that are tightly coupled to itself, keep them close to the component and enclose them in a folder with an
index.tsxas an entry point - Otherwise it can just be a file on its own
- For example:
-
components/ui - SampleComponentA - SampleComponentA.tsx - SampleComponentA.constants.ts - SampleComponentA.utils.ts - SampleComponentA.types.ts - index.ts - SampleComponentB.tsx
-
Template for building components
// Declare the prop types of your component
interface ComponentAProps {
sampleProp: string
}
// Name your component accordingly
const ComponentA = ({ sampleProp }: ComponentAProps) => {
return <div>ComponentA: {sampleProp}</div>
}
export default ComponentA