mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-27 19:15:40 +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
40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
TypeScript
// Copyright 2017-2025 @polkadot/react-query authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { DeriveCouncilVote } from '@polkadot/api-derive/types';
|
|
import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces';
|
|
|
|
import React from 'react';
|
|
|
|
import { useApi, useCall } from '@polkadot/react-hooks';
|
|
|
|
import FormatBalance from './FormatBalance.js';
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
label?: React.ReactNode;
|
|
params?: AccountId | AccountIndex | Address | string | Uint8Array | null;
|
|
}
|
|
|
|
function LockedVote ({ children, className = '', label, params }: Props): React.ReactElement<Props> | null {
|
|
const { api } = useApi();
|
|
const info = useCall<DeriveCouncilVote>(api.derive.council.votesOf, [params]);
|
|
|
|
if (!info?.stake.gtn(0)) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<FormatBalance
|
|
className={className}
|
|
label={label}
|
|
value={info?.stake}
|
|
>
|
|
{children}
|
|
</FormatBalance>
|
|
);
|
|
}
|
|
|
|
export default React.memo(LockedVote);
|