feat(SW-2879): Move BookingWidget to booking-flow package * Fix lockfile * Fix styling * a tiny little booking widget test * Tiny fixes * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Remove unused scripts * lint:fix * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Tiny lint fixes * update test * Update Input in booking-flow * Clean up comments etc * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Setup tracking context for booking-flow * Add missing use client * Fix temp tracking function * Pass booking to booking-widget * Remove comment * Add use client to booking widget tracking provider * Add use client to tracking functions * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Move debug page * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package Approved-by: Bianca Widstam
31 lines
750 B
TypeScript
31 lines
750 B
TypeScript
"use client"
|
|
|
|
import { BookingWidgetFormSkeleton } from "./BookingWidgetForm"
|
|
import { MobileToggleButtonSkeleton } from "./MobileToggleButton"
|
|
import { bookingWidgetContainerVariants } from "./variant"
|
|
|
|
import styles from "./bookingWidget.module.css"
|
|
|
|
import type { BookingWidgetClientProps } from "./Client"
|
|
|
|
export function BookingWidgetSkeleton({
|
|
type = "full",
|
|
}: {
|
|
type?: BookingWidgetClientProps["type"]
|
|
}) {
|
|
const classNames = bookingWidgetContainerVariants({
|
|
type,
|
|
})
|
|
|
|
return (
|
|
<>
|
|
<section className={classNames} style={{ top: 0 }}>
|
|
<MobileToggleButtonSkeleton />
|
|
<div className={styles.formContainer}>
|
|
<BookingWidgetFormSkeleton type={type} />
|
|
</div>
|
|
</section>
|
|
</>
|
|
)
|
|
}
|