import {Fragment} from 'react'; import styled from '@emotion/styled'; import ActivityAvatar from 'sentry/components/activity/item/avatar'; import UserAvatar from 'sentry/components/avatar/userAvatar'; import DateTime from 'sentry/components/dateTime'; import SelectControl from 'sentry/components/forms/selectControl'; import Pagination, {CursorHandler} from 'sentry/components/pagination'; import {PanelTable} from 'sentry/components/panels'; import Tag from 'sentry/components/tag'; import Tooltip from 'sentry/components/tooltip'; import {t} from 'sentry/locale'; import space from 'sentry/styles/space'; import {AuditLog, User} from 'sentry/types'; import {shouldUse24Hours} from 'sentry/utils/dates'; import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader'; const avatarStyle = { width: 36, height: 36, marginRight: 8, }; const getAvatarDisplay = (logEntryUser: User | undefined) => { // Display Sentry's avatar for system or superuser-initiated events if ( logEntryUser?.isSuperuser || (logEntryUser?.name === 'Sentry' && logEntryUser?.email === undefined) ) { return ; } // Display user's avatar for non-superusers-initiated events if (logEntryUser !== undefined) { return ; } return null; }; const addUsernameDisplay = (logEntryUser: User | undefined) => { if (logEntryUser?.isSuperuser) { return ( {logEntryUser.name} {t('Sentry Staff')} ); } if (logEntryUser !== undefined) { return {logEntryUser.name}; } return null; }; type Props = { entries: AuditLog[] | null; eventType: string | undefined; eventTypes: string[] | null; isLoading: boolean; onCursor: CursorHandler | undefined; onEventSelect: (value: string) => void; pageLinks: string | null; }; const AuditLogList = ({ isLoading, pageLinks, entries, eventType, eventTypes, onCursor, onEventSelect, }: Props) => { const is24Hours = shouldUse24Hours(); const hasEntries = entries && entries.length > 0; const ipv4Length = 15; const eventOptions = eventTypes?.map(type => ({ label: type, value: type, })); const action = ( { onEventSelect(options?.value); }} /> ); return (
{entries?.map(entry => (
{getAvatarDisplay(entry.actor)}
{addUsernameDisplay(entry.actor)} {entry.note}
{entry.event} {entry.ipAddress && ( {entry.ipAddress} )}
))}
{pageLinks && }
); }; const SentryAvatar = styled(ActivityAvatar)` margin-right: ${space(1)}; `; const Name = styled('strong')` font-size: ${p => p.theme.fontSizeMedium}; `; const StaffTag = styled(Tag)` padding: ${space(1)}; `; const EventSelector = styled(SelectControl)` width: 250px; `; const UserInfo = styled('div')` display: flex; align-items: center; line-height: 1.2; font-size: ${p => p.theme.fontSizeSmall}; min-width: 250px; `; const NameContainer = styled('div')` display: flex; flex-direction: column; justify-content: center; `; const Note = styled('div')` font-size: ${p => p.theme.fontSizeSmall}; word-break: break-word; `; const FlexCenter = styled('div')` display: flex; align-items: center; `; const IpAddressOverflow = styled('div')` ${p => p.theme.overflowEllipsis}; min-width: 90px; `; const MonoDetail = styled('code')` font-size: ${p => p.theme.fontSizeMedium}; white-space: no-wrap; `; const TimestampInfo = styled('div')` display: grid; grid-template-rows: auto auto; gap: ${space(1)}; font-size: ${p => p.theme.fontSizeMedium}; `; export default AuditLogList;