components#TokensTable TypeScript Examples
The following examples show how to use
components#TokensTable.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AnalyticsTokens.tsx From interface-v2 with GNU General Public License v3.0 | 5 votes |
AnalyticsTokens: React.FC = () => {
const classes = useStyles();
const { palette } = useTheme();
const [tokensFilter, setTokensFilter] = useState(0);
const [topTokens, updateTopTokens] = useState<any[] | null>(null);
const { bookmarkTokens } = useBookmarkTokens();
const favoriteTokens = useMemo(() => {
if (topTokens) {
return topTokens.filter(
(token: any) => bookmarkTokens.indexOf(token.id) > -1,
);
} else {
return [];
}
}, [topTokens, bookmarkTokens]);
useEffect(() => {
const fetchTopTokens = async () => {
updateTopTokens(null); //set top tokens as null to show loading status when fetching tokens data
const [newPrice, oneDayPrice] = await getEthPrice();
const topTokensData = await getTopTokens(newPrice, oneDayPrice, 200);
if (topTokensData) {
updateTopTokens(topTokensData);
}
};
fetchTopTokens();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [updateTopTokens]);
return (
<Box width='100%' mb={3}>
<TopMovers background={palette.grey.A700} hideArrow={true} />
<Box my={4} px={2} display='flex' flexWrap='wrap' alignItems='center'>
<Box
className={classes.tokensFilter}
onClick={() => setTokensFilter(0)}
color={
tokensFilter === 0 ? palette.primary.main : palette.text.disabled
}
>
<Typography variant='h6'>All Cryptos</Typography>
</Box>
<Box
className={classes.tokensFilter}
color={
tokensFilter === 1 ? palette.primary.main : palette.text.disabled
}
onClick={() => setTokensFilter(1)}
>
<Typography variant='h6'>Favourites</Typography>
</Box>
<Box
className={classes.tokensFilter}
color={
tokensFilter === 2 ? palette.primary.main : palette.text.disabled
}
onClick={() => setTokensFilter(2)}
>
<Typography variant='h6'>New Listing</Typography>
</Box>
</Box>
<Box className={classes.panel}>
{topTokens && topTokens.length === 200 ? (
<TokensTable data={tokensFilter === 0 ? topTokens : favoriteTokens} />
) : (
<Skeleton variant='rect' width='100%' height={150} />
)}
</Box>
</Box>
);
}
Example #2
Source File: AnalyticsOverview.tsx From interface-v2 with GNU General Public License v3.0 | 4 votes |
AnalyticsOverview: React.FC = () => {
const classes = useStyles();
const history = useHistory();
const { breakpoints } = useTheme();
const isMobile = useMediaQuery(breakpoints.down('xs'));
const { globalData, updateGlobalData } = useGlobalData();
const [topTokens, updateTopTokens] = useState<any[] | null>(null);
const [topPairs, updateTopPairs] = useState<any[] | null>(null);
useEffect(() => {
const fetchGlobalData = async () => {
const [newPrice, oneDayPrice] = await getEthPrice();
const globalData = await getGlobalData(newPrice, oneDayPrice);
if (globalData) {
updateGlobalData({ data: globalData });
}
};
const fetchTopTokens = async () => {
updateTopTokens(null);
const [newPrice, oneDayPrice] = await getEthPrice();
const topTokensData = await getTopTokens(
newPrice,
oneDayPrice,
GlobalConst.utils.ROWSPERPAGE,
);
if (topTokensData) {
updateTopTokens(topTokensData);
}
};
const fetchTopPairs = async () => {
updateTopPairs(null);
const [newPrice] = await getEthPrice();
const pairs = await getTopPairs(GlobalConst.utils.ROWSPERPAGE);
const formattedPairs = pairs
? pairs.map((pair: any) => {
return pair.id;
})
: [];
const pairData = await getBulkPairData(formattedPairs, newPrice);
if (pairData) {
updateTopPairs(pairData);
}
};
fetchGlobalData();
fetchTopTokens();
fetchTopPairs();
}, [updateGlobalData, updateTopTokens, updateTopPairs]);
return (
<Box width='100%' mb={3}>
<Grid container spacing={4}>
<Grid item xs={12} sm={12} md={6}>
<Box className={classes.panel} padding={isMobile ? 1.5 : 3} width={1}>
<AnalyticsLiquidityChart />
</Box>
</Grid>
<Grid item xs={12} sm={12} md={6}>
<Box
className={classes.panel}
padding={isMobile ? 1.5 : 3}
width={1}
height={1}
display='flex'
flexDirection='column'
justifyContent='space-between'
>
<AnalyticsVolumeChart />
</Box>
</Grid>
</Grid>
<Box mt={4}>
<Box
display='flex'
flexWrap='wrap'
paddingX={4}
paddingY={1.5}
className={classes.panel}
>
{globalData ? (
<AnalyticsInfo data={globalData} />
) : (
<Skeleton width='100%' height={20} />
)}
</Box>
</Box>
<Box mt={4}>
<Box display='flex' justifyContent='space-between' alignItems='center'>
<Box className={classes.headingWrapper}>
<Typography variant='h6'>Top Tokens</Typography>
</Box>
<Box
className={classes.headingWrapper}
style={{ cursor: 'pointer' }}
onClick={() => history.push(`/analytics/tokens`)}
>
<Typography variant='h6'>See All</Typography>
<ArrowForwardIos />
</Box>
</Box>
</Box>
<Box
mt={3}
paddingX={isMobile ? 1.5 : 4}
paddingY={isMobile ? 1.5 : 3}
className={classes.panel}
>
{topTokens ? (
<TokensTable data={topTokens} />
) : (
<Skeleton variant='rect' width='100%' height={150} />
)}
</Box>
<Box mt={4}>
<Box display='flex' justifyContent='space-between' alignItems='center'>
<Box className={classes.headingWrapper}>
<Typography variant='h6'>Top Pairs</Typography>
</Box>
<Box
className={classes.headingWrapper}
style={{ cursor: 'pointer' }}
onClick={() => history.push(`/analytics/pairs`)}
>
<Typography variant='h6'>See All</Typography>
<ArrowForwardIos />
</Box>
</Box>
</Box>
<Box
mt={3}
paddingX={isMobile ? 1.5 : 4}
paddingY={isMobile ? 1.5 : 3}
className={classes.panel}
>
{topPairs ? (
<PairTable data={topPairs} />
) : (
<Skeleton variant='rect' width='100%' height={150} />
)}
</Box>
</Box>
);
}