import React from "react"; import { Skeleton, useColorModeValue, useTheme, useToken, } from "@chakra-ui/react"; import { ClassNames } from "@emotion/react"; import { Link } from "react-router-dom"; import { safeImageUrl, useCommonStyles } from "../util"; import { CheckIcon, StarIcon } from "@chakra-ui/icons"; function SquareItemCard({ item, tradeMatchingMode = null, ...props }) { const outlineShadowValue = useToken("shadows", "outline"); return ( {({ css }) => ( // SquareItemCard renders in large lists of 1k+ items, so we get a big // perf win by using Emotion directly instead of Chakra's styled-system // Box. } /> )} ); } function SquareItemCardLayout({ name, thumbnailImage, minHeightNumLines = 2 }) { const { brightBackground } = useCommonStyles(); const brightBackgroundValue = useToken("colors", brightBackground); const theme = useTheme(); return ( // SquareItemCard renders in large lists of 1k+ items, so we get a big perf // win by using Emotion directly instead of Chakra's styled-system Box. {({ css }) => (
{thumbnailImage}
{name}
)}
); } function ItemThumbnail({ item, tradeMatchingMode }) { const kindColorScheme = item.isNc ? "purple" : item.isPb ? "orange" : "gray"; const thumbnailShadowColor = useColorModeValue( `${kindColorScheme}.200`, `${kindColorScheme}.600` ); const thumbnailShadowColorValue = useToken("colors", thumbnailShadowColor); const mdRadiusValue = useToken("radii", "md"); // Normally, we just show the owns/wants badges depending on whether the // current user owns/wants it. But, in a trade list, we use trade-matching // mode instead: only show the badge if it represents a viable trade, and add // some extra flair to it, too! let showOwnsBadge; let showWantsBadge; let showTradeMatchFlair; if (tradeMatchingMode == null) { showOwnsBadge = item.currentUserOwnsThis; showWantsBadge = item.currentUserWantsThis; showTradeMatchFlair = false; } else if (tradeMatchingMode === "offering") { showOwnsBadge = false; showWantsBadge = item.currentUserWantsThis; showTradeMatchFlair = true; } else if (tradeMatchingMode === "seeking") { showOwnsBadge = item.currentUserOwnsThis; showWantsBadge = false; showTradeMatchFlair = true; } else if (tradeMatchingMode === "hide-all") { showOwnsBadge = false; showWantsBadge = false; showTradeMatchFlair = false; } else { throw new Error(`unexpected tradeMatchingMode ${tradeMatchingMode}`); } return ( {({ css }) => (
{`Thumbnail
{showOwnsBadge && ( {showTradeMatchFlair && (
Match
)}
)} {showWantsBadge && ( {showTradeMatchFlair && (
Match
)}
)}
{item.isNc != null && (
{item.isNc ? "NC" : item.isPb ? "PB" : "NP"}
)}
)}
); } function ItemOwnsWantsBadge({ colorScheme, children, label }) { const badgeBackground = useColorModeValue( `${colorScheme}.100`, `${colorScheme}.500` ); const badgeColor = useColorModeValue( `${colorScheme}.500`, `${colorScheme}.100` ); const [badgeBackgroundValue, badgeColorValue] = useToken("colors", [ badgeBackground, badgeColor, ]); return ( {({ css }) => (
*/ white-space: nowrap; vertical-align: middle; text-transform: uppercase; font-size: 0.65rem; font-weight: 700; background: ${badgeBackgroundValue}; color: ${badgeColorValue}; `} > {children}
)}
); } function ItemThumbnailKindBadge({ colorScheme, children }) { const badgeBackground = useColorModeValue( `${colorScheme}.100`, `${colorScheme}.500` ); const badgeColor = useColorModeValue( `${colorScheme}.500`, `${colorScheme}.100` ); const [badgeBackgroundValue, badgeColorValue] = useToken("colors", [ badgeBackground, badgeColor, ]); return ( {({ css }) => (
*/ white-space: nowrap; vertical-align: middle; padding-left: 0.25rem; padding-right: 0.25rem; text-transform: uppercase; font-size: 0.65rem; border-radius: 0.125rem; font-weight: 700; background: ${badgeBackgroundValue}; color: ${badgeColorValue}; `} > {children}
)}
); } export function SquareItemCardSkeleton({ minHeightNumLines }) { return ( {minHeightNumLines >= 3 && ( )} } thumbnailImage={} minHeightNumLines={minHeightNumLines} /> ); } export default SquareItemCard;