1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00

feat: user seats component (#7583)

This commit is contained in:
Mateusz Kwasniewski 2024-07-12 15:39:37 +02:00 committed by GitHub
parent 9d7eec5951
commit 3ade609956
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 102 additions and 0 deletions

View File

@ -0,0 +1,40 @@
import { testServerRoute, testServerSetup } from '../../../../utils/testServer';
import { screen } from '@testing-library/react';
import { render } from 'utils/testRenderer';
import { UserSeats } from './UserSeats';
const server = testServerSetup();
const user1 = {};
const user2 = {};
const setupApiWithSeats = (seats: number | undefined) => {
testServerRoute(server, '/api/admin/user-admin', {
users: [user1, user2],
});
testServerRoute(server, '/api/instance/status', {
plan: 'Enterprise',
seats,
});
testServerRoute(server, '/api/admin/ui-config', {
flags: {
UNLEASH_CLOUD: true,
},
});
};
test('User seats display when seats are available', async () => {
setupApiWithSeats(20);
render(<UserSeats />);
await screen.findByText('User seats');
await screen.findByText('2/20 seats used');
});
test('User seats does not display when seats are not available', async () => {
setupApiWithSeats(undefined);
render(<UserSeats />);
expect(screen.queryByText('User seats')).not.toBeInTheDocument();
});

View File

@ -0,0 +1,62 @@
import LicenseIcon from '@mui/icons-material/ReceiptLongOutlined';
import { Box, styled, Typography } from '@mui/material';
import LinearProgress from '@mui/material/LinearProgress';
import { useUsers } from 'hooks/api/getters/useUsers/useUsers';
import { useInstanceStatus } from 'hooks/api/getters/useInstanceStatus/useInstanceStatus';
const SeatsUsageBar = styled(LinearProgress)(({ theme }) => ({
marginTop: theme.spacing(0.5),
height: theme.spacing(0.5),
borderRadius: theme.shape.borderRadiusMedium,
}));
const TotalSeatsRow = styled(Box)(({ theme }) => ({
display: 'flex',
gap: 1,
alignItems: 'center',
}));
const TotalSeats = styled(Typography)(({ theme }) => ({
fontWeight: theme.typography.fontWeightBold,
fontSize: theme.typography.h1.fontSize,
color: theme.palette.primary.main,
}));
const SeatsUsageRow = styled(Box)(({ theme }) => ({
marginTop: theme.spacing(2),
}));
const SeatsUsageText = styled(Box)(({ theme }) => ({
textAlign: 'right',
}));
export const UserSeats = () => {
const { users } = useUsers();
const { instanceStatus } = useInstanceStatus();
const seats = instanceStatus?.seats;
if (typeof seats === 'number') {
const percentageSeats = Math.floor((users.length / seats) * 100);
return (
<Box>
<TotalSeatsRow>
<LicenseIcon />
<Typography sx={{ flex: 1 }}>User seats</Typography>
<TotalSeats>{seats}</TotalSeats>
</TotalSeatsRow>
<SeatsUsageRow>
<SeatsUsageText>
{users.length}/{seats} seats used
</SeatsUsageText>
<SeatsUsageBar
variant='determinate'
value={Math.min(100, percentageSeats)}
/>
</SeatsUsageRow>
</Box>
);
}
return null;
};