mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-29 05:02:52 +08:00
123 lines
2.2 KiB
TypeScript
123 lines
2.2 KiB
TypeScript
import { useId } from 'react';
|
|
import { Select } from '@tih/ui';
|
|
|
|
export type Month = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
|
|
export type MonthYear = Readonly<{
|
|
month: Month;
|
|
year: number;
|
|
}>;
|
|
|
|
type Props = Readonly<{
|
|
errorMessage?: string;
|
|
monthLabel?: string;
|
|
monthRequired?: boolean;
|
|
onChange: (value: MonthYear) => void;
|
|
value: MonthYear;
|
|
yearLabel?: string;
|
|
yearRequired?: boolean;
|
|
}>;
|
|
|
|
const MONTH_OPTIONS = [
|
|
{
|
|
label: 'January',
|
|
value: 1,
|
|
},
|
|
{
|
|
label: 'February',
|
|
value: 2,
|
|
},
|
|
{
|
|
label: 'March',
|
|
value: 3,
|
|
},
|
|
{
|
|
label: 'April',
|
|
value: 4,
|
|
},
|
|
{
|
|
label: 'May',
|
|
value: 5,
|
|
},
|
|
{
|
|
label: 'June',
|
|
value: 6,
|
|
},
|
|
{
|
|
label: 'July',
|
|
value: 7,
|
|
},
|
|
{
|
|
label: 'August',
|
|
value: 8,
|
|
},
|
|
{
|
|
label: 'September',
|
|
value: 9,
|
|
},
|
|
{
|
|
label: 'October',
|
|
value: 10,
|
|
},
|
|
{
|
|
label: 'November',
|
|
value: 11,
|
|
},
|
|
{
|
|
label: 'December',
|
|
value: 12,
|
|
},
|
|
];
|
|
|
|
const NUM_YEARS = 5;
|
|
const YEAR_OPTIONS = Array.from({ length: NUM_YEARS }, (_, i) => {
|
|
const year = new Date().getFullYear() - NUM_YEARS + i + 1;
|
|
return {
|
|
label: String(year),
|
|
value: year,
|
|
};
|
|
});
|
|
|
|
export default function MonthYearPicker({
|
|
errorMessage,
|
|
monthLabel = 'Month',
|
|
value,
|
|
onChange,
|
|
yearLabel = 'Year',
|
|
monthRequired = false,
|
|
yearRequired = false,
|
|
}: Props) {
|
|
const hasError = errorMessage != null;
|
|
const errorId = useId();
|
|
|
|
return (
|
|
<div
|
|
aria-describedby={hasError ? errorId : undefined}
|
|
className="flex items-end space-x-4">
|
|
<Select
|
|
label={monthLabel}
|
|
options={MONTH_OPTIONS}
|
|
required={monthRequired}
|
|
value={value.month}
|
|
onChange={(newMonth) =>
|
|
onChange({ month: Number(newMonth) as Month, year: value.year })
|
|
}
|
|
/>
|
|
<Select
|
|
label={yearLabel}
|
|
options={YEAR_OPTIONS}
|
|
required={yearRequired}
|
|
value={value.year}
|
|
onChange={(newYear) =>
|
|
onChange({ month: value.month, year: Number(newYear) })
|
|
}
|
|
/>
|
|
{errorMessage && (
|
|
<p className="text-danger-600 mt-2 text-sm" id={errorId}>
|
|
{errorMessage}
|
|
</p>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|