Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate ProductCard component to tailwind #14018

Merged
merged 6 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 33 additions & 61 deletions src/components/ProductCard.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
import React, { ReactNode } from "react"
import type { ImageProps } from "next/image"
import { useTranslation } from "next-i18next"
import {
Badge,
Box,
Center,
Flex,
Heading,
HStack,
TextProps,
} from "@chakra-ui/react"
import type { ReactNode } from "react"
import { Badge } from "@chakra-ui/react"

import { ButtonLink } from "@/components/Buttons"
import { Image, type ImageProps } from "@/components/Image"
import Text from "@/components/OldText"
import { cn } from "@/lib/utils/cn"

import { ButtonLink } from "./ui/buttons/Button"
import { Center, Flex, HStack } from "./ui/flex"
import GitStars from "./GitStars"
import { TwImage } from "./Image"

type SubjectBadgeProps = {
subject: string
children: React.ReactNode
children: ReactNode
}

const SubjectBadge = ({ subject, children }: SubjectBadgeProps) => {
Expand Down Expand Up @@ -56,7 +50,7 @@ const SubjectBadge = ({ subject, children }: SubjectBadgeProps) => {
}

export type ProductCardProps = {
children?: React.ReactNode
children?: ReactNode
url: string
background: string
image: ImageProps["src"]
Expand Down Expand Up @@ -87,78 +81,56 @@ const ProductCard = ({
hideStars = false,
}: ProductCardProps) => {
const { t } = useTranslation("common")
const DESCRIPTION_STYLES: TextProps = {
opacity: 0.8,
fontSize: "sm",
mb: 2,
lineHeight: "140%",
}

return (
<Flex
flexDirection="column"
justifyContent="space-between"
color="text"
background="searchBackground"
boxShadow="0px 14px 66px rgba(0, 0, 0, 0.07)"
borderRadius="base"
border="1px"
borderColor="lightBorder"
textDecoration="none"
_hover={{
transition: "transform 0.1s",
transform: "scale(1.02)",
}}
className={cn(
"flex-col justify-between bg-background-highlight",
"rounded-base border no-underline",
"hover:scale-[1.02] hover:transition-transform"
)}
>
<Center
background={bgProp}
boxShadow="inset 0px -1px 0px rgba(0, 0, 0, 0.1)"
minH="200px"
>
<Image
src={image}
alt={alt}
height="100"
alignSelf="center"
pettinarip marked this conversation as resolved.
Show resolved Hide resolved
maxW={{ base: "311px", sm: "372px" }}
maxH="257px"
/>
<Center className="min-h-[200px]" style={{ backgroundColor: bgProp }}>
<TwImage src={image} alt={alt} height="100" className="self-center" />
</Center>
<Flex flexDirection="column" p={6} textAlign="start" height="100%">
<Flex className="h-full flex-col p-6 text-left">
{githubRepoStars > 0 && (
<GitStars
gitHubRepo={{ url: githubUrl, stargazerCount: githubRepoStars }}
hideStars={hideStars}
/>
)}
<Heading
as="h3"
fontSize="2xl"
fontWeight={600}
mt={githubRepoStars > 0 ? 8 : 12}
mb={3}
<h3
className={cn(
"mb-3 text-2xl font-semibold",
githubRepoStars > 0 ? "mt-8" : "mt-12"
)}
>
{name}
</Heading>
{description && <Text {...DESCRIPTION_STYLES}>{description}</Text>}
{note.length > 0 && <Text {...DESCRIPTION_STYLES}>Note: {note}</Text>}
{children && <Box mt={4}>{children}</Box>}
</h3>
{description && (
<p className="mb-2 text-sm leading-xs opacity-80">{description}</p>
)}
{note.length > 0 && (
<p className="mb-2 text-sm leading-xs opacity-80">Note: {note}</p>
)}
{children && <div className="mt-4">{children}</div>}
</Flex>
<HStack mt={5} mb={2} px={6} spacing={3}>
<HStack className="mb-2 mt-5 gap-3 px-6">
{subjects &&
subjects.map((subject, idx) => (
<SubjectBadge key={idx} subject={subject}>
{subject}
</SubjectBadge>
))}
{githubRepoLanguages.length &&
{githubRepoLanguages.length > 0 &&
githubRepoLanguages.map((name, idx: number) => (
<SubjectBadge key={idx} subject={name}>
{name.toUpperCase()}
</SubjectBadge>
))}
</HStack>
<ButtonLink href={url} m={4} height={20}>
<ButtonLink href={url} className="m-4 h-20">
{t("open")} {name}
</ButtonLink>
</Flex>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/command.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const CommandSeparator = React.forwardRef<
>(({ className, ...props }, ref) => (
<CommandPrimitive.Separator
ref={ref}
className={cn("bg-border -mx-1 h-px", className)}
className={cn("-mx-1 h-px bg-border", className)}
{...props}
/>
))
Expand Down
Loading