Create Licenses page

This commit is contained in:
Mathias Wagner
2024-07-20 13:09:41 +02:00
parent 1d8dc0ec7a
commit e77d502de2
3 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,51 @@
import {DataGrid} from '@mui/x-data-grid';
import {useContext, useEffect, useState} from "react";
import {getRequest} from "@/common/utils/RequestUtil.js";
import {ProjectContext} from "@/states/Dashboard/contexts/Project";
import {Button, Stack, TextField} from "@mui/material";
import {Search} from "@mui/icons-material";
import columns from "./columns.jsx";
export const Licenses = () => {
const {currentProject} = useContext(ProjectContext);
const [isLoading, setIsLoading] = useState(true);
const [rows, setRows] = useState([]);
const [pageInfo, setPageInfo] = useState({totalRowCount: 0, totalPages: 0, pageSize: 100, page: 0});
const fetchLicenses = async () => {
setIsLoading(true);
try {
const data = await getRequest(`/license/${currentProject.id}/list?limit=${pageInfo.pageSize}&page=${pageInfo.page}`);
setRows(data?.licenses.map((license) => ({id: license.key, ...license})) || []);
setPageInfo(pageInfo => ({totalRowCount: data.total, totalPages: Math.ceil(data.total / pageInfo.pageSize),
pageSize: pageInfo.pageSize, page: pageInfo.page}));
setIsLoading(false);
} catch (e) {
console.error(e);
}
}
const onPageChange = async (page) => setPageInfo({...pageInfo, page: page});
useEffect(() => {
fetchLicenses();
}, [pageInfo.page]);
return (
<Stack>
<Stack justifyContent="space-between" direction="row" sx={{mb: 2}} alignItems="center">
<TextField variant="outlined" size="small" placeholder="Lookup license"
InputProps={{startAdornment: <Search sx={{mr: 1}} />}}/>
<Button variant="contained" color="primary">Create license</Button>
</Stack>
<DataGrid rows={rows} columns={columns} loading={isLoading} paginationMode="server" disableSelectionOnClick
rowCount={pageInfo.totalRowCount} paginationModel={pageInfo} autoHeight disableColumnFilter
onPaginationModelChange={(page) => onPageChange(page.page)} disableColumnMenu
sx={{display: 'grid', gridTemplateRows: 'auto 1f auto'}} />
</Stack>
);
}

View File

@ -0,0 +1,28 @@
import {IconButton, Stack} from "@mui/material";
import {Delete, Edit, Key} from "@mui/icons-material";
export default [
{
field: 'key', headerName: 'License key', width: 250, renderCell: (params) => <Stack direction="row" gap={1}
alignItems="center">
<Key/>{params.value}
</Stack>
},
{field: 'groups', headerName: 'Groups', width: 200},
{field: 'permissions', headerName: 'Permissions', width: 200},
{field: 'currentUses', headerName: 'Current uses', width: 180},
{
field: 'maxUses', headerName: 'Maximum uses', width: 180, renderCell: (params) =>
params.value === -1 ? "Unlimited" : params.value
},
{
field: 'expirationDate', headerName: 'Expiration date', width: 200, renderCell: (params) =>
new Date(params.value).getTime() === 0 ? "Never" : new Date(params.value).toLocaleString()
},
{
field: 'actions', headerName: 'Actions', width: 80, renderCell: () => <Stack direction="row" gap={1}>
<IconButton size="small" color="primary"><Edit/></IconButton>
<IconButton size="small" color="error"><Delete/></IconButton>
</Stack>, sortable: false, filterable: false, align: 'center'
}
];

View File

@ -0,0 +1 @@
export {Licenses as default} from "./Licenses.jsx";