7b162104b6
Co-authored-by: Dariusz Majcherczyk <dariusz.majcherczyk@gmail.com>
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import { useT } from '../../lib/use-t';
|
|
import { type EnrichedRewardTransfer } from '../../lib/hooks/use-rewards';
|
|
import { useVegaWallet } from '@vegaprotocol/wallet-react';
|
|
import { useStakeAvailable } from '../../lib/hooks/use-stake-available';
|
|
import { useMyTeam } from '../../lib/hooks/use-my-team';
|
|
import { ActiveRewardCard } from '../rewards-container/reward-card';
|
|
|
|
export const GamesContainer = ({
|
|
data,
|
|
currentEpoch,
|
|
}: {
|
|
data: EnrichedRewardTransfer[];
|
|
currentEpoch: number;
|
|
}) => {
|
|
const t = useT();
|
|
const { pubKey } = useVegaWallet();
|
|
const { team } = useMyTeam();
|
|
const { stakeAvailable, isEligible, requiredStake } = useStakeAvailable();
|
|
|
|
const requirements = pubKey
|
|
? {
|
|
isEligible,
|
|
stakeAvailable,
|
|
requiredStake,
|
|
team,
|
|
pubKey,
|
|
}
|
|
: undefined;
|
|
|
|
if (!data || data.length === 0) {
|
|
return (
|
|
<p className="text-sm">
|
|
{t('Currently no active games on the network.')}
|
|
</p>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
{data.map((game, i) => {
|
|
// TODO: Remove `kind` prop from ActiveRewardCard
|
|
const { transfer } = game;
|
|
if (
|
|
transfer.kind.__typename !== 'RecurringTransfer' ||
|
|
!transfer.kind.dispatchStrategy?.dispatchMetric
|
|
) {
|
|
return null;
|
|
}
|
|
return (
|
|
<ActiveRewardCard
|
|
key={i}
|
|
transferNode={game}
|
|
currentEpoch={currentEpoch}
|
|
requirements={requirements}
|
|
/>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
};
|