import React from "react"; import { Text } from "rebass"; import { Currency } from "@uniswap/sdk-core"; import styled from "styled-components/macro"; import { SUGGESTED_BASES } from "../../constants/routing"; import { currencyId } from "../../utils/currencyId"; import { AutoColumn } from "../Column"; import QuestionHelper from "../QuestionHelper"; import { AutoRow } from "../Row"; import CurrencyLogo from "../CurrencyLogo"; const BaseWrapper = styled.div<{ disable?: boolean }>` border: 1px solid ${({ theme, disable }) => (disable ? "transparent" : theme.bg3)}; border-radius: 10px; display: flex; padding: 6px; align-items: center; :hover { cursor: ${({ disable }) => !disable && "pointer"}; background-color: ${({ theme, disable }) => !disable && theme.bg2}; } background-color: ${({ theme, disable }) => disable && theme.bg3}; opacity: ${({ disable }) => disable && "0.4"}; `; export default function CommonBases({ chainId, onSelect, selectedCurrency, }: { chainId?: number; selectedCurrency?: Currency | null; onSelect: (currency: Currency) => void; }) { return ( Common bases {(typeof chainId === "number" ? SUGGESTED_BASES[chainId] ?? [] : [] ).map((currency: Currency) => { const isSelected = selectedCurrency?.equals(currency); return ( !isSelected && onSelect(currency)} disable={isSelected} key={currencyId(currency)} > {currency.symbol} ); })} ); }