Skip to content

Commit 1251091

Browse files
Amit91848PeerRichjoeauyeung
authored
fix: Offer seats events invites everyone regardless their availability schedule (#15171)
* fix: Offer seats events invites everyone regardless their availibility schedule * chore: add test * uncomment * remove timeout * only check when first seat --------- Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
1 parent ce14590 commit 1251091

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

apps/web/playwright/booking-pages.e2e.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -484,13 +484,17 @@ testBothFutureAndLegacyRoutes.describe("Booking round robin event", () => {
484484
schedulingType: SchedulingType.ROUND_ROBIN,
485485
teamEventLength: 120,
486486
teammates: teamMatesObj,
487+
seatsPerTimeSlot: 5,
487488
}
488489
);
489490
const team = await testUser.getFirstTeamMembership();
490491
await page.goto(`/team/${team.team.slug}`);
491492
});
492493

493-
test("Does not book round robin host outside availability with date override", async ({ page, users }) => {
494+
test("Does not book seated round robin host outside availability with date override", async ({
495+
page,
496+
users,
497+
}) => {
494498
const [testUser] = users.get();
495499
await testUser.apiLogin();
496500

apps/web/playwright/fixtures/users.ts

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ const createTeamEventType = async (
9191
teamEventTitle?: string;
9292
teamEventSlug?: string;
9393
teamEventLength?: number;
94+
seatsPerTimeSlot?: number;
9495
}
9596
) => {
9697
return await prisma.eventType.create({
@@ -120,6 +121,7 @@ const createTeamEventType = async (
120121
title: scenario?.teamEventTitle ?? `${teamEventTitle}-team-id-${team.id}`,
121122
slug: scenario?.teamEventSlug ?? `${teamEventSlug}-team-id-${team.id}`,
122123
length: scenario?.teamEventLength ?? 30,
124+
seatsPerTimeSlot: scenario?.seatsPerTimeSlot,
123125
},
124126
});
125127
};
@@ -253,6 +255,7 @@ export const createUsersFixture = (
253255
isDnsSetup?: boolean;
254256
hasSubteam?: true;
255257
isUnpublished?: true;
258+
seatsPerTimeSlot?: number;
256259
} = {}
257260
) => {
258261
const _user = await prisma.user.create({

packages/features/bookings/lib/handleNewBooking.ts

+21-1
Original file line numberDiff line numberDiff line change
@@ -1258,9 +1258,29 @@ async function handler(
12581258
}
12591259

12601260
let luckyUserResponse;
1261+
let isFirstSeat = true;
1262+
1263+
if (eventType.seatsPerTimeSlot) {
1264+
const booking = await prisma.booking.findFirst({
1265+
where: {
1266+
OR: [
1267+
{
1268+
uid: rescheduleUid || reqBody.bookingUid,
1269+
},
1270+
{
1271+
eventTypeId: eventType.id,
1272+
startTime: new Date(dayjs(reqBody.start).utc().format()),
1273+
},
1274+
],
1275+
status: BookingStatus.ACCEPTED,
1276+
},
1277+
});
1278+
1279+
if (booking) isFirstSeat = false;
1280+
}
12611281

12621282
//checks what users are available
1263-
if (!eventType.seatsPerTimeSlot) {
1283+
if (isFirstSeat) {
12641284
const eventTypeWithUsers: Awaited<ReturnType<typeof getEventTypesFromDB>> & {
12651285
users: IsFixedAwareUser[];
12661286
} = {

0 commit comments

Comments
 (0)