Skip to content

Commit 58ad441

Browse files
fix: margin top in booker embed (#15412)
1 parent d8de919 commit 58ad441

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

packages/embeds/embed-core/playwright/tests/embed-pages.e2e.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,28 @@ test.describe("Embed Pages", () => {
1010
await page.goto("http://localhost:3000/free/30min/embed");
1111
// Checks the margin from top by checking the distance between the div inside main from the viewport
1212
const marginFromTop = await page.evaluate(async () => {
13-
return await new Promise((resolve) => {
13+
return await new Promise<{
14+
bookerContainer: number;
15+
mainEl: number;
16+
}>((resolve) => {
1417
(function tryGettingBoundingRect() {
1518
const mainElement = document.querySelector(".main");
19+
const bookerContainer = document.querySelector('[data-testid="booker-container"]');
1620

17-
if (mainElement) {
21+
if (mainElement && bookerContainer) {
1822
// This returns the distance of the div element from the viewport
1923
const mainElBoundingRect = mainElement.getBoundingClientRect();
20-
resolve(mainElBoundingRect.top);
24+
const bookerContainerBoundingRect = bookerContainer.getBoundingClientRect();
25+
resolve({ bookerContainer: bookerContainerBoundingRect.top, mainEl: mainElBoundingRect.top });
2126
} else {
2227
setTimeout(tryGettingBoundingRect, 500);
2328
}
2429
})();
2530
});
2631
});
2732

28-
expect(marginFromTop).toBe(0);
33+
expect(marginFromTop.bookerContainer).toBe(0);
34+
expect(marginFromTop.mainEl).toBe(0);
2935
});
3036

3137
test("Event Type Page: should have margin top on non embed page", async ({ page }) => {

packages/features/bookings/Booker/Booker.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,12 @@ const BookerComponent = ({
268268
)}>
269269
<div
270270
ref={animationScope}
271+
data-testid="booker-container"
271272
className={classNames(
272273
...getBookerSizeClassNames(layout, bookerState, hideEventTypeDetails),
273-
`bg-default dark:bg-muted grid max-w-full items-start dark:[color-scheme:dark] sm:transition-[width] sm:duration-300 sm:motion-reduce:transition-none md:mt-16 md:flex-row`,
274+
`bg-default dark:bg-muted grid max-w-full items-start dark:[color-scheme:dark] sm:transition-[width] sm:duration-300 sm:motion-reduce:transition-none md:flex-row`,
275+
// We can't let embed have margin from top because for inline embed user wouldn't want that extra space at the top
276+
!isEmbed ? "md:mt-16" : "",
274277
// We remove border only when the content covers entire viewport. Because in embed, it can almost never be the case that it covers entire viewport, we show the border there
275278
(layout === BookerLayouts.MONTH_VIEW || isEmbed) && "border-subtle rounded-md",
276279
!isEmbed && "sm:transition-[width] sm:duration-300",

0 commit comments

Comments
 (0)