* WIP-already-reschedule-success-emails-missing * WIP now saving bookingSeatsReferences and identifyin on reschedule/book page * Remove logs and created test * WIP saving progress * Select second slot to pass test * Delete attendee from event * Clean up * Update with main changes * Fix emails not being sent * Changed test end url from success to booking * Remove unused pkg * Fix new booking reschedule * remove log * Renable test * remove unused pkg * rename table name * review changes * Fix and and other test to reschedule with seats * Fix api for cancel booking * Typings * Update [uid].tsx * Abstracted common pattern into maybeGetBookingUidFromSeat * Reverts * Nitpicks * Update handleCancelBooking.ts * Adds missing cascades * Improve booking seats changes (#6858) * Create sendCancelledSeatEmails * Draft attendee cancelled seat email * Send no longer attendee email to attendee * Send email to organizer when attendee cancels * Pass cloned event data to emails * Send booked email for first seat * Add seat reference uid from email link * Query for seatReferenceUId and add to cancel & reschedule links * WIP * Display proper attendee when rescheduling seats * Remove console.logs * Only check for already invited when not rescheduling * WIP sending reschedule email to just single attendee and owner * Merge branch 'main' into send-email-on-seats-attendee-changes * Remove console.logs * Add cloned event to seat emails * Do not show manage link for calendar event * First seat, have both attendees on calendar * WIP refactor booking seats reschedule logic * WIP Refactor handleSeats * Change relation of attendee & seat reference to a one-to-one * Migration with relationship change * Booking page handling unique seat references * Abstract to handleSeats * Remove console.logs and clean up * New migration file, delete on cascade * Check if attendee is already a part of the booking * Move deleting booking logic to `handleSeats` * When owner reschedule, move whole booking * Prevent owner from rescheduling if not enough seats * Add owner reschedule * Send reschedule email when moving to new timeslot * Add event data to reschedule email for seats * Remove DB changes from event manager * When a booking has no attendees then delete * Update calendar when merging bookings * Move both attendees and seat references when merging * Remove guest list from seats booking page * Update original booking when moving an attendee * Delete calendar and video events if no more attendees * Update or delete integrations when attendees cancel * Show no longer attendee if a single attendee cancels * Change booking to accepted if an attendee books on an empty booking * If booking in same slot then just return the booking * Clean up * Clean up * Remove booking select * Typos --------- Co-authored-by: zomars <zomars@me.com> * Fix migration table name * Add missing trpc import * Rename bookingSeatReferences to bookingSeat * Change relationship between Attendee & BookingSeat to one to one * Fix some merge conflicts * Minor merge artifact fixup * Add the right 'Person' type * Check on email, less (although still) editable than name * Removed calEvent.attendeeUniqueId * rename referenceUId -> referenceUid * Squashes migrations * Run cached installs Should still be faster. Ensures prisma client is up to date. * Solve attendee form on booking page * Remove unused code * Some type fixes * Squash migrations * Type fixes * Fix for reschedule/[uid] redirect * Fix e2e test * Solve double declaration of host * Solve lint errors * Drop constraint only if exists * Renamed UId to Uid * Explicit vs. implicit * Attempt to work around text flakiness by adding a little break between animations * Various bugfixes * Persistently apply seatReferenceUid (#7545) * Persistently apply seatReferenceUid * Small ts fix * Setup guards correctly * Type fixes * Fix render 0 in conditional * Test refactoring * Fix type on handleSeats * Fix handle seats conditional * Fix type inference * Update packages/features/bookings/lib/handleNewBooking.ts * Update apps/web/components/booking/pages/BookingPage.tsx * Fix type and missing logic for reschedule * Fix delete of calendar event and booking * Add handleSeats return type * Fix seats booking creation * Fall through normal booking for initial booking, handleSeats for secondary/reschedule * Simplification of fetching booking * Enable seats for round-robin events * A lot harder than I expected * ignore-owner-if-seat-reference-given * Return seatReferenceUid when second seat * negate userIsOwner * Fix booking seats with a link without bookingUid * Needed a time check otherwise the attendee will be in the older booking * Can't open dialog twice in test.. * Allow passing the booking ID from the server * Fixed isCancelled check, fixed test * Delete through cascade instead of multiple deletes --------- Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com> Co-authored-by: Peer Richelsen <peer@cal.com> Co-authored-by: zomars <zomars@me.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Efraín Rochín <roae.85@gmail.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
87 lines
2.6 KiB
TypeScript
87 lines
2.6 KiB
TypeScript
import type { Page } from "@playwright/test";
|
|
import type { Booking, Prisma } from "@prisma/client";
|
|
import short from "short-uuid";
|
|
import { v5 as uuidv5 } from "uuid";
|
|
|
|
import dayjs from "@calcom/dayjs";
|
|
import { prisma } from "@calcom/prisma";
|
|
|
|
const translator = short();
|
|
|
|
type BookingFixture = ReturnType<typeof createBookingFixture>;
|
|
|
|
// creates a user fixture instance and stores the collection
|
|
export const createBookingsFixture = (page: Page) => {
|
|
const store = { bookings: [], page } as { bookings: BookingFixture[]; page: typeof page };
|
|
return {
|
|
create: async (
|
|
userId: number,
|
|
username: string | null,
|
|
eventTypeId = -1,
|
|
{
|
|
rescheduled = false,
|
|
paid = false,
|
|
status = "ACCEPTED",
|
|
attendees = {
|
|
create: {
|
|
email: "attendee@example.com",
|
|
name: "Attendee Example",
|
|
timeZone: "Europe/London",
|
|
},
|
|
},
|
|
}: Partial<Prisma.BookingCreateInput> = {},
|
|
startDateParam?: Date,
|
|
endDateParam?: Date
|
|
) => {
|
|
const startDate = startDateParam || dayjs().add(1, "day").toDate();
|
|
const seed = `${username}:${dayjs(startDate).utc().format()}:${new Date().getTime()}`;
|
|
const uid = translator.fromUUID(uuidv5(seed, uuidv5.URL));
|
|
const booking = await prisma.booking.create({
|
|
data: {
|
|
uid: uid,
|
|
title: "30min",
|
|
startTime: startDate,
|
|
endTime: endDateParam || dayjs().add(1, "day").add(30, "minutes").toDate(),
|
|
user: {
|
|
connect: {
|
|
id: userId,
|
|
},
|
|
},
|
|
attendees,
|
|
eventType: {
|
|
connect: {
|
|
id: eventTypeId,
|
|
},
|
|
},
|
|
rescheduled,
|
|
paid,
|
|
status,
|
|
},
|
|
});
|
|
const bookingFixture = createBookingFixture(booking, store.page!);
|
|
store.bookings.push(bookingFixture);
|
|
return bookingFixture;
|
|
},
|
|
get: () => store.bookings,
|
|
delete: async (id: number) => {
|
|
await prisma.booking.delete({
|
|
where: { id },
|
|
});
|
|
store.bookings = store.bookings.filter((b) => b.id !== id);
|
|
},
|
|
};
|
|
};
|
|
|
|
// creates the single user fixture
|
|
const createBookingFixture = (booking: Booking, page: Page) => {
|
|
const store = { booking, page };
|
|
|
|
// self is a reflective method that return the Prisma object that references this fixture.
|
|
return {
|
|
id: store.booking.id,
|
|
uid: store.booking.uid,
|
|
self: async () => (await prisma.booking.findUnique({ where: { id: store.booking.id } }))!,
|
|
delete: async () => (await prisma.booking.delete({ where: { id: store.booking.id } }))!,
|
|
};
|
|
};
|