Browse Source
🚧 Work in progress: Implementing form components.
🚧 Work in progress: Implementing form components.
🎨 Styling updates for search form. 📅 Added date picker functionality. 🏠 Improved location input handling. 👥 Enhanced guest input handling. 🐛 Fixed minor bugs in the search form. 🚀 Completed initial setup of StaySearchForm component.main
John Doe
1 year ago
1 changed files with 145 additions and 0 deletions
@ -0,0 +1,145 @@ |
|||
"use client"; |
|||
|
|||
import converSelectedDateToString from "@/utils/converSelectedDateToString"; |
|||
import React, { useState } from "react"; |
|||
import { GuestsObject } from "../../type"; |
|||
import GuestsInput from "../GuestsInput"; |
|||
import LocationInput from "../LocationInput"; |
|||
import DatesRangeInput from "../DatesRangeInput"; |
|||
|
|||
const StaySearchForm = () => { |
|||
//
|
|||
const [fieldNameShow, setFieldNameShow] = useState< |
|||
"location" | "dates" | "guests" |
|||
>("location"); |
|||
//
|
|||
const [locationInputTo, setLocationInputTo] = useState(""); |
|||
const [guestInput, setGuestInput] = useState<GuestsObject>({ |
|||
guestAdults: 0, |
|||
guestChildren: 0, |
|||
guestInfants: 0, |
|||
}); |
|||
const [startDate, setStartDate] = useState<Date | null>( |
|||
new Date("2023/02/06") |
|||
); |
|||
const [endDate, setEndDate] = useState<Date | null>(new Date("2023/02/23")); |
|||
//
|
|||
|
|||
const onChangeDate = (dates: [Date | null, Date | null]) => { |
|||
const [start, end] = dates; |
|||
setStartDate(start); |
|||
setEndDate(end); |
|||
}; |
|||
|
|||
const renderInputLocation = () => { |
|||
const isActive = fieldNameShow === "location"; |
|||
return ( |
|||
<div |
|||
className={`w-full bg-white dark:bg-neutral-800 ${ |
|||
isActive |
|||
? "rounded-2xl shadow-lg" |
|||
: "rounded-xl shadow-[0px_2px_2px_0px_rgba(0,0,0,0.25)]" |
|||
}`}
|
|||
> |
|||
{!isActive ? ( |
|||
<button |
|||
className={`w-full flex justify-between text-sm font-medium p-4`} |
|||
onClick={() => setFieldNameShow("location")} |
|||
> |
|||
<span className="text-neutral-400">Where</span> |
|||
<span>{locationInputTo || "Location"}</span> |
|||
</button> |
|||
) : ( |
|||
<LocationInput |
|||
defaultValue={locationInputTo} |
|||
onChange={(value) => { |
|||
setLocationInputTo(value); |
|||
setFieldNameShow("dates"); |
|||
}} |
|||
/> |
|||
)} |
|||
</div> |
|||
); |
|||
}; |
|||
|
|||
const renderInputDates = () => { |
|||
const isActive = fieldNameShow === "dates"; |
|||
|
|||
return ( |
|||
<div |
|||
className={`w-full bg-white dark:bg-neutral-800 overflow-hidden ${ |
|||
isActive |
|||
? "rounded-2xl shadow-lg" |
|||
: "rounded-xl shadow-[0px_2px_2px_0px_rgba(0,0,0,0.25)]" |
|||
}`}
|
|||
> |
|||
{!isActive ? ( |
|||
<button |
|||
className={`w-full flex justify-between text-sm font-medium p-4 `} |
|||
onClick={() => setFieldNameShow("dates")} |
|||
> |
|||
<span className="text-neutral-400">When</span> |
|||
<span> |
|||
{startDate |
|||
? converSelectedDateToString([startDate, endDate]) |
|||
: "Add date"} |
|||
</span> |
|||
</button> |
|||
) : ( |
|||
<DatesRangeInput /> |
|||
)} |
|||
</div> |
|||
); |
|||
}; |
|||
|
|||
const renderInputGuests = () => { |
|||
const isActive = fieldNameShow === "guests"; |
|||
let guestSelected = ""; |
|||
if (guestInput.guestAdults || guestInput.guestChildren) { |
|||
const guest = |
|||
(guestInput.guestAdults || 0) + (guestInput.guestChildren || 0); |
|||
guestSelected += `${guest} guests`; |
|||
} |
|||
|
|||
if (guestInput.guestInfants) { |
|||
guestSelected += `, ${guestInput.guestInfants} infants`; |
|||
} |
|||
|
|||
return ( |
|||
<div |
|||
className={`w-full bg-white dark:bg-neutral-800 overflow-hidden ${ |
|||
isActive |
|||
? "rounded-2xl shadow-lg" |
|||
: "rounded-xl shadow-[0px_2px_2px_0px_rgba(0,0,0,0.25)]" |
|||
}`}
|
|||
> |
|||
{!isActive ? ( |
|||
<button |
|||
className={`w-full flex justify-between text-sm font-medium p-4`} |
|||
onClick={() => setFieldNameShow("guests")} |
|||
> |
|||
<span className="text-neutral-400">Who</span> |
|||
<span>{guestSelected || `Add guests`}</span> |
|||
</button> |
|||
) : ( |
|||
<GuestsInput defaultValue={guestInput} onChange={setGuestInput} /> |
|||
)} |
|||
</div> |
|||
); |
|||
}; |
|||
|
|||
return ( |
|||
<div> |
|||
<div className="w-full space-y-5"> |
|||
{/* */} |
|||
{renderInputLocation()} |
|||
{/* */} |
|||
{renderInputDates()} |
|||
{/* */} |
|||
{renderInputGuests()} |
|||
</div> |
|||
</div> |
|||
); |
|||
}; |
|||
|
|||
export default StaySearchForm; |
Write
Preview
Loading…
Cancel
Save
Reference in new issue