mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-28 17:55:15 +02:00
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { VFC } from 'react';
|
|
import { styled } from '@mui/material';
|
|
import { Box, IconButton } from '@mui/material';
|
|
import { CloudCircle, DragIndicator } from '@mui/icons-material';
|
|
import { IEnvironment } from 'interfaces/environments';
|
|
|
|
const StyledCell = styled(Box)(({ theme }) => ({
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'flex-end',
|
|
paddingLeft: theme.spacing(0.5),
|
|
minWidth: theme.spacing(6.5),
|
|
}));
|
|
|
|
const DragIcon = styled(IconButton)(({ theme }) => ({
|
|
padding: theme.spacing(1.5, 0),
|
|
cursor: 'inherit',
|
|
transition: 'color 0.2s ease-in-out',
|
|
display: 'none',
|
|
color: theme.palette.neutral.main,
|
|
}));
|
|
|
|
const StyledCloudCircle = styled(CloudCircle, {
|
|
shouldForwardProp: prop => prop !== 'deprecated',
|
|
})<{ deprecated?: boolean }>(({ theme, deprecated }) => ({
|
|
color: deprecated
|
|
? theme.palette.neutral.border
|
|
: theme.palette.primary.main,
|
|
}));
|
|
|
|
interface IEnvironmentIconCellProps {
|
|
environment: IEnvironment;
|
|
}
|
|
|
|
export const EnvironmentIconCell: VFC<IEnvironmentIconCellProps> = ({
|
|
environment,
|
|
}) => (
|
|
<StyledCell>
|
|
<DragIcon size="large" disableRipple className="drag-icon">
|
|
<DragIndicator titleAccess="Drag to reorder" />
|
|
</DragIcon>
|
|
<StyledCloudCircle deprecated={!environment.enabled} />
|
|
</StyledCell>
|
|
);
|