generated from stacks-network/.github
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
1,865 additions
and
423 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
125 changes: 125 additions & 0 deletions
125
src/app/signer/[signerKey]/AssociatedAddressesTable.tsx
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,125 @@ | ||
import { ReactNode, Suspense, useMemo } from 'react'; | ||
|
||
import { | ||
SignersStackersData, | ||
useSuspenseSignerStackersInfinite, | ||
} from '../../../app/signers/data/UseSignerAddresses'; | ||
import { CopyButton } from '../../../common/components/CopyButton'; | ||
import { ListFooter } from '../../../common/components/ListFooter'; | ||
import { Section } from '../../../common/components/Section'; | ||
import { Box } from '../../../ui/Box'; | ||
import { Flex } from '../../../ui/Flex'; | ||
import { Stack } from '../../../ui/Stack'; | ||
import { Text } from '../../../ui/Text'; | ||
import { ExplorerErrorBoundary } from '../../_components/ErrorBoundary'; | ||
import { useSuspenseCurrentStackingCycle } from '../../_components/Stats/CurrentStackingCycle/useCurrentStackingCycle'; | ||
import { AssociatedAddressesTableSkeleton } from './skeleton'; | ||
|
||
export const addressItemHeight = 69; | ||
|
||
export const AssociatedAddressesTableLayout = ({ children }: { children: ReactNode }) => { | ||
return <Section title="Associated addresses">{children}</Section>; | ||
}; | ||
|
||
export const AssociatedAddressListItemLayout = ({ | ||
children, | ||
isLast, | ||
}: { | ||
children: ReactNode; | ||
isLast: boolean; | ||
}) => { | ||
return ( | ||
<Flex | ||
alignItems={'center'} | ||
gap={1} | ||
py={6} | ||
borderBottom={isLast ? 'none' : '1px solid var(--stacks-colors-borderSecondary)'} | ||
> | ||
{children} | ||
</Flex> | ||
); | ||
}; | ||
|
||
export const AssociatedAddressListItem = ({ | ||
stacker, | ||
isLast, | ||
}: { | ||
stacker: SignersStackersData; | ||
isLast: boolean; | ||
}) => { | ||
return ( | ||
<AssociatedAddressListItemLayout isLast={isLast}> | ||
<Text fontSize={'sm'}>{stacker.stacker_address}</Text> | ||
<CopyButton | ||
className={'fancy-copy'} | ||
initialValue={stacker.pox_address} | ||
aria-label={'copy row'} | ||
size={4} | ||
color="textSubdued" | ||
/> | ||
</AssociatedAddressListItemLayout> | ||
); | ||
}; | ||
|
||
export const AssociatedAddressesTableBase = ({ signerKey }: { signerKey: string }) => { | ||
const { currentCycleId } = useSuspenseCurrentStackingCycle(); | ||
const { | ||
data: signerStackers, | ||
isFetchingNextPage, | ||
fetchNextPage, | ||
hasNextPage, | ||
} = useSuspenseSignerStackersInfinite(currentCycleId, signerKey); | ||
|
||
const stackers = useMemo( | ||
() => signerStackers?.pages.flatMap(page => page.results) ?? [], | ||
[signerStackers] | ||
); | ||
|
||
return ( | ||
<AssociatedAddressesTableLayout> | ||
<Stack gap={0}> | ||
<Box h={addressItemHeight * 10} overflow="auto"> | ||
{signerStackers?.pages | ||
.flatMap(page => page.results) | ||
.map((stacker, i) => ( | ||
<AssociatedAddressListItem | ||
key={stacker.stacker_address} | ||
stacker={stacker} | ||
isLast={i === stackers.length - 1} | ||
/> | ||
))} | ||
</Box> | ||
|
||
<ListFooter | ||
label="addresses" | ||
isLoading={isFetchingNextPage} | ||
fetchNextPage={fetchNextPage} | ||
hasNextPage={hasNextPage} | ||
pb={6} | ||
position={'sticky'} | ||
bottom={0} | ||
bg="surface" | ||
/> | ||
</Stack> | ||
</AssociatedAddressesTableLayout> | ||
); | ||
}; | ||
|
||
export const AssociatedAddressesTable = ({ signerKey }: { signerKey: string }) => { | ||
return ( | ||
<ExplorerErrorBoundary | ||
Wrapper={Section} | ||
wrapperProps={{ | ||
title: 'Associated Addresses', | ||
gridColumnStart: ['1', '1', '2'], | ||
gridColumnEnd: ['2', '2', '3'], | ||
minWidth: 0, | ||
}} | ||
tryAgainButton | ||
> | ||
<Suspense fallback={<AssociatedAddressesTableSkeleton />}> | ||
<AssociatedAddressesTableBase signerKey={signerKey} /> | ||
</Suspense> | ||
</ExplorerErrorBoundary> | ||
); | ||
}; |
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,45 @@ | ||
import { SortDescending } from '@phosphor-icons/react'; | ||
import { useMemo } from 'react'; | ||
|
||
import { FilterMenu } from '../../../common/components/FilterMenu'; | ||
|
||
export enum CycleSortOrder { | ||
Asc = 'asc', | ||
Desc = 'desc', | ||
} | ||
|
||
function getSortOptionLabel(order: CycleSortOrder) { | ||
switch (order) { | ||
case CycleSortOrder.Asc: | ||
return 'Cycle Asc'; | ||
case CycleSortOrder.Desc: | ||
return 'Cycle Desc'; | ||
} | ||
} | ||
|
||
export function CycleSortFilter({ | ||
cycleSortOrder, | ||
setCycleSortOrder, | ||
}: { | ||
cycleSortOrder: CycleSortOrder; | ||
setCycleSortOrder: (order: CycleSortOrder) => void; | ||
}) { | ||
const menuItems = useMemo( | ||
() => | ||
Object.values(CycleSortOrder).map(order => ({ | ||
onClick: () => { | ||
setCycleSortOrder(order); | ||
}, | ||
label: getSortOptionLabel(order), | ||
})), | ||
[setCycleSortOrder] | ||
); | ||
|
||
return ( | ||
<FilterMenu | ||
filterLabel={() => getSortOptionLabel(cycleSortOrder)} | ||
menuItems={menuItems} | ||
leftIcon={SortDescending} | ||
/> | ||
); | ||
} |
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,51 @@ | ||
'use client'; | ||
|
||
import { useParams } from 'next/navigation'; | ||
|
||
import { Grid, GridProps } from '../../../ui/Grid'; | ||
import { Stack } from '../../../ui/Stack'; | ||
import { PageTitle } from '../../_components/PageTitle'; | ||
import { AssociatedAddressesTable } from './AssociatedAddressesTable'; | ||
import { SignerStats } from './SignerStats'; | ||
import { SignerSummary } from './SignerSummary'; | ||
import { StackingHistoryTable } from './StackingHistoryTable'; | ||
|
||
export function SignerKeyPageLayout(props: GridProps) { | ||
return ( | ||
<Grid | ||
gridColumnGap={8} | ||
gridTemplateColumns={['100%', '100%', 'repeat(1, calc(100% - 352px) 320px)']} | ||
gridRowGap={[8, 8, 'unset']} | ||
maxWidth="100%" | ||
alignItems="flex-start" | ||
{...props} | ||
/> | ||
); | ||
} | ||
|
||
export default function PageClient() { | ||
const params = useParams<{ signerKey: string }>(); | ||
|
||
if (!params) { | ||
console.error('params is undefined. This component should receive params from its parent.'); | ||
return null; // or some error UI | ||
} | ||
|
||
const { signerKey } = params; | ||
return ( | ||
<> | ||
<PageTitle>Signer key</PageTitle> | ||
|
||
<SignerKeyPageLayout> | ||
<Stack gap={8}> | ||
<SignerSummary signerKey={signerKey} /> | ||
<AssociatedAddressesTable signerKey={signerKey} /> | ||
<StackingHistoryTable signerKey={signerKey} /> | ||
</Stack> | ||
<Stack gap={8}> | ||
<SignerStats signerKey={signerKey} /> | ||
</Stack> | ||
</SignerKeyPageLayout> | ||
</> | ||
); | ||
} |
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,86 @@ | ||
import { ReactNode, Suspense } from 'react'; | ||
|
||
import { ExplorerErrorBoundary } from '../../../app/_components/ErrorBoundary'; | ||
import { formatSignerLatency, formatSignerProposalMetric } from '../../../app/signers/SignersTable'; | ||
import { useSignerMetricsSignerForCycle } from '../../../app/signers/data/signer-metrics-hooks'; | ||
import { Section } from '../../../common/components/Section'; | ||
import { Box } from '../../../ui/Box'; | ||
import { Stack } from '../../../ui/Stack'; | ||
import { Caption } from '../../../ui/typography'; | ||
import { useSuspenseCurrentStackingCycle } from '../../_components/Stats/CurrentStackingCycle/useCurrentStackingCycle'; | ||
import { SignerKeyStatsSkeleton } from './skeleton'; | ||
|
||
interface SignerStatsProps { | ||
signerKey: string; | ||
} | ||
|
||
export const SignerStatsLayout = ({ children }: { children: ReactNode }) => { | ||
return <Section title={'Stats'}>{children}</Section>; | ||
}; | ||
|
||
export const SignerKeyStat = ({ | ||
label, | ||
value, | ||
}: { | ||
label: string | ReactNode; | ||
value: string | ReactNode; | ||
}) => { | ||
return ( | ||
<Stack gap={2} py={4}> | ||
<Caption>{label}</Caption> | ||
<Box>{value}</Box> | ||
</Stack> | ||
); | ||
}; | ||
|
||
function SignerStatsBase({ signerKey }: SignerStatsProps) { | ||
const { currentCycleId } = useSuspenseCurrentStackingCycle(); | ||
const { data: signerMetrics } = useSignerMetricsSignerForCycle(currentCycleId, signerKey); | ||
const totalProposals = | ||
signerMetrics?.proposals_accepted_count + | ||
signerMetrics?.proposals_rejected_count + | ||
signerMetrics?.proposals_missed_count; | ||
|
||
return ( | ||
<SignerStatsLayout> | ||
<SignerKeyStat | ||
label="Latency" | ||
value={formatSignerLatency( | ||
signerMetrics?.average_response_time_ms, | ||
signerMetrics?.proposals_missed_count | ||
)} | ||
/> | ||
<SignerKeyStat | ||
label="Accepted proposals %" | ||
value={formatSignerProposalMetric(signerMetrics?.proposals_accepted_count / totalProposals)} | ||
/> | ||
<SignerKeyStat | ||
label="Rejected proposals %" | ||
value={formatSignerProposalMetric(signerMetrics?.proposals_rejected_count / totalProposals)} | ||
/> | ||
<SignerKeyStat | ||
label="Missed proposals %" | ||
value={formatSignerProposalMetric(signerMetrics?.proposals_missed_count / totalProposals)} | ||
/> | ||
</SignerStatsLayout> | ||
); | ||
} | ||
|
||
export function SignerStats(props: SignerStatsProps) { | ||
return ( | ||
<ExplorerErrorBoundary | ||
Wrapper={Section} | ||
wrapperProps={{ | ||
title: 'Signer Stats', | ||
gridColumnStart: ['1', '1', '2'], | ||
gridColumnEnd: ['2', '2', '3'], | ||
minWidth: 0, | ||
}} | ||
tryAgainButton | ||
> | ||
<Suspense fallback={<SignerKeyStatsSkeleton />}> | ||
<SignerStatsBase {...props} /> | ||
</Suspense> | ||
</ExplorerErrorBoundary> | ||
); | ||
} |
Oops, something went wrong.