Fix/incorrect timezone on booking success (#7544)
* set the selected timezone to formatToLocalizedTimezone function * remove console.logspull/7553/head
parent
69808bb9a4
commit
33f35e77fd
|
@ -796,7 +796,6 @@ export function RecurringBookings({
|
|||
t,
|
||||
i18n: { language },
|
||||
} = useLocale();
|
||||
|
||||
const recurringBookingsSorted = recurringBookings
|
||||
? recurringBookings.sort((a: ConfigType, b: ConfigType) => (dayjs(a).isAfter(dayjs(b)) ? 1 : -1))
|
||||
: null;
|
||||
|
@ -823,7 +822,7 @@ export function RecurringBookings({
|
|||
{formatToLocalizedTime(dayjs(dateStr), language, undefined, !is24h)} -{" "}
|
||||
{formatToLocalizedTime(dayjs(dateStr).add(duration, "m"), language, undefined, !is24h)}{" "}
|
||||
<span className="text-bookinglight">
|
||||
({formatToLocalizedTimezone(dayjs(dateStr), language)})
|
||||
({formatToLocalizedTimezone(dayjs(dateStr), language, timeZone())})
|
||||
</span>
|
||||
</div>
|
||||
))}
|
||||
|
@ -843,7 +842,7 @@ export function RecurringBookings({
|
|||
{formatToLocalizedTime(date, language, undefined, !is24h)} -{" "}
|
||||
{formatToLocalizedTime(dayjs(date).add(duration, "m"), language, undefined, !is24h)}{" "}
|
||||
<span className="text-bookinglight">
|
||||
({formatToLocalizedTimezone(dayjs(dateStr), language)})
|
||||
({formatToLocalizedTimezone(dayjs(dateStr), language, timeZone())})
|
||||
</span>
|
||||
</div>
|
||||
))}
|
||||
|
@ -860,7 +859,7 @@ export function RecurringBookings({
|
|||
<br />
|
||||
{formatToLocalizedTime(date, language, undefined, !is24h)} -{" "}
|
||||
{formatToLocalizedTime(dayjs(date).add(duration, "m"), language, undefined, !is24h)}{" "}
|
||||
<span className="text-bookinglight">({formatToLocalizedTimezone(date, language)})</span>
|
||||
<span className="text-bookinglight">({formatToLocalizedTimezone(date, language, timeZone())})</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -75,12 +75,13 @@ export const formatToLocalizedTime = (
|
|||
export const formatToLocalizedTimezone = (
|
||||
date: Date | Dayjs,
|
||||
locale: string | undefined = undefined,
|
||||
timeZone: Intl.DateTimeFormatOptions["timeZone"],
|
||||
timeZoneName: Intl.DateTimeFormatOptions["timeZoneName"] = "long"
|
||||
) => {
|
||||
// Intl.DateTimeFormat doesn't format into a timezone only, so we must
|
||||
// formatToParts() and return the piece we want
|
||||
const theDate = date instanceof dayjs ? (date as Dayjs).toDate() : (date as Date);
|
||||
return Intl.DateTimeFormat(locale, { timeZoneName })
|
||||
return Intl.DateTimeFormat(locale, { timeZoneName, timeZone })
|
||||
.formatToParts(theDate)
|
||||
.find((d) => d.type == "timeZoneName")?.value;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue