Files
HKSingleParty/03_source/frontend/src/sections/tour/tour-item.tsx
louiscklaw b7cd25b614 build ok,
2025-06-15 11:28:24 +08:00

214 lines
5.8 KiB
TypeScript

import Box from '@mui/material/Box';
import type { CardProps } from '@mui/material/Card';
import Card from '@mui/material/Card';
import IconButton from '@mui/material/IconButton';
import Link from '@mui/material/Link';
import ListItemText from '@mui/material/ListItemText';
import MenuItem from '@mui/material/MenuItem';
import MenuList from '@mui/material/MenuList';
import { usePopover } from 'minimal-shared/hooks';
import { CustomPopover } from 'src/components/custom-popover';
import { Iconify } from 'src/components/iconify';
import { Image } from 'src/components/image';
import { RouterLink } from 'src/routes/components';
import type { ITourItem } from 'src/types/tour';
import { fCurrency } from 'src/utils/format-number';
import { fDateRangeShortLabel, fDateTime } from 'src/utils/format-time';
// ----------------------------------------------------------------------
type Props = CardProps & {
tour: ITourItem;
editHref: string;
detailsHref: string;
onDelete: () => void;
};
export function TourItem({ tour, editHref, detailsHref, onDelete, sx, ...other }: Props) {
const menuActions = usePopover();
const renderRating = () => (
<Box
sx={{
top: 8,
right: 8,
zIndex: 9,
display: 'flex',
borderRadius: 1,
alignItems: 'center',
position: 'absolute',
p: '2px 6px 2px 4px',
typography: 'subtitle2',
bgcolor: 'warning.lighter',
}}
>
<Iconify icon="eva:star-fill" sx={{ color: 'warning.main', mr: 0.25 }} /> {tour.ratingNumber}
</Box>
);
const renderPrice = () => (
<Box
sx={{
top: 8,
left: 8,
zIndex: 9,
display: 'flex',
borderRadius: 1,
bgcolor: 'grey.800',
alignItems: 'center',
position: 'absolute',
p: '2px 6px 2px 4px',
color: 'common.white',
typography: 'subtitle2',
}}
>
{!!tour.priceSale && (
<Box component="span" sx={{ color: 'grey.500', mr: 0.25, textDecoration: 'line-through' }}>
{fCurrency(tour.priceSale)}
</Box>
)}
{fCurrency(tour.price)}
</Box>
);
const renderImages = () => (
<Box sx={{ p: 1, gap: 0.5, display: 'flex' }}>
<Box sx={{ flexGrow: 1, position: 'relative' }}>
{renderPrice()}
{renderRating()}
<Image
alt={tour.images[0]}
src={tour.images[0]}
sx={{ width: 1, height: 164, borderRadius: 1 }}
/>
</Box>
<Box sx={{ gap: 0.5, display: 'flex', flexDirection: 'column' }}>
<Image
alt={tour.images[1]}
src={tour.images[1]}
ratio="1/1"
sx={{ borderRadius: 1, width: 80, height: 80 }}
/>
<Image
alt={tour.images[2]}
src={tour.images[2]}
ratio="1/1"
sx={{ borderRadius: 1, width: 80, height: 80 }}
/>
</Box>
</Box>
);
const renderTexts = () => (
<ListItemText
sx={[(theme) => ({ p: theme.spacing(2.5, 2.5, 2, 2.5) })]}
primary={`Posted date: ${fDateTime(tour.createdAt)}`}
secondary={
<Link component={RouterLink} href={detailsHref} color="inherit">
{tour.name}
</Link>
}
slotProps={{
primary: {
sx: { typography: 'caption', color: 'text.disabled' },
},
secondary: {
noWrap: true,
component: 'h6',
sx: { mt: 1, color: 'text.primary', typography: 'subtitle1' },
},
}}
/>
);
const renderInfo = () => (
<Box
sx={[
(theme) => ({
gap: 1.5,
display: 'flex',
position: 'relative',
flexDirection: 'column',
p: theme.spacing(0, 2.5, 2.5, 2.5),
}),
]}
>
<IconButton onClick={menuActions.onOpen} sx={{ position: 'absolute', bottom: 20, right: 8 }}>
<Iconify icon="eva:more-vertical-fill" />
</IconButton>
{[
{
icon: <Iconify icon="mingcute:location-fill" sx={{ color: 'error.main' }} />,
label: tour.destination,
},
{
icon: <Iconify icon="solar:clock-circle-bold" sx={{ color: 'info.main' }} />,
label: fDateRangeShortLabel(tour.available.startDate, tour.available.endDate),
},
{
icon: <Iconify icon="solar:users-group-rounded-bold" sx={{ color: 'primary.main' }} />,
label: `${tour.bookers.length} Booked`,
},
].map((item) => (
<Box
key={item.label}
sx={[{ gap: 0.5, display: 'flex', typography: 'body2', alignItems: 'center' }]}
>
{item.icon}
{item.label}
</Box>
))}
</Box>
);
const renderMenuActions = () => (
<CustomPopover
open={menuActions.open}
anchorEl={menuActions.anchorEl}
onClose={menuActions.onClose}
slotProps={{ arrow: { placement: 'right-top' } }}
>
<MenuList>
<li>
<MenuItem component={RouterLink} href={detailsHref} onClick={() => menuActions.onClose()}>
<Iconify icon="solar:eye-bold" />
View
</MenuItem>
</li>
<li>
<MenuItem component={RouterLink} href={editHref} onClick={() => menuActions.onClose()}>
<Iconify icon="solar:pen-bold" />
Edit
</MenuItem>
</li>
<MenuItem
onClick={() => {
menuActions.onClose();
onDelete();
}}
sx={{ color: 'error.main' }}
>
<Iconify icon="solar:trash-bin-trash-bold" />
Delete
</MenuItem>
</MenuList>
</CustomPopover>
);
return (
<>
<Card sx={sx} {...other}>
{renderImages()}
{renderTexts()}
{renderInfo()}
</Card>
{renderMenuActions()}
</>
);
}