fix(mui): lock <html> scroll for dialogs + freeze Modal title/labels during close

Scroll: MUI only locks <body>, but base.css 'html{overflow-x:hidden}' makes <html> the vertical scroller (overflow-x:hidden forces overflow-y:auto), so the page scrolled behind modals. Added a ref-counted useDialogScrollLock that locks <html> (with scrollbar-width padding) + disableScrollLock on the kit dialogs. Labels: Modal now freezes title/subtitle/submitText while closing (derive-state-from-props), so editing then saving no longer briefly flashes the 'create' title/button during the fade-out.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-06 21:59:38 +02:00
parent 6c186acc94
commit 305c3fd97b
3 changed files with 57 additions and 6 deletions

View File

@@ -5,6 +5,7 @@ import DialogContent from "@mui/material/DialogContent";
import DialogContentText from "@mui/material/DialogContentText";
import DialogActions from "@mui/material/DialogActions";
import MuiButton from "@mui/material/Button";
import useDialogScrollLock from "./useDialogScrollLock";
export interface ConfirmDialogProps {
isOpen: boolean;
@@ -30,6 +31,7 @@ export default function ConfirmDialog({
confirmVariant = "primary",
loading = false,
}: ConfirmDialogProps) {
useDialogScrollLock(isOpen);
// Freeze the shown title/message while closing, so the fade-out transition
// never flashes empty when the caller clears its source data (e.g. sets the
// selected row to null) at the same instant it closes the dialog. This is
@@ -45,6 +47,7 @@ export default function ConfirmDialog({
<Dialog
open={isOpen}
onClose={loading ? undefined : onClose}
disableScrollLock
slotProps={{ paper: { sx: { borderRadius: 3 } } }}
>
<DialogTitle>{shown.title}</DialogTitle>

View File

@@ -1,10 +1,11 @@
import type { ReactNode } from "react";
import { useState, type ReactNode } from "react";
import Dialog from "@mui/material/Dialog";
import DialogTitle from "@mui/material/DialogTitle";
import DialogContent from "@mui/material/DialogContent";
import DialogActions from "@mui/material/DialogActions";
import Typography from "@mui/material/Typography";
import MuiButton from "@mui/material/Button";
import useDialogScrollLock from "./useDialogScrollLock";
export interface ModalProps {
isOpen: boolean;
@@ -34,19 +35,34 @@ export default function Modal({
cancelText = "Zrušit",
maxWidth = "sm",
}: ModalProps) {
useDialogScrollLock(isOpen);
// Freeze the shown title/subtitle/submitText while closing, so the fade-out
// never flashes the "create" variant when the caller clears `editingUser` on
// close (React derive-state-from-props: update only while open).
const [shown, setShown] = useState({ title, subtitle, submitText });
if (
isOpen &&
(shown.title !== title ||
shown.subtitle !== subtitle ||
shown.submitText !== submitText)
) {
setShown({ title, subtitle, submitText });
}
return (
<Dialog
open={isOpen}
onClose={loading ? undefined : onClose}
fullWidth
maxWidth={maxWidth}
disableScrollLock
slotProps={{ paper: { sx: { borderRadius: 3 } } }}
>
<DialogTitle sx={{ pb: subtitle ? 0.5 : 1.5 }}>
{title}
{subtitle && (
<DialogTitle sx={{ pb: shown.subtitle ? 0.5 : 1.5 }}>
{shown.title}
{shown.subtitle && (
<Typography variant="body2" color="text.secondary">
{subtitle}
{shown.subtitle}
</Typography>
)}
</DialogTitle>
@@ -60,7 +76,7 @@ export default function Modal({
variant="contained"
disabled={loading || submitDisabled}
>
{loading ? "Ukládám…" : submitText}
{loading ? "Ukládám…" : shown.submitText}
</MuiButton>
</DialogActions>
</Dialog>

View File

@@ -0,0 +1,32 @@
import { useEffect } from "react";
// Ref-counted lock of the <html> scroll. MUI's Dialog only locks <body>, but
// base.css sets `html { overflow-x: hidden }`, which (per the CSS spec) forces
// html's overflow-y to `auto` — making <html> the vertical scroll container.
// So body-locking alone leaves the page scrollable behind the modal. We lock
// <html> directly and pad for the removed scrollbar to avoid a layout shift.
let lockCount = 0;
let prevOverflow = "";
let prevPaddingRight = "";
export default function useDialogScrollLock(open: boolean) {
useEffect(() => {
if (!open) return;
const el = document.documentElement;
if (lockCount === 0) {
const scrollbarWidth = window.innerWidth - el.clientWidth;
prevOverflow = el.style.overflow;
prevPaddingRight = el.style.paddingRight;
el.style.overflow = "hidden";
if (scrollbarWidth > 0) el.style.paddingRight = `${scrollbarWidth}px`;
}
lockCount += 1;
return () => {
lockCount -= 1;
if (lockCount === 0) {
el.style.overflow = prevOverflow;
el.style.paddingRight = prevPaddingRight;
}
};
}, [open]);
}