mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
70 lines
2.4 KiB
TypeScript
70 lines
2.4 KiB
TypeScript
// ** React Imports
|
|
import { useState } from 'react'
|
|
|
|
// ** MUI Imports
|
|
import Box from '@mui/material/Box'
|
|
import Card from '@mui/material/Card'
|
|
import Button from '@mui/material/Button'
|
|
import Divider from '@mui/material/Divider'
|
|
import Collapse from '@mui/material/Collapse'
|
|
import CardMedia from '@mui/material/CardMedia'
|
|
import Typography from '@mui/material/Typography'
|
|
import IconButton from '@mui/material/IconButton'
|
|
import CardContent from '@mui/material/CardContent'
|
|
import CardActions from '@mui/material/CardActions'
|
|
|
|
// ** Icons Imports
|
|
import ChevronUp from 'mdi-material-ui/ChevronUp'
|
|
import ChevronDown from 'mdi-material-ui/ChevronDown'
|
|
|
|
const CardWithCollapse = () => {
|
|
// ** State
|
|
const [collapse, setCollapse] = useState<boolean>(false)
|
|
|
|
const handleClick = () => {
|
|
setCollapse(!collapse)
|
|
}
|
|
|
|
return (
|
|
<Card>
|
|
<CardMedia sx={{ height: '14.5625rem' }} image='/images/cards/paper-boat.png' />
|
|
<CardContent>
|
|
<Typography variant='h6' sx={{ marginBottom: 2 }}>
|
|
Popular Uses Of The Internet
|
|
</Typography>
|
|
<Typography variant='body2'>
|
|
Although cards can support multiple actions, UI controls, and an overflow menu.
|
|
</Typography>
|
|
</CardContent>
|
|
<CardActions className='card-action-dense'>
|
|
<Box
|
|
sx={{
|
|
width: '100%',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between'
|
|
}}
|
|
>
|
|
<Button onClick={handleClick}>Details</Button>
|
|
<IconButton size='small' onClick={handleClick}>
|
|
{collapse ? <ChevronUp sx={{ fontSize: '1.875rem' }} /> : <ChevronDown sx={{ fontSize: '1.875rem' }} />}
|
|
</IconButton>
|
|
</Box>
|
|
</CardActions>
|
|
<Collapse in={collapse}>
|
|
<Divider sx={{ margin: 0 }} />
|
|
<CardContent>
|
|
<Typography variant='body2'>
|
|
I′m a thing. But, like most politicians, he promised more than he could deliver. You won′t have
|
|
time for sleeping, soldier, not with all the bed making you′ll be doing. Then we′ll go with that
|
|
data file! Hey, you add a one and two zeros to that or we walk! You′re going to do his laundry?
|
|
I′ve got to find a way to escape.
|
|
</Typography>
|
|
</CardContent>
|
|
</Collapse>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
export default CardWithCollapse
|