This video is available to students only

Select Day

Creating the "Choose Date" Page

So, the next page in your flow is where the user will select which day they want to book. This is the core of what we are getting at with this little app.

You might be tempted to reach for a calendar component library. However, in my opinion, the problem is rather trivial—enough that I think you might just as well solve it yourself. What I will reach for is a date/time library. The Temporal proposal looks very promising and will probably mean that we might not need a library at all in the future. But it's not standard just yet, so we'll use the date-fns library. Install it in the frontend: npm i date-fns

Start with creating the page in a new file: /services/frontend/src/ChooseDatePage.tsx:

Update your NewBooking.tsx file to import the component instead of the placeholder ChooseDatePage component.

With this, you have the outline for the date selection page. There are two placeholders for months (current and next), put into a responsive container. It should look like this:

Screenshot

You have a state variable called thisMonth which is set to the first day of the current month, using a function provided by date-fns. You also calculate what the next month is using another helper function.

This lesson preview is part of the Fullstack Typescript with TailwindCSS and tRPC Using Modern Features of PostgreSQL course and can be unlocked immediately with a \newline Pro subscription or a single-time purchase. Already have access to this course? Log in here.

Unlock This Course

Get unlimited access to Fullstack Typescript with TailwindCSS and tRPC Using Modern Features of PostgreSQL, plus 70+ \newline books, guides and courses with the \newline Pro subscription.

Thumbnail for the \newline course Fullstack Typescript with TailwindCSS and tRPC Using Modern Features of PostgreSQL