d82f87aa2a
* wip * refactor(emails): remove circular dependencies from packages/emails - Extract renderEmail imports to use direct path (../src/renderEmail) instead of index - Create utility files for shared types and functions: - lib/utils/team-invite-utils.ts: TeamInvite type and utility functions - lib/utils/booking-redirect-types.ts: IBookingRedirect type - lib/utils/email-types.ts: OrganizationCreation and EmailVerifyCode types - lib/utils/date-formatting.ts: getFormattedDate utility function - Update all template files to import renderEmail directly from ../src/renderEmail - Update React template components to import from utility files instead of class templates - This eliminates all circular dependencies within packages/emails (reduced from 234 to 0 internal circular deps) Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * refactor(trpc): remove circular dependency in routing-forms - Extract ZFormByResponseIdInputSchema to separate schema file - Create getResponseWithFormFields.schema.ts to break circular dependency - Update imports in _router.ts and getResponseWithFormFields.handler.ts - Fix eslint warnings by updating deprecated rule names - This eliminates the circular dependency within packages/trpc (reduced from 1 to 0 internal circular deps) Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix(emails): correct TeamInvite type definition - Make isExistingUserMovedToOrg required (not optional) - Make prevLink and newLink non-optional (string | null) - Add back JSDoc comment for isAutoJoin field - This fixes type check errors in CI Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * wip * Fixes types folder --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
27 lines
1.0 KiB
TypeScript
27 lines
1.0 KiB
TypeScript
import dayjs from "@calcom/dayjs";
|
|
import { TimeFormat } from "@calcom/lib/timeFormat";
|
|
import type { CalendarEvent, Person } from "@calcom/types/Calendar";
|
|
|
|
export function getFormattedDate(calEvent: CalendarEvent, attendee: Person): string {
|
|
const inviteeTimeFormat = calEvent.organizer.timeFormat || TimeFormat.TWELVE_HOUR;
|
|
const timezone = attendee.timeZone;
|
|
const locale = attendee.language.locale;
|
|
const t = attendee.language.translate;
|
|
|
|
const getFormattedRecipientTime = (time: string, format: string) => {
|
|
return dayjs(time).tz(timezone).locale(locale).format(format);
|
|
};
|
|
|
|
const getInviteeStart = (format: string) => {
|
|
return getFormattedRecipientTime(calEvent.startTime, format);
|
|
};
|
|
|
|
const getInviteeEnd = (format: string) => {
|
|
return getFormattedRecipientTime(calEvent.endTime, format);
|
|
};
|
|
|
|
return `${getInviteeStart(inviteeTimeFormat)} - ${getInviteeEnd(inviteeTimeFormat)}, ${t(
|
|
getInviteeStart("dddd").toLowerCase()
|
|
)}, ${t(getInviteeStart("MMMM").toLowerCase())} ${getInviteeStart("D, YYYY")}`;
|
|
}
|