mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-19 01:17:18 +02:00
This PR adds the ability to configure CRs when creating a project. The design is unfinished, and the code certainly needs cleanup, but I'd like to get this into sandbox so we can look at it. Things that still need to be done: 1. What do we do about this button when the user has no environments selected? As a rough draft, I've disabled it. However, we should make it possible to navigate to and give you an explanation why it was disabled, e.g. "You have no project environments selected. Please select at least one project environment.". 2. The form design is not done: the width should be constant and not jumpy the way it is now. Also, the search field is too wide. 3. I've made the desicion that if you deselect a project env, we also remove that env from your CR config it it's in there. 4. Potential improvement: if you enable and then disable CRs for an env, we *could* probably store the data in between, so that if you set required approvers 5 and then disabled it, it'd still be 5 when you re-enabled it. That sounds like a good user experience. We should also be able to extend that to adding/removing environments from project envs.
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { Checkbox, ListItem, Popover, TextField, styled } from '@mui/material';
|
|
|
|
export const StyledDropdown = styled('div')(({ theme }) => ({
|
|
padding: theme.spacing(2),
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
gap: theme.spacing(1),
|
|
maxHeight: '70vh',
|
|
}));
|
|
|
|
export const StyledListItem = styled(ListItem)(({ theme }) => ({
|
|
paddingLeft: theme.spacing(1),
|
|
cursor: 'pointer',
|
|
'&:hover, &:focus': {
|
|
backgroundColor: theme.palette.action.hover,
|
|
outline: 'none',
|
|
},
|
|
}));
|
|
|
|
export const StyledCheckbox = styled(Checkbox)(({ theme }) => ({
|
|
padding: theme.spacing(1, 1, 1, 1.5),
|
|
}));
|
|
|
|
export const StyledPopover = styled(Popover)(({ theme }) => ({
|
|
'& .MuiPaper-root': {
|
|
borderRadius: `${theme.shape.borderRadiusMedium}px`,
|
|
},
|
|
}));
|
|
|
|
export const StyledTextField = styled(TextField)(({ theme }) => ({
|
|
'& .MuiInputBase-root': {
|
|
padding: theme.spacing(0, 1.5),
|
|
borderRadius: `${theme.shape.borderRadiusMedium}px`,
|
|
},
|
|
'& .MuiInputBase-input': {
|
|
padding: theme.spacing(0.75, 0),
|
|
fontSize: theme.typography.body2.fontSize,
|
|
},
|
|
}));
|
|
|
|
export const TableSearchInput = styled(StyledTextField)(({ theme }) => ({
|
|
maxWidth: '30ch',
|
|
}));
|