Skip to content

Commit

Permalink
fix: loading on receiver screen when use max is used
Browse files Browse the repository at this point in the history
  • Loading branch information
esaminu committed Jan 28, 2022
1 parent a9c3be6 commit 0772666
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 24 deletions.
6 changes: 3 additions & 3 deletions packages/frontend/src/components/send/SendContainerV2.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import Review from './components/views/Review';
import SelectToken from './components/views/SelectToken';
import Success from './components/views/Success';

const { getFormattedTokenAmount, getParsedTokenAmount } = FungibleTokens;
const { getFormattedTokenAmount, getParsedTokenAmount, getUniqueTokenIdentity } = FungibleTokens;

export const VIEWS = {
ENTER_AMOUNT: 'enterAmount',
Expand Down Expand Up @@ -118,7 +118,7 @@ const SendContainerV2 = ({
setIsMaxAmount(false);
setUserInputAmount('');
}
}, [selectedToken]);
}, [getUniqueTokenIdentity(selectedToken)]);

useEffect(() => window.scrollTo(0, 0), [activeView]);

Expand Down Expand Up @@ -194,7 +194,7 @@ const SendContainerV2 = ({
<EnterReceiver
onClickGoBack={() => setActiveView(VIEWS.ENTER_AMOUNT)}
onClickCancel={() => redirectTo('/')}
amount={getRawAmount()}
amount={isMaxAmount ? selectedToken.balance : getRawAmount()}
selectedToken={selectedToken}
handleChangeReceiverId={(receiverId) => setReceiverId(receiverId)}
receiverId={receiverId}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import BN from 'bn.js';
import React from 'react';
import { Translate } from 'react-localize-redux';
import { useSelector } from 'react-redux';

import { useNEARAsTokenWithMetadata } from '../../../hooks/fungibleTokensIncludingNEAR';
import { selectNEARAsTokenWithMetadata } from '../../../redux/slices/tokens';
import FormButton from '../../common/FormButton';
import SkeletonLoading from '../../common/SkeletonLoading';
import Tooltip from '../../common/Tooltip';
Expand All @@ -28,7 +29,7 @@ export default function Staking({
selectedValidator,
multipleAccounts
}) {
const nearAsFT = useNEARAsTokenWithMetadata();
const nearAsFT = useSelector(selectNEARAsTokenWithMetadata);

return (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ import React, { useState, useEffect } from 'react';
import { Translate } from 'react-localize-redux';
import { useDispatch, useSelector } from 'react-redux';

import { useNEARAsTokenWithMetadata } from '../../../hooks/fungibleTokensIncludingNEAR';
import { Mixpanel } from '../../../mixpanel';
import { redirectTo } from '../../../redux/actions/account';
import { selectAccountId } from '../../../redux/slices/account';
import { selectActionsPending } from '../../../redux/slices/status';
import { actions as tokensActions, selectAllContractMetadata } from '../../../redux/slices/tokens';
import { actions as tokensActions, selectAllContractMetadata, selectNEARAsTokenWithMetadata } from '../../../redux/slices/tokens';
import { PROJECT_VALIDATOR_VERSION, ValidatorVersion } from '../../../utils/constants';
import FormButton from '../../common/FormButton';
import SafeTranslate from '../../SafeTranslate';
Expand Down Expand Up @@ -63,7 +62,7 @@ export default function Validator({
const [confirm, setConfirm] = useState(null);
const [farmList, setFarmList] = useState([]);
const [isFarmListLoading, setIsFarmListLoading] = useState(false);
const nearAsFT = useNEARAsTokenWithMetadata();
const nearAsFT = useSelector(selectNEARAsTokenWithMetadata);
const accountId = useSelector(selectAccountId);
const contractMetadataByContractId = useSelector(selectAllContractMetadata);

Expand Down
5 changes: 4 additions & 1 deletion packages/frontend/src/components/wallet/Tokens.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import React from 'react';
import styled from 'styled-components';

import FungibleTokens from '../../services/FungibleTokens';
import TokenBox from './TokenBox';

const { getUniqueTokenIdentity } = FungibleTokens;

const StyledContainer = styled.div`
width: 100%;
Expand All @@ -27,7 +30,7 @@ const Tokens = ({ tokens, onClick }) => {
return (
<StyledContainer>
{tokens.map((token, i) => (
<TokenBox key={token.contractName || token.onChainFTMetadata?.symbol} token={token} onClick={onClick}/>
<TokenBox key={getUniqueTokenIdentity(token)} token={token} onClick={onClick}/>
))}
</StyledContainer>
);
Expand Down
18 changes: 3 additions & 15 deletions packages/frontend/src/hooks/fungibleTokensIncludingNEAR.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,10 @@
import { useSelector } from "react-redux";

import { selectAccountId, selectBalance } from "../redux/slices/account";
import { selectNearTokenFiatValueUSD } from "../redux/slices/tokenFiatValues";
import { selectTokensWithMetadataForAccountId } from "../redux/slices/tokens";

export const useNEARAsTokenWithMetadata = () => {
const nearBalance = useSelector(selectBalance);
const nearTokenFiatValueUSD = useSelector(selectNearTokenFiatValueUSD);

return {
balance: nearBalance?.balanceAvailable || "",
onChainFTMetadata: { symbol: "NEAR" },
coingeckoMetadata: { usd: nearTokenFiatValueUSD },
};
};
import { selectAccountId } from "../redux/slices/account";
import { selectNEARAsTokenWithMetadata, selectTokensWithMetadataForAccountId } from "../redux/slices/tokens";

export const useFungibleTokensIncludingNEAR = function () {
const nearAsToken = useNEARAsTokenWithMetadata();
const nearAsToken = useSelector(selectNEARAsTokenWithMetadata);
const accountId = useSelector(selectAccountId);
const fungibleTokens = useSelector((state) =>
selectTokensWithMetadataForAccountId(state, { accountId })
Expand Down
11 changes: 11 additions & 0 deletions packages/frontend/src/redux/slices/tokens/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ import { createSelector } from 'reselect';

import { WHITELISTED_CONTRACTS } from '../../../config';
import FungibleTokens from '../../../services/FungibleTokens';
import { selectBalance } from '../account';
import createParameterSelector from '../createParameterSelector';
import initialErrorState from '../initialErrorState';
import { selectNearTokenFiatValueUSD } from '../tokenFiatValues';

const SLICE_NAME = 'tokens';

Expand Down Expand Up @@ -202,4 +204,13 @@ export const selectTokensLoading = createSelector(
const selectOneTokenLoading = createSelector(
[selectOneTokenFromOwnedTokens],
(token) => token.loading
);

export const selectNEARAsTokenWithMetadata = createSelector(
[selectBalance, selectNearTokenFiatValueUSD],
(nearBalance, nearTokenFiatValueUSD) => ({
balance: nearBalance?.balanceAvailable || "",
onChainFTMetadata: { symbol: "NEAR" },
coingeckoMetadata: { usd: nearTokenFiatValueUSD },
})
);
4 changes: 4 additions & 0 deletions packages/frontend/src/services/FungibleTokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ export default class FungibleTokens {
return formattedTokenAmount;
}

static getUniqueTokenIdentity(token) {
return token.contractName || token.onChainFTMetadata?.symbol;
}

static async getLikelyTokenContracts({ accountId }) {
return sendJson('GET', `${ACCOUNT_HELPER_URL}/account/${accountId}/likelyTokens`);
}
Expand Down

0 comments on commit 0772666

Please sign in to comment.