78 lines
2.3 KiB
TypeScript
78 lines
2.3 KiB
TypeScript
import { useCallback } from 'react';
|
|
import { Button } from '@vegaprotocol/ui-toolkit';
|
|
import { t } from '@vegaprotocol/i18n';
|
|
import { useWithdrawalDialog } from '@vegaprotocol/withdraws';
|
|
import { useAssetDetailsDialogStore } from '@vegaprotocol/assets';
|
|
import { Splash } from '@vegaprotocol/ui-toolkit';
|
|
import { useVegaWallet } from '@vegaprotocol/wallet';
|
|
import type { PinnedAsset } from '@vegaprotocol/accounts';
|
|
import { AccountManager, useTransferDialog } from '@vegaprotocol/accounts';
|
|
import { useDepositDialog } from '@vegaprotocol/deposits';
|
|
|
|
export const AccountsContainer = ({
|
|
pinnedAsset,
|
|
hideButtons,
|
|
noBottomPlaceholder,
|
|
storeKey,
|
|
}: {
|
|
pinnedAsset?: PinnedAsset;
|
|
hideButtons?: boolean;
|
|
noBottomPlaceholder?: boolean;
|
|
storeKey?: string;
|
|
}) => {
|
|
const { pubKey, isReadOnly } = useVegaWallet();
|
|
const { open: openAssetDetailsDialog } = useAssetDetailsDialogStore();
|
|
const openWithdrawalDialog = useWithdrawalDialog((store) => store.open);
|
|
const openDepositDialog = useDepositDialog((store) => store.open);
|
|
const openTransferDialog = useTransferDialog((store) => store.open);
|
|
|
|
const onClickAsset = useCallback(
|
|
(assetId?: string) => {
|
|
assetId && openAssetDetailsDialog(assetId);
|
|
},
|
|
[openAssetDetailsDialog]
|
|
);
|
|
|
|
if (!pubKey) {
|
|
return (
|
|
<Splash>
|
|
<p>{t('Please connect Vega wallet')}</p>
|
|
</Splash>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="h-full relative">
|
|
<AccountManager
|
|
partyId={pubKey}
|
|
onClickAsset={onClickAsset}
|
|
onClickWithdraw={openWithdrawalDialog}
|
|
onClickDeposit={openDepositDialog}
|
|
isReadOnly={isReadOnly}
|
|
pinnedAsset={pinnedAsset}
|
|
noBottomPlaceholder={noBottomPlaceholder}
|
|
storeKey={storeKey}
|
|
/>
|
|
{!isReadOnly && !hideButtons && (
|
|
<div className="flex gap-2 justify-end p-2 px-[11px] absolute lg:fixed bottom-0 right-3 dark:bg-black/75 bg-white/75 rounded">
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
data-testid="open-transfer-dialog"
|
|
onClick={() => openTransferDialog()}
|
|
>
|
|
{t('Transfer')}
|
|
</Button>
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
onClick={() => openDepositDialog()}
|
|
>
|
|
{t('Deposit')}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|