mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
'use client';
|
|
|
|
import clsx from 'clsx';
|
|
|
|
import { CProps } from '@/components/props';
|
|
import SelectSingle from '@/components/ui/SelectSingle';
|
|
import { IVersionInfo, VersionID } from '@/models/library';
|
|
import { labelVersion } from '@/utils/labels';
|
|
|
|
interface SelectVersionProps extends CProps.Styling {
|
|
id?: string;
|
|
items?: IVersionInfo[];
|
|
value?: VersionID;
|
|
onChange: (newValue?: VersionID) => void;
|
|
|
|
placeholder?: string;
|
|
noBorder?: boolean;
|
|
}
|
|
|
|
function SelectVersion({ id, className, items, value, onChange, ...restProps }: SelectVersionProps) {
|
|
const options = [
|
|
{
|
|
value: undefined,
|
|
label: labelVersion(undefined)
|
|
},
|
|
...(items?.map(version => ({
|
|
value: version.id,
|
|
label: version.version
|
|
})) ?? [])
|
|
];
|
|
|
|
const valueLabel = (() => {
|
|
const version = items?.find(ver => ver.id === value);
|
|
return version ? version.version : labelVersion(undefined);
|
|
})();
|
|
|
|
return (
|
|
<SelectSingle
|
|
id={id}
|
|
className={clsx('min-w-[12rem] text-ellipsis', className)}
|
|
options={options}
|
|
value={{ value: value, label: valueLabel }}
|
|
onChange={data => onChange(data?.value)}
|
|
{...restProps}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default SelectVersion;
|