- Updated DoctorPage component to accept bookingResources prop for appointment list. - Added serviceQuery function to serialize service item UUIDs for API requests. - Introduced new API endpoints for fetching booking resources and resource slots. - Enhanced tests for new resource-based booking functionality, including resource selection and service availability. - Created ResourceSelect component for selecting appointment types, including doctor and resource options. - Updated appointment submission logic to include resource_uuid in payload when applicable. - Ensured UI reflects changes in booking flow without disrupting existing doctor-centric experience.
29 lines
1016 B
JavaScript
29 lines
1016 B
JavaScript
import DateTime from "@/app/component/date/dateTime";
|
|
|
|
function Hour({ doctor, setStep, date, isStep, setSelectedSlot, setSelectedDate, serviceMode = false, selectedServiceUuids = [], clinicUuid = null, resourceUuid = null, selectedLocation = null }) {
|
|
return (
|
|
<div className="flex relative mt-[24px] flex-col items-start gap-[12px] justify-start">
|
|
<p className="text-[#3B3B3B] text-[14px] md:text-[16px] font-bold">
|
|
2. انتخاب ساعت
|
|
</p>
|
|
<DateTime
|
|
date={date}
|
|
doctor={doctor}
|
|
setStep={setStep}
|
|
setSelectedSlot={setSelectedSlot}
|
|
setSelectedDate={setSelectedDate}
|
|
serviceMode={serviceMode}
|
|
selectedServiceUuids={selectedServiceUuids}
|
|
clinicUuid={clinicUuid}
|
|
resourceUuid={resourceUuid}
|
|
selectedLocation={selectedLocation}
|
|
/>
|
|
{!isStep && (
|
|
<div className="absolute left-0 top-0 w-full h-full bg-[rgba(255,255,255,0.84)]"></div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Hour;
|