-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show block-level events in block details
W.I.P. because filtering out tx-level events is done on the client
- Loading branch information
Showing
4 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Show block-level evens in block details |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
import { FC, useState } from 'react' | ||
import { useTranslation } from 'react-i18next' | ||
import { ScrollingCard } from '../../components/PageLayout/ScrollingCard' | ||
import CardHeader from '@mui/material/CardHeader' | ||
import CardContent from '@mui/material/CardContent' | ||
|
||
import { Layer, RuntimeEventType, useGetRuntimeEvents } from '../../../oasis-nexus/api' | ||
import { ErrorBoundary } from '../../components/ErrorBoundary' | ||
import { AppErrors } from '../../../types/errors' | ||
import { SearchScope } from '../../../types/searchScope' | ||
import { RuntimeEventsDetailedList } from '../../components/RuntimeEvents/RuntimeEventsDetailedList' | ||
import { AddressSwitchOption } from '../../components/AddressSwitch' | ||
import { EventFilterMode, EventFilterSwitch } from '../../components/RuntimeEvents/EventListFilterSwitch' | ||
import { EmptyState } from '../../components/EmptyState' | ||
|
||
export const eventsContainerId = 'events' | ||
|
||
const EventsList: FC<{ scope: SearchScope; blockHeight: number; filterMode: EventFilterMode }> = ({ | ||
scope, | ||
blockHeight, | ||
filterMode, | ||
}) => { | ||
const { t } = useTranslation() | ||
if (scope.layer === Layer.consensus) { | ||
// Loading events for consensus blocks is not yet supported. | ||
// Should use useGetConsensusEvents() | ||
throw AppErrors.UnsupportedLayer | ||
} | ||
const eventsQuery = useGetRuntimeEvents(scope.network, scope.layer, { | ||
block: blockHeight, | ||
// TODO: search for tx_hase = null | ||
}) | ||
|
||
const { isLoading, isError, data } = eventsQuery | ||
|
||
const events = data?.data.events.filter( | ||
event => | ||
!event.tx_hash && // TODO: remove filtering here if it's implemented using the query parameters | ||
(filterMode === EventFilterMode.All || event.type !== RuntimeEventType.accountstransfer), | ||
) | ||
|
||
if (!events?.length && !isLoading) { | ||
return ( | ||
<EmptyState | ||
description={t('runtimeEvent.cantFindMatchingEvents')} | ||
title={t('runtimeEvent.noEvents')} | ||
light={true} | ||
/> | ||
) | ||
} | ||
|
||
return ( | ||
<RuntimeEventsDetailedList | ||
scope={scope} | ||
events={events} | ||
isLoading={isLoading} | ||
isError={isError} | ||
addressSwitchOption={AddressSwitchOption.ETH} | ||
/> | ||
) | ||
} | ||
|
||
export const EventsCard: FC<{ scope: SearchScope; blockHeight: number }> = ({ scope, blockHeight }) => { | ||
const [filterMode, setFilterMode] = useState<EventFilterMode>(EventFilterMode.All) | ||
const { t } = useTranslation() | ||
return ( | ||
<ScrollingCard id={eventsContainerId}> | ||
<CardHeader | ||
disableTypography | ||
component="h3" | ||
title={t('common.events')} | ||
action={<EventFilterSwitch selected={filterMode} onSelectionChange={setFilterMode} />} | ||
/> | ||
<CardContent> | ||
<ErrorBoundary light={true}> | ||
<EventsList scope={scope} blockHeight={blockHeight} filterMode={filterMode} /> | ||
</ErrorBoundary> | ||
</CardContent> | ||
</ScrollingCard> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters