* refactor: apply biome formatting to apps/web (batch 1) Formats apps/web non-modules directories: - apps/web/app - apps/web/lib - apps/web/pages - apps/web/styles - apps/web/server - apps/web/test - Root-level .ts and .mjs files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web/modules (batch 2) Formats smaller apps/web/modules directories: - onboarding, data-table, users, apps, auth - integration-attribute-sync, shell, availability - feature-flags, team, webhooks, getting-started - feature-opt-in, troubleshooter, schedules, notifications - signup-view.tsx Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web/modules (batch 3) Formats medium apps/web/modules directories: - bookings - event-types - insights - embed Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web/modules/ee (batch 4) Formats apps/web/modules/ee directory. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web (batch 5) Formats remaining apps/web directories: - apps/web/modules/settings - apps/web/modules/booking-audit - apps/web/playwright Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web/components (batch 6) Formats remaining apps/web/components files. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to new apps/web files from main Formats newly added/modified files from main merge: - WorkflowStepContainer.tsx (resolved merge conflicts) - Newly moved files (blocklist, form-builder, schedules, etc.) - Other files modified in main Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to new apps/web files from main Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
75 lines
2.1 KiB
TypeScript
75 lines
2.1 KiB
TypeScript
import type { FC } from "react";
|
|
import { useMemo } from "react";
|
|
import { JsonLd } from "react-schemaorg";
|
|
import type { EventReservation, Person, ReservationStatusType } from "schema-dts";
|
|
|
|
import type { Attendee, Booking, User } from "@calcom/prisma/client";
|
|
|
|
type EventSchemaUser = Pick<User, "name" | "email">;
|
|
type EventSchemaAttendee = Pick<Attendee, "name" | "email">;
|
|
|
|
interface EventReservationSchemaInterface {
|
|
reservationId: Booking["uid"];
|
|
eventName: Booking["title"];
|
|
startTime: Booking["startTime"];
|
|
endTime: Booking["endTime"];
|
|
organizer: EventSchemaUser | null;
|
|
attendees: EventSchemaAttendee[];
|
|
location: Booking["location"];
|
|
description: Booking["description"];
|
|
status: Booking["status"];
|
|
}
|
|
|
|
const EventReservationSchema: FC<EventReservationSchemaInterface> = ({
|
|
reservationId,
|
|
eventName,
|
|
startTime,
|
|
endTime,
|
|
organizer,
|
|
attendees,
|
|
location,
|
|
description,
|
|
status,
|
|
}) => {
|
|
const reservationStatus = useMemo<ReservationStatusType>(() => {
|
|
switch (status) {
|
|
case "ACCEPTED":
|
|
return "ReservationConfirmed";
|
|
case "REJECTED":
|
|
case "CANCELLED":
|
|
return "ReservationCancelled";
|
|
case "PENDING":
|
|
return "ReservationPending";
|
|
default:
|
|
return "ReservationHold";
|
|
}
|
|
}, [status]);
|
|
|
|
return (
|
|
<JsonLd<EventReservation>
|
|
item={{
|
|
"@context": "https://schema.org",
|
|
"@type": "EventReservation",
|
|
reservationId,
|
|
reservationStatus,
|
|
reservationFor: {
|
|
"@type": "Event",
|
|
name: eventName,
|
|
startDate: startTime.toString(),
|
|
endDate: endTime.toString(),
|
|
organizer: organizer
|
|
? ({ "@type": "Person", name: organizer.name, email: organizer.email } as Person)
|
|
: undefined,
|
|
attendee: attendees?.map(
|
|
(person) => ({ "@type": "Person", name: person.name, email: person.email }) as Person
|
|
),
|
|
location: location || undefined,
|
|
description: description || undefined,
|
|
},
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default EventReservationSchema;
|