1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-01 01:18:10 +02:00

feat: export events as json ()

![image](https://github.com/user-attachments/assets/7e24339d-fa59-4b80-a322-05323e01eabe)
This commit is contained in:
Jaanus Sellin 2024-08-12 15:30:20 +03:00 committed by GitHub
parent fa96ff1450
commit b194393dae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 110 additions and 0 deletions
frontend/src/component/events/EventLog

View File

@ -0,0 +1,108 @@
import { type FC, useState } from 'react';
import {
IconButton,
ListItemText,
MenuItem,
MenuList,
Popover,
styled,
Tooltip,
Typography,
} from '@mui/material';
import FileDownload from '@mui/icons-material/FileDownload';
import type { EventSchema } from '../../../openapi';
const StyledActions = styled('div')(({ theme }) => ({
display: 'flex',
justifyContent: 'center',
}));
const StyledPopover = styled(Popover)(({ theme }) => ({
borderRadius: theme.shape.borderRadiusLarge,
padding: theme.spacing(1, 1.5),
}));
interface IEventActions {
events: EventSchema[];
}
export const EventActions: FC<IEventActions> = ({ events }) => {
const [anchorEl, setAnchorEl] = useState<null | HTMLElement>(null);
const open = Boolean(anchorEl);
const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
setAnchorEl(event.currentTarget);
};
const handleClose = () => {
setAnchorEl(null);
};
const exportJson = () => {
const jsonString = JSON.stringify(events);
const blob = new Blob([jsonString], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const currentDate = new Date().toISOString().split('T')[0];
const fileName = `events_${currentDate}.json`;
const a = document.createElement('a');
a.href = url;
a.download = fileName;
a.click();
URL.revokeObjectURL(url);
setAnchorEl(null);
};
const exportCsv = () => {
setAnchorEl(null);
};
return (
<StyledActions
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
}}
>
<Tooltip title={'Export'} arrow describeChild>
<div>
<IconButton
aria-label={'Export'}
aria-haspopup='true'
aria-expanded={open}
onClick={handleClick}
type='button'
>
<FileDownload />
</IconButton>
</div>
</Tooltip>
<StyledPopover
anchorEl={anchorEl}
open={open}
onClose={handleClose}
transformOrigin={{ horizontal: 'right', vertical: 'top' }}
anchorOrigin={{ horizontal: 'right', vertical: 'bottom' }}
disableScrollLock={true}
>
<MenuList>
<MenuItem onClick={exportCsv}>
<ListItemText>
<Typography variant='body2'>
Export as CSV
</Typography>
</ListItemText>
</MenuItem>
<MenuItem onClick={exportJson}>
<ListItemText>
<Typography variant='body2'>
Export as JSON
</Typography>
</ListItemText>
</MenuItem>
</MenuList>
</StyledPopover>
</StyledActions>
);
};

View File

@ -17,6 +17,7 @@ import { EventLogFilters } from './EventLogFilters';
import type { EventSchema } from 'openapi';
import { useEventLogSearch } from './useEventLogSearch';
import { StickyPaginationBar } from 'component/common/Table/StickyPaginationBar/StickyPaginationBar';
import { EventActions } from './EventActions';
interface IEventLogProps {
title: string;
@ -121,6 +122,7 @@ const NewEventLog = ({ title, project, feature }: IEventLogProps) => {
actions={
<>
{showDataSwitch}
<EventActions events={events} />
{!isSmallScreen && searchInputField}
</>
}