mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-08-05 19:35:43 +00:00
60a800b33e
- Clone Polkadot.js Apps repository - Update package.json with Pezkuwi branding - Add Pezkuwi endpoint to production chains (wss://pezkuwichain.app:9944) - Create comprehensive README for SDK UI - Set up project structure with all packages Next steps: - Apply Kurdistan colors (Kesk, Sor, Zer, Spi + Black) to UI theme - Replace logos with Pezkuwi branding - Test build and deployment
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
// Copyright 2017-2025 @polkadot/app-council authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { AccountId, Balance } from '@polkadot/types/interfaces';
|
|
|
|
import React from 'react';
|
|
|
|
import { AddressSmall, Tag } from '@polkadot/react-components';
|
|
import { formatNumber } from '@polkadot/util';
|
|
|
|
import { useTranslation } from '../translate.js';
|
|
import Voters from './Voters.js';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
address: AccountId;
|
|
balance?: Balance;
|
|
hasElections: boolean;
|
|
isPrime?: boolean;
|
|
voters?: AccountId[];
|
|
}
|
|
|
|
function Candidate ({ address, balance, className = '', hasElections, isPrime, voters }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<tr className={`${className} isExpanded isFirst ${hasElections ? '' : 'isLast'}`}>
|
|
<td className='address all relative'>
|
|
<AddressSmall value={address} />
|
|
{isPrime && (
|
|
<Tag
|
|
className='absolute'
|
|
color='green'
|
|
label={t('prime')}
|
|
/>
|
|
)}
|
|
</td>
|
|
<td className='number'>
|
|
{voters && formatNumber(voters.length)}
|
|
</td>
|
|
</tr>
|
|
{hasElections && (
|
|
<Voters
|
|
balance={balance}
|
|
voters={voters}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default React.memo(Candidate);
|