import { GetStaticPaths, GetStaticProps } from "next"; import { useEffect } from "react"; import { Controller, useForm } from "react-hook-form"; import { z } from "zod"; import Schedule from "@calcom/features/schedules/components/Schedule"; import { availabilityAsString } from "@calcom/lib/availability"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { stringOrNumber } from "@calcom/prisma/zod-utils"; import { trpc } from "@calcom/trpc/react"; import useMeQuery from "@calcom/trpc/react/hooks/useMeQuery"; import type { Schedule as ScheduleType } from "@calcom/types/schedule"; import { Button, Form, Icon, Label, Shell, showToast, Skeleton, SkeletonText, Switch, TimezoneSelect, VerticalDivider, } from "@calcom/ui"; import { HttpError } from "@lib/core/http/error"; import { SelectSkeletonLoader } from "@components/availability/SkeletonLoader"; import EditableHeading from "@components/ui/EditableHeading"; const querySchema = z.object({ schedule: stringOrNumber, }); type AvailabilityFormValues = { name: string; schedule: ScheduleType; timeZone: string; isDefault: boolean; }; export default function Availability({ schedule }: { schedule: number }) { const { t, i18n } = useLocale(); const utils = trpc.useContext(); const me = useMeQuery(); const { timeFormat } = me.data || { timeFormat: null }; const { data, isLoading } = trpc.viewer.availability.schedule.get.useQuery({ scheduleId: schedule }); const form = useForm(); const { control, reset } = form; useEffect(() => { if (!isLoading && data) { reset({ name: data?.schedule?.name, schedule: data.availability, timeZone: data.timeZone, isDefault: data.isDefault, }); } }, [data, isLoading, reset]); const updateMutation = trpc.viewer.availability.schedule.update.useMutation({ onSuccess: async ({ prevDefaultId, currentDefaultId, ...data }) => { if (prevDefaultId && currentDefaultId) { // check weather the default schedule has been changed by comparing previous default schedule id and current default schedule id. if (prevDefaultId !== currentDefaultId) { // if not equal, invalidate previous default schedule id and refetch previous default schedule id. utils.viewer.availability.schedule.get.invalidate({ scheduleId: prevDefaultId }); utils.viewer.availability.schedule.get.refetch({ scheduleId: prevDefaultId }); } } utils.viewer.availability.schedule.get.setData({ scheduleId: data.schedule.id }, data); utils.viewer.availability.list.invalidate(); showToast( t("availability_updated_successfully", { scheduleName: data.schedule.name, }), "success" ); }, onError: (err) => { if (err instanceof HttpError) { const message = `${err.statusCode}: ${err.message}`; showToast(message, "error"); } }, }); return ( } /> } subtitle={ data ? ( data.schedule.availability.map((availability) => ( {availabilityAsString(availability, { locale: i18n.language, hour12: timeFormat === 12 })}
)) ) : ( ) } CTA={
{t("set_to_default")} { form.setValue("isDefault", e); }} />
}>
{/* TODO: Find a better way to guarantee alignment, but for now this'll do. */}
{ updateMutation.mutate({ scheduleId: schedule, ...values, }); }} className="-mx-4 flex flex-col pb-16 sm:mx-0 xl:flex-row xl:space-x-6">

{t("change_start_end")}

{typeof me.data?.weekStart === "string" && ( )}
value ? ( onChange(timezone.value)} /> ) : ( ) } />

{t("something_doesnt_look_right")}

); } export const getStaticProps: GetStaticProps = (ctx) => { const params = querySchema.safeParse(ctx.params); if (!params.success) return { notFound: true }; return { props: { schedule: params.data.schedule, }, revalidate: 10, // seconds }; }; export const getStaticPaths: GetStaticPaths = () => { return { paths: [], fallback: "blocking", }; };