mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 15:57:59 +00:00
34 lines
820 B
TypeScript
34 lines
820 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-query authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React from 'react';
|
|
|
|
import { useApi, useCall } from '@pezkuwi/react-hooks';
|
|
|
|
import FormatBalance from './FormatBalance.js';
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
label?: React.ReactNode;
|
|
}
|
|
|
|
function TotalIssuance ({ children, className = '', label }: Props): React.ReactElement<Props> | null {
|
|
const { api } = useApi();
|
|
const totalIssuance = useCall<string>(api.query.balances?.totalIssuance);
|
|
|
|
return (
|
|
<div className={className}>
|
|
{label || ''}
|
|
<FormatBalance
|
|
className={totalIssuance ? '' : '--tmp'}
|
|
value={totalIssuance || 1}
|
|
withSi
|
|
/>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default React.memo(TotalIssuance);
|