mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
33cc8d587a
* replaced all the instances of collectibles with nfts * updated actions * updated e2e seeder * updated confirm Approve test * updated test dapp change * updated test dapp change * nit fix * nit fix * updated casing and snapshots * updated casinG * added migrations * updated ,igration * updated 078.test * updated tests for 078 migration * updated migration * updated 078 index.js
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
import React, { useEffect } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import { Redirect, useParams } from 'react-router-dom';
|
|
import { isEqualCaseInsensitive } from '../../../shared/modules/string-utils';
|
|
import NftDetails from '../../components/app/nft-details/nft-details';
|
|
import { getNfts, getTokens } from '../../ducks/metamask/metamask';
|
|
import { DEFAULT_ROUTE } from '../../helpers/constants/routes';
|
|
|
|
import NativeAsset from './components/native-asset';
|
|
import TokenAsset from './components/token-asset';
|
|
|
|
const Asset = () => {
|
|
const nativeCurrency = useSelector((state) => state.metamask.nativeCurrency);
|
|
const tokens = useSelector(getTokens);
|
|
const nfts = useSelector(getNfts);
|
|
const { asset, id } = useParams();
|
|
|
|
const token = tokens.find(({ address }) =>
|
|
isEqualCaseInsensitive(address, asset),
|
|
);
|
|
|
|
const nft = nfts.find(
|
|
({ address, tokenId }) =>
|
|
isEqualCaseInsensitive(address, asset) && id === tokenId.toString(),
|
|
);
|
|
|
|
useEffect(() => {
|
|
const el = document.querySelector('.app');
|
|
el.scroll(0, 0);
|
|
}, []);
|
|
|
|
let content;
|
|
if (nft) {
|
|
content = <NftDetails nft={nft} />;
|
|
} else if (token) {
|
|
content = <TokenAsset token={token} />;
|
|
} else if (asset === nativeCurrency) {
|
|
content = <NativeAsset nativeCurrency={nativeCurrency} />;
|
|
} else {
|
|
content = <Redirect to={{ pathname: DEFAULT_ROUTE }} />;
|
|
}
|
|
return <div className="main-container asset__container">{content}</div>;
|
|
};
|
|
|
|
export default Asset;
|