mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-05-01 12:27:59 +00:00
91 lines
3.2 KiB
TypeScript
91 lines
3.2 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/app-staking-async authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { DeriveBalancesAll } from '@pezkuwi/api-derive/types';
|
|
import type { PalletStakingRewardDestination } from '@pezkuwi/types/lookup';
|
|
import type { DestinationType } from '../types.js';
|
|
|
|
import React, { useMemo, useState } from 'react';
|
|
|
|
import { Dropdown, InputAddress, MarkError, Modal, TxButton } from '@pezkuwi/react-components';
|
|
import { useApi, useCall } from '@pezkuwi/react-hooks';
|
|
|
|
import { useTranslation } from '../../translate.js';
|
|
import { createDestCurr } from '../destOptions.js';
|
|
import SenderInfo from '../partials/SenderInfo.js';
|
|
|
|
interface Props {
|
|
defaultDestination?: PalletStakingRewardDestination | null;
|
|
controllerId: string;
|
|
onClose: () => void;
|
|
stashId: string;
|
|
}
|
|
|
|
function SetRewardDestination ({ controllerId, defaultDestination, onClose, stashId }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
const { api } = useApi();
|
|
const [destination, setDestination] = useState<DestinationType>(() => ((defaultDestination?.isAccount ? 'Account' : defaultDestination?.toString()) || 'Staked') as 'Staked');
|
|
const [destAccount, setDestAccount] = useState<string | null>(() => defaultDestination?.isAccount ? defaultDestination.asAccount.toString() : null);
|
|
const destBalance = useCall<DeriveBalancesAll>(api.derive.balances?.all, [destAccount]);
|
|
|
|
const options = useMemo(
|
|
() => createDestCurr(t),
|
|
[t]
|
|
);
|
|
|
|
const isAccount = destination === 'Account';
|
|
const isDestError = isAccount && destBalance && destBalance.accountId.eq(destAccount) && destBalance.freeBalance.isZero();
|
|
|
|
return (
|
|
<Modal
|
|
header={t('Bonding Preferences')}
|
|
onClose={onClose}
|
|
size='large'
|
|
>
|
|
<Modal.Content>
|
|
<SenderInfo
|
|
controllerId={controllerId}
|
|
stashId={stashId}
|
|
/>
|
|
<Modal.Columns hint={t('All rewards will go towards the selected output destination when a payout is made.')}>
|
|
<Dropdown
|
|
defaultValue={defaultDestination?.toString()}
|
|
label={t('payment destination')}
|
|
onChange={setDestination}
|
|
options={options}
|
|
value={destination}
|
|
/>
|
|
{isAccount && (
|
|
<InputAddress
|
|
label={t('the payment account')}
|
|
onChange={setDestAccount}
|
|
type='account'
|
|
value={destAccount}
|
|
/>
|
|
)}
|
|
{isDestError && (
|
|
<MarkError content={t('The selected destination account does not exist and cannot be used to receive rewards')} />
|
|
)}
|
|
</Modal.Columns>
|
|
</Modal.Content>
|
|
<Modal.Actions>
|
|
<TxButton
|
|
accountId={controllerId}
|
|
icon='sign-in-alt'
|
|
isDisabled={!controllerId || (isAccount && (!destAccount || isDestError))}
|
|
label={t('Set reward destination')}
|
|
onStart={onClose}
|
|
params={[
|
|
isAccount
|
|
? { Account: destAccount }
|
|
: destination
|
|
]}
|
|
tx={api.tx.staking.setPayee}
|
|
/>
|
|
</Modal.Actions>
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
export default React.memo(SetRewardDestination);
|