feat: Update event modal UI with header icons and improved actions layout

- Add expand and close icons to ResponsiveDialog header in normal mode
- Change 'Show More' button to 'More options' with Add icon
- Hide Cancel button in normal mode, show only in extended mode
- Add showHeaderActions prop to ResponsiveDialog for UI control
- Preserve EventDisplayPreview modal with old UI (no header icons)
- Update all affected test cases to match new UI behavior
This commit is contained in:
lenhanphung
2025-10-13 14:02:31 +07:00
committed by Benoit TELLIER
parent 4936b89e8b
commit 4c18bf3a52
9 changed files with 141 additions and 17 deletions
@@ -115,6 +115,7 @@ export default function EventPreviewModal({
<ResponsiveDialog
open={open && !hidePreview}
onClose={() => onClose({}, "backdropClick")}
showHeaderActions={false}
style={{ overflow: "auto" }}
title={
event.title && (
+10 -6
View File
@@ -1,7 +1,5 @@
import { CalendarApi, DateSelectArg } from "@fullcalendar/core";
import {
Box,
Button,
Checkbox,
FormControl,
FormControlLabel,
@@ -23,6 +21,8 @@ import {
ContentCopy as CopyIcon,
Close as DeleteIcon,
} from "@mui/icons-material";
import { Box, Button } from "@mui/material";
import AddIcon from "@mui/icons-material/Add";
import React, {
useEffect,
useState,
@@ -409,12 +409,16 @@ function EventPopover({
const dialogActions = (
<Box display="flex" justifyContent="space-between" width="100%" px={2}>
{!showMore && (
<Button onClick={() => setShowMore(!showMore)}>Show More</Button>
<Button startIcon={<AddIcon />} onClick={() => setShowMore(!showMore)}>
More options
</Button>
)}
<Box display="flex" gap={1} ml={showMore ? "auto" : 0}>
<Button variant="outlined" onClick={handleClose}>
Cancel
</Button>
{showMore && (
<Button variant="outlined" onClick={handleClose}>
Cancel
</Button>
)}
<Button variant="contained" onClick={handleSave} disabled={!title}>
Save
</Button>
+9 -4
View File
@@ -1,4 +1,5 @@
import { Box, Button } from "@mui/material";
import AddIcon from "@mui/icons-material/Add";
import React, {
useEffect,
useState,
@@ -658,12 +659,16 @@ function EventUpdateModal({
const dialogActions = (
<Box display="flex" justifyContent="space-between" width="100%" px={2}>
{!showMore && (
<Button onClick={() => setShowMore(!showMore)}>Show More</Button>
<Button startIcon={<AddIcon />} onClick={() => setShowMore(!showMore)}>
More options
</Button>
)}
<Box display="flex" gap={1} ml={showMore ? "auto" : 0}>
<Button variant="outlined" onClick={handleClose}>
Cancel
</Button>
{showMore && (
<Button variant="outlined" onClick={handleClose}>
Cancel
</Button>
)}
<Button variant="contained" onClick={handleSave} disabled={!title}>
Save
</Button>