mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
|
|
import { useMemo } from 'react';
|
|
|
|
import { CheckboxChecked, CheckboxNull } from '../Icons';
|
|
import { CheckboxProps } from './Checkbox';
|
|
import Label from './Label';
|
|
|
|
export interface TristateProps
|
|
extends Omit<CheckboxProps, 'value' | 'setValue'> {
|
|
value: boolean | null
|
|
setValue?: (newValue: boolean | null) => void
|
|
}
|
|
|
|
function Tristate({
|
|
id, required, disabled, tooltip, label,
|
|
widthClass = 'w-fit', value, setValue, ...props
|
|
}: TristateProps) {
|
|
const cursor = useMemo(
|
|
() => {
|
|
if (disabled) {
|
|
return 'cursor-not-allowed';
|
|
} else if (setValue) {
|
|
return 'cursor-pointer';
|
|
} else {
|
|
return ''
|
|
}
|
|
}, [disabled, setValue]);
|
|
const bgColor = useMemo(
|
|
() => {
|
|
return value !== false ? 'clr-primary' : 'clr-app'
|
|
}, [value]);
|
|
|
|
function handleClick(event: React.MouseEvent<HTMLButtonElement, MouseEvent>): void {
|
|
event.preventDefault();
|
|
if (disabled || !setValue) {
|
|
return;
|
|
}
|
|
if (value === false) {
|
|
setValue(null);
|
|
} else if (value === null) {
|
|
setValue(true);
|
|
} else {
|
|
setValue(false);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<button
|
|
id={id}
|
|
className={`flex items-center [&:not(:first-child)]:mt-3 clr-outline focus:outline-dotted focus:outline-1 ${widthClass}`}
|
|
title={tooltip}
|
|
disabled={disabled}
|
|
onClick={handleClick}
|
|
{...props}
|
|
>
|
|
<div className={`w-4 h-4 shrink-0 mt-0.5 border rounded-sm ${bgColor} ${cursor}`} >
|
|
{ value && <div className='mt-[1px] ml-[1px]'><CheckboxChecked /></div>}
|
|
{ value == null && <div className='mt-[1px] ml-[1px]'><CheckboxNull /></div>}
|
|
</div>
|
|
{ label &&
|
|
<Label
|
|
className={`${cursor} px-2 text-start`}
|
|
text={label}
|
|
required={required}
|
|
htmlFor={id}
|
|
/>}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export default Tristate;
|