mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-04 15:14:29 +01:00
81ea24f08a
* Wiring up Collectibles lists/items * wip * more wip * more more wip * yet more wip * wippp * more wipppp * closer * wroking * more wip * cleanup * cleanup * add-collectible form validation * update default ipfs-gateway * update refresh button * fix proptypes issue + add more padding to asset background * css tweaking * more cleanup * more cleanup * more cleanup * add migration * address feedback * fix migration + cleanup * bumping controllers version + adapting new collectiblesController shape * fix yarn dedupe
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 CollectibleDetails from '../../components/app/collectible-details/collectible-details';
|
|
import { getCollectibles, getTokens } from '../../ducks/metamask/metamask';
|
|
import { DEFAULT_ROUTE } from '../../helpers/constants/routes';
|
|
import { isEqualCaseInsensitive } from '../../helpers/utils/util';
|
|
|
|
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 collectibles = useSelector(getCollectibles);
|
|
const { asset, id } = useParams();
|
|
|
|
const token = tokens.find(({ address }) =>
|
|
isEqualCaseInsensitive(address, asset),
|
|
);
|
|
|
|
const collectible = collectibles.find(
|
|
({ address, tokenId }) =>
|
|
isEqualCaseInsensitive(address, asset) && id === tokenId,
|
|
);
|
|
|
|
useEffect(() => {
|
|
const el = document.querySelector('.app');
|
|
el.scroll(0, 0);
|
|
}, []);
|
|
|
|
let content;
|
|
if (token) {
|
|
content = <TokenAsset token={token} />;
|
|
} else if (collectible) {
|
|
content = <CollectibleDetails collectible={collectible} />;
|
|
} 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;
|