SelectCellHeader() — supabase Function Reference
Architecture documentation for the SelectCellHeader() function in SelectColumn.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/grid/components/grid/SelectColumn.tsx lines 164–205
function SelectCellHeader({
disabled,
tabIndex,
value,
onChange,
onClick,
'aria-label': ariaLabel,
'aria-labelledby': ariaLabelledBy,
}: SelectCellHeaderProps) {
const snap = useTableEditorTableStateSnapshot()
const inputRef = useRef<HTMLInputElement>(null)
// indeterminate state === some rows are selected but not all
const isIndeterminate = snap.selectedRows.size > 0 && !snap.allRowsSelected
useEffect(() => {
if (inputRef.current) {
inputRef.current.indeterminate = isIndeterminate
}
}, [isIndeterminate])
function handleChange(e: ChangeEvent<HTMLInputElement>) {
onChange(e.target.checked, (e.nativeEvent as MouseEvent).shiftKey)
}
return (
<div className="sb-grid-select-cell__header">
<input
ref={inputRef}
aria-label={ariaLabel}
aria-labelledby={ariaLabelledBy}
tabIndex={tabIndex}
type="checkbox"
className="sb-grid-select-cell__header__input"
disabled={disabled}
checked={value}
onChange={handleChange}
onClick={onClick}
/>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free