mirror of
https://github.com/pezkuwichain/pezkuwi-sdk-ui.git
synced 2026-06-17 14:51:16 +00:00
d949863789
Comprehensive web interface for interacting with Pezkuwi blockchain. Features: - Blockchain explorer - Wallet management - Staking interface - Governance participation - Developer tools Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
103 lines
3.0 KiB
TypeScript
103 lines
3.0 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/app-tech-comm authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { DeriveCollectiveProposal } from '@pezkuwi/api-derive/types';
|
|
import type { CollectiveType } from '@pezkuwi/react-hooks/types';
|
|
import type { Hash } from '@pezkuwi/types/interfaces';
|
|
|
|
import React from 'react';
|
|
|
|
import ProposalCell from '@pezkuwi/app-democracy/Overview/ProposalCell';
|
|
import { AddressMini, Table } from '@pezkuwi/react-components';
|
|
import { useApi, useCall, useCollectiveInstance, useVotingStatus } from '@pezkuwi/react-hooks';
|
|
import { BlockToTime } from '@pezkuwi/react-query';
|
|
import { formatNumber } from '@pezkuwi/util';
|
|
|
|
import Close from './Close.js';
|
|
import Voting from './Voting.js';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
imageHash: Hash;
|
|
isMember: boolean;
|
|
members: string[];
|
|
prime?: string | null;
|
|
type: CollectiveType;
|
|
}
|
|
|
|
function Proposal ({ className = '', imageHash, isMember, members, prime, type }: Props): React.ReactElement<Props> | null {
|
|
const { api } = useApi();
|
|
const derive = useCall<DeriveCollectiveProposal>(api.derive[type as 'technicalCommittee'].proposal, [imageHash]);
|
|
const { hasFailed, isCloseable, isVoteable, remainingBlocks } = useVotingStatus(derive?.votes, members.length, type);
|
|
const modLocation = useCollectiveInstance(type);
|
|
|
|
if (!modLocation || !derive?.votes) {
|
|
return null;
|
|
}
|
|
|
|
const { ayes, end, index, nays, threshold } = derive.votes;
|
|
|
|
return (
|
|
<tr className={className}>
|
|
<Table.Column.Id value={index} />
|
|
<ProposalCell
|
|
imageHash={imageHash}
|
|
isCollective
|
|
proposal={derive.proposal}
|
|
/>
|
|
<td className='number'>
|
|
{formatNumber(ayes.length)}/{formatNumber(threshold)}
|
|
</td>
|
|
<td className='number together'>
|
|
{remainingBlocks && end && (
|
|
<>
|
|
<BlockToTime value={remainingBlocks} />
|
|
#{formatNumber(end)}
|
|
</>
|
|
)}
|
|
</td>
|
|
<td className='address'>
|
|
{ayes.map((address, index): React.ReactNode => (
|
|
<AddressMini
|
|
key={`${index}:${address.toHex()}`}
|
|
value={address}
|
|
withBalance={false}
|
|
/>
|
|
))}
|
|
</td>
|
|
<td className='address'>
|
|
{nays.map((address, index): React.ReactNode => (
|
|
<AddressMini
|
|
key={`${index}:${address.toHex()}`}
|
|
value={address}
|
|
withBalance={false}
|
|
/>
|
|
))}
|
|
</td>
|
|
<td className='button'>
|
|
{isVoteable && !isCloseable && (
|
|
<Voting
|
|
hash={imageHash}
|
|
isMember={isMember}
|
|
members={members}
|
|
prime={prime}
|
|
proposalId={index}
|
|
type={type}
|
|
/>
|
|
)}
|
|
{isCloseable && (
|
|
<Close
|
|
hasFailed={hasFailed}
|
|
hash={imageHash}
|
|
idNumber={index}
|
|
proposal={derive.proposal}
|
|
type={type}
|
|
/>
|
|
)}
|
|
</td>
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
export default React.memo(Proposal);
|