fix(drawer): apply ServerSideDocumentFallback

This commit is contained in:
p-sw 2024-07-12 01:34:21 +09:00
parent 985a2b5297
commit 321b47ab3f

View File

@ -1,4 +1,10 @@
import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib"; import {
type AsChild,
ServerSideDocumentFallback,
Slot,
type VariantProps,
vcn,
} from "@pswui-lib";
import React, { import React, {
type ComponentPropsWithoutRef, type ComponentPropsWithoutRef,
type TouchEvent as ReactTouchEvent, type TouchEvent as ReactTouchEvent,
@ -119,22 +125,26 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
: 1 : 1
})`; })`;
return createPortal( return (
<Comp <ServerSideDocumentFallback>
{...restPropsExtracted} {createPortal(
className={drawerOverlayVariant({ <Comp
...variantProps, {...restPropsExtracted}
opened: state.isDragging ? true : state.opened, className={drawerOverlayVariant({
})} ...variantProps,
onClick={onOutsideClick} opened: state.isDragging ? true : state.opened,
style={{ })}
backdropFilter, onClick={onOutsideClick}
WebkitBackdropFilter: backdropFilter, style={{
transitionDuration: state.isDragging ? "0s" : undefined, backdropFilter,
}} WebkitBackdropFilter: backdropFilter,
ref={ref} transitionDuration: state.isDragging ? "0s" : undefined,
/>, }}
document.body, ref={ref}
/>,
document.body,
)}
</ServerSideDocumentFallback>
); );
}, },
); );