'use client'; import clsx from 'clsx'; import { SelectSingle } from '@/components/Input'; import { CProps } from '@/components/props'; import { IOperation } from '../models/oss'; import { matchOperation } from '../models/ossAPI'; interface SelectOperationProps extends CProps.Styling { value: IOperation | null; onChange: (newValue: IOperation | null) => void; items?: IOperation[]; placeholder?: string; noBorder?: boolean; } export function SelectOperation({ className, items, value, onChange, placeholder = 'Выберите операцию', ...restProps }: SelectOperationProps) { const options = items?.map(cst => ({ value: cst.id, label: `${cst.alias}: ${cst.title}` })) ?? []; function filter(option: { value: string | undefined; label: string }, query: string) { const operation = items?.find(item => item.id === Number(option.value)); return !operation ? false : matchOperation(operation, query); } return ( onChange(items?.find(cst => cst.id === data?.value) ?? null)} filterOption={filter} placeholder={placeholder} {...restProps} /> ); }