import clsx from 'clsx'; import { TimeStatus } from '@/hooks/Mapper/types'; import { WdButton } from '@/hooks/Mapper/components/ui-kit/WdButton.tsx'; import { BUILT_IN_TOOLTIP_OPTIONS } from './constants.ts'; const LIFE_TIME = [ { id: TimeStatus._1h, label: '1H', className: 'bg-purple-400 hover:!bg-purple-400', inactiveClassName: 'bg-purple-400/30', description: 'Less than one 1 hours remaining', }, { id: TimeStatus._4h, label: '4H', className: 'bg-purple-300 hover:!bg-purple-300', inactiveClassName: 'bg-purple-300/30', description: 'Less than one 4 hours remaining', }, { id: TimeStatus._4h30m, label: '4.5H', className: 'bg-indigo-300 hover:!bg-indigo-300', inactiveClassName: 'bg-indigo-300/30', description: 'Less than one 4.5 hours remaining. All small holes have such lifetime.', }, // TODO: we will skip it. // { // id: TimeStatus._12h, // label: '12H', // className: 'bg-orange-300 hover:!bg-orange-300', // inactiveClassName: 'bg-orange-400/30', // description: 'Less than one 12 hours remaining. C729 hole have such lifetime.', // }, { id: TimeStatus._16h, label: '16H', className: 'bg-orange-300 hover:!bg-orange-300', inactiveClassName: 'bg-orange-400/30', description: 'Less than one 16 hours remaining', }, { id: TimeStatus._24h, label: '24H', className: 'bg-orange-300 hover:!bg-orange-300', inactiveClassName: 'bg-orange-400/30', description: 'Less than one 24 hours remaining', }, { id: TimeStatus._48h, label: '48H', className: 'bg-orange-300 hover:!bg-orange-300', inactiveClassName: 'bg-orange-400/30', description: 'Less than one 24 hours remaining. Related only with C6. B041, B520, U319, C391.', }, ]; export interface WdLifetimeSelectorProps { lifetime?: TimeStatus; onChangeLifetime(lifetime: TimeStatus): void; className?: string; } export const WdLifetimeSelector = ({ lifetime = TimeStatus._24h, onChangeLifetime, className, }: WdLifetimeSelectorProps) => { return (
{LIFE_TIME.map(x => ( onChangeLifetime(x.id)} > {x.label} ))}
); };