2023-04-06 09:39:24 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
// ui
|
|
|
|
import { CustomSelect } from "components/ui";
|
|
|
|
// icons
|
2023-04-11 12:24:01 +00:00
|
|
|
import { PlayIcon } from "@heroicons/react/24/outline";
|
2023-04-06 09:39:24 +00:00
|
|
|
// fetch-keys
|
2023-04-11 12:24:01 +00:00
|
|
|
import useEstimateOption from "hooks/use-estimate-option";
|
2023-04-06 09:39:24 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
value: number;
|
|
|
|
onChange: (value: number) => void;
|
|
|
|
};
|
|
|
|
|
2023-04-11 12:24:01 +00:00
|
|
|
export const IssueEstimateSelect: React.FC<Props> = ({ value, onChange }) => {
|
|
|
|
const { isEstimateActive, estimatePoints } = useEstimateOption();
|
2023-04-06 09:39:24 +00:00
|
|
|
|
2023-04-11 12:24:01 +00:00
|
|
|
if (!isEstimateActive) return null;
|
2023-04-06 09:39:24 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<CustomSelect
|
|
|
|
value={value}
|
|
|
|
label={
|
2023-04-11 12:24:01 +00:00
|
|
|
<div className="flex items-center gap-2 text-xs">
|
|
|
|
<PlayIcon className="h-4 w-4 text-gray-700 -rotate-90" />
|
2023-04-06 09:39:24 +00:00
|
|
|
<span className={`${value ? "text-gray-600" : "text-gray-500"}`}>
|
|
|
|
{estimatePoints?.find((e) => e.key === value)?.value ?? "Estimate points"}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
onChange={onChange}
|
|
|
|
position="right"
|
2023-04-11 12:24:01 +00:00
|
|
|
width="w-full min-w-[6rem]"
|
|
|
|
noChevron
|
2023-04-06 09:39:24 +00:00
|
|
|
>
|
|
|
|
{estimatePoints &&
|
|
|
|
estimatePoints.map((point) => (
|
2023-04-08 08:25:30 +00:00
|
|
|
<CustomSelect.Option className="w-full " key={point.key} value={point.key}>
|
|
|
|
<>
|
|
|
|
<span>
|
|
|
|
<PlayIcon className="h-4 w-4 -rotate-90" />
|
|
|
|
</span>
|
|
|
|
{point.value}
|
|
|
|
</>
|
2023-04-06 09:39:24 +00:00
|
|
|
</CustomSelect.Option>
|
|
|
|
))}
|
|
|
|
</CustomSelect>
|
|
|
|
);
|
|
|
|
};
|