mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-07-28 02:45:49 +00:00
73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/app-bounties authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { BountyApi } from './hooks/useBounties.js';
|
|
|
|
import React, { useMemo } from 'react';
|
|
|
|
import { CardSummary, SummaryBox } from '@pezkuwi/react-components';
|
|
import { useTreasury } from '@pezkuwi/react-hooks';
|
|
import { FormatBalance } from '@pezkuwi/react-query';
|
|
import { BN, formatNumber } from '@pezkuwi/util';
|
|
|
|
import { useTranslation } from './translate.js';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
info: BountyApi;
|
|
}
|
|
|
|
function Summary ({ className = '', info: { bestNumber, bounties, bountyCount, childCount } }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
const { spendPeriod } = useTreasury();
|
|
|
|
const totalValue = useMemo(
|
|
() => (bounties || []).reduce((total, { bounty: { value } }) => total.iadd(value), new BN(0)),
|
|
[bounties]
|
|
);
|
|
|
|
return (
|
|
<SummaryBox className={`${className} ui--BountySummary`}>
|
|
<section>
|
|
{bounties && (
|
|
<CardSummary label={t('active')}>
|
|
{formatNumber(bounties.length)}
|
|
</CardSummary>
|
|
)}
|
|
{bountyCount && bounties && (
|
|
<CardSummary label={t('past')}>
|
|
{formatNumber(bountyCount.subn(bounties.length))}
|
|
</CardSummary>
|
|
)}
|
|
{childCount && (
|
|
<CardSummary label={t('children')}>
|
|
{formatNumber(childCount)}
|
|
</CardSummary>
|
|
)}
|
|
</section>
|
|
<section>
|
|
<CardSummary label={t('active total')}>
|
|
<FormatBalance
|
|
value={totalValue}
|
|
withSi
|
|
/>
|
|
</CardSummary>
|
|
</section>
|
|
<section>
|
|
{bestNumber && !spendPeriod.isZero() && (
|
|
<CardSummary
|
|
label={t('funding period')}
|
|
progress={{
|
|
total: spendPeriod,
|
|
value: bestNumber.mod(spendPeriod),
|
|
withTime: true
|
|
}}
|
|
/>
|
|
)}
|
|
</section>
|
|
</SummaryBox>
|
|
);
|
|
}
|
|
|
|
export default React.memo(Summary);
|