1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Convert Table to TypeScript

This commit is contained in:
Mark McDowall
2025-01-06 16:48:33 -08:00
parent d8a147d234
commit 0b58278e15
57 changed files with 959 additions and 1239 deletions
@@ -0,0 +1,46 @@
import React, { useCallback } from 'react';
import CheckInput from 'Components/Form/CheckInput';
import { CheckInputChanged } from 'typings/inputs';
import { SelectStateInputProps } from 'typings/props';
import VirtualTableRowCell, {
VirtualTableRowCellProps,
} from './VirtualTableRowCell';
import styles from './VirtualTableSelectCell.css';
interface VirtualTableSelectCellProps extends VirtualTableRowCellProps {
inputClassName?: string;
id: number;
isSelected?: boolean;
isDisabled: boolean;
onSelectedChange: (options: SelectStateInputProps) => void;
}
function VirtualTableSelectCell({
inputClassName = styles.input,
id,
isSelected = false,
isDisabled,
onSelectedChange,
...otherProps
}: VirtualTableSelectCellProps) {
const handleChange = useCallback(
({ value, shiftKey }: CheckInputChanged) => {
onSelectedChange({ id, value, shiftKey });
},
[id, onSelectedChange]
);
return (
<VirtualTableRowCell className={styles.cell} {...otherProps}>
<CheckInput
className={inputClassName}
name={id.toString()}
value={isSelected}
isDisabled={isDisabled}
onChange={handleChange}
/>
</VirtualTableRowCell>
);
}
export default VirtualTableSelectCell;