plane/apps/app/components/analytics/select/y-axis.tsx

27 lines
681 B
TypeScript
Raw Normal View History

2023-05-16 05:11:37 +00:00
// ui
import { CustomSelect } from "components/ui";
// types
import { TYAxisValues } from "types";
2023-05-16 05:11:37 +00:00
// constants
import { ANALYTICS_Y_AXIS_VALUES } from "constants/analytics";
type Props = {
value: TYAxisValues;
onChange: () => void;
};
export const SelectYAxis: React.FC<Props> = ({ value, onChange }) => (
<CustomSelect
value={value}
label={<span>{ANALYTICS_Y_AXIS_VALUES.find((v) => v.value === value)?.label ?? "None"}</span>}
onChange={onChange}
width="w-full"
>
{ANALYTICS_Y_AXIS_VALUES.map((item) => (
<CustomSelect.Option key={item.value} value={item.value}>
{item.label}
</CustomSelect.Option>
))}
</CustomSelect>
);