Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
103 lines
3.3 KiB
TypeScript
103 lines
3.3 KiB
TypeScript
import * as React from 'react';
|
|
import MuiAvatar from '@mui/material/Avatar';
|
|
import MuiListItemAvatar from '@mui/material/ListItemAvatar';
|
|
import MenuItem from '@mui/material/MenuItem';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import ListItemIcon from '@mui/material/ListItemIcon';
|
|
import ListSubheader from '@mui/material/ListSubheader';
|
|
import Select, { SelectChangeEvent, selectClasses } from '@mui/material/Select';
|
|
import Divider from '@mui/material/Divider';
|
|
import { styled } from '@mui/material/styles';
|
|
import AddRoundedIcon from '@mui/icons-material/AddRounded';
|
|
import DevicesRoundedIcon from '@mui/icons-material/DevicesRounded';
|
|
import SmartphoneRoundedIcon from '@mui/icons-material/SmartphoneRounded';
|
|
import ConstructionRoundedIcon from '@mui/icons-material/ConstructionRounded';
|
|
|
|
const Avatar = styled(MuiAvatar)(({ theme }) => ({
|
|
width: 28,
|
|
height: 28,
|
|
backgroundColor: (theme.vars || theme).palette.background.paper,
|
|
color: (theme.vars || theme).palette.text.secondary,
|
|
border: `1px solid ${(theme.vars || theme).palette.divider}`,
|
|
}));
|
|
|
|
const ListItemAvatar = styled(MuiListItemAvatar)({
|
|
minWidth: 0,
|
|
marginRight: 12,
|
|
});
|
|
|
|
export default function SelectContent() {
|
|
const [company, setCompany] = React.useState('');
|
|
|
|
const handleChange = (event: SelectChangeEvent) => {
|
|
setCompany(event.target.value as string);
|
|
};
|
|
|
|
return (
|
|
<Select
|
|
labelId="company-select"
|
|
id="company-simple-select"
|
|
value={company}
|
|
onChange={handleChange}
|
|
displayEmpty
|
|
inputProps={{ 'aria-label': 'Select company' }}
|
|
fullWidth
|
|
sx={{
|
|
maxHeight: 56,
|
|
width: 215,
|
|
'&.MuiList-root': {
|
|
p: '8px',
|
|
},
|
|
[`& .${selectClasses.select}`]: {
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
gap: '2px',
|
|
pl: 1,
|
|
},
|
|
}}
|
|
>
|
|
<ListSubheader sx={{ pt: 0 }}>Production</ListSubheader>
|
|
<MenuItem value="">
|
|
<ListItemAvatar>
|
|
<Avatar alt="Sitemark web">
|
|
<DevicesRoundedIcon sx={{ fontSize: '1rem' }} />
|
|
</Avatar>
|
|
</ListItemAvatar>
|
|
<ListItemText primary="Sitemark-web" secondary="Web app" />
|
|
</MenuItem>
|
|
<MenuItem value={10}>
|
|
<ListItemAvatar>
|
|
<Avatar alt="Sitemark App">
|
|
<SmartphoneRoundedIcon sx={{ fontSize: '1rem' }} />
|
|
</Avatar>
|
|
</ListItemAvatar>
|
|
<ListItemText primary="Sitemark-app" secondary="Mobile application" />
|
|
</MenuItem>
|
|
<MenuItem value={20}>
|
|
<ListItemAvatar>
|
|
<Avatar alt="Sitemark Store">
|
|
<DevicesRoundedIcon sx={{ fontSize: '1rem' }} />
|
|
</Avatar>
|
|
</ListItemAvatar>
|
|
<ListItemText primary="Sitemark-Store" secondary="Web app" />
|
|
</MenuItem>
|
|
<ListSubheader>Development</ListSubheader>
|
|
<MenuItem value={30}>
|
|
<ListItemAvatar>
|
|
<Avatar alt="Sitemark Store">
|
|
<ConstructionRoundedIcon sx={{ fontSize: '1rem' }} />
|
|
</Avatar>
|
|
</ListItemAvatar>
|
|
<ListItemText primary="Sitemark-Admin" secondary="Web app" />
|
|
</MenuItem>
|
|
<Divider sx={{ mx: -1 }} />
|
|
<MenuItem value={40}>
|
|
<ListItemIcon>
|
|
<AddRoundedIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Add product" secondary="Web app" />
|
|
</MenuItem>
|
|
</Select>
|
|
);
|
|
}
|