mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-14 01:41:10 +00:00
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/app-staking authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { StakerState } from '@pezkuwi/react-hooks/types';
|
|
import type { PalletStakingUnappliedSlash } from '@pezkuwi/types/lookup';
|
|
import type { BN } from '@pezkuwi/util';
|
|
import type { SortedTargets } from '../types.js';
|
|
|
|
import React, { useRef } from 'react';
|
|
|
|
import { Table } from '@pezkuwi/react-components';
|
|
|
|
import { useTranslation } from '../translate.js';
|
|
import Account from './Account/index.js';
|
|
|
|
interface Props {
|
|
allSlashes: [BN, PalletStakingUnappliedSlash[]][];
|
|
className?: string;
|
|
footer: React.ReactNode;
|
|
isInElection?: boolean;
|
|
list?: StakerState[];
|
|
minCommission?: BN;
|
|
targets: SortedTargets;
|
|
}
|
|
|
|
function Accounts ({ allSlashes, className, footer, isInElection, list, minCommission, targets }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
|
|
const hdrRef = useRef<[React.ReactNode?, string?, number?][]>([
|
|
[t('stashes'), 'start', 2],
|
|
[t('controller'), 'address'],
|
|
[t('rewards'), 'start media--1200'],
|
|
[t('bonded'), 'number'],
|
|
[],
|
|
[]
|
|
]);
|
|
|
|
return (
|
|
<Table
|
|
className={className}
|
|
empty={list && t('No funds staked yet. Bond funds to validate or nominate a validator')}
|
|
footer={footer}
|
|
header={hdrRef.current}
|
|
>
|
|
{list?.map((info): React.ReactNode => (
|
|
<Account
|
|
allSlashes={allSlashes}
|
|
info={info}
|
|
isDisabled={isInElection}
|
|
key={info.stashId}
|
|
minCommission={minCommission}
|
|
targets={targets}
|
|
/>
|
|
))}
|
|
</Table>
|
|
);
|
|
}
|
|
|
|
export default React.memo(Accounts);
|