"use client"; import Image from "next/image"; import { useTranslation } from "../../../contexts/MessagesContext"; import MultiSelect from "../../controls/MultiSelect"; import type { RuleCardViewProps } from "./RuleCard.types"; export function RuleCardView({ title, description, icon, backgroundColor, className, onClick, onKeyDown, expanded, size, categories, logoUrl, logoAlt, communityInitials, }: RuleCardViewProps) { const t = useTranslation("ruleCard"); const ariaLabel = t("ariaLabel")?.replace("{title}", title) || title; // Size-based styling const isLarge = size === "L"; const isMedium = size === "M"; const isSmall = size === "S"; const isExtraSmall = size === "XS"; // Card dimensions - use CSS classes from className if provided, otherwise use size-based logic // Check if className already has padding/gap classes const hasResponsivePadding = className?.includes("p-[") || className?.includes("px-[") || className?.includes("py-[") || className?.includes("pt-[") || className?.includes("pb-["); const hasResponsiveGap = className?.includes("gap-["); const cardPadding = hasResponsivePadding ? "" // If className has responsive padding, don't add size-based padding : isLarge || isSmall ? "p-[24px]" : isMedium ? "p-[16px]" : "pb-[24px] pt-[12px] px-[12px]"; // XS: asymmetric padding const cardGap = expanded ? "gap-[16px]" : hasResponsiveGap ? "" // If className has responsive gap, don't add size-based gap : isLarge ? "gap-[10px]" : isMedium ? "gap-[12px]" : "gap-[18px]"; // XS and S: 18px gap const cardWidth = expanded ? isLarge ? "w-[568px]" : isMedium ? "w-[398px]" : "" // XS and S: no fixed width : ""; // Logo/Icon dimensions - use CSS responsive classes // For S: 80px container with 12px padding = 56px icon area // For XS: 72px container with 16px padding = 40px icon (72 - 16*2 = 40px) const logoSize = 103; // Use max size, CSS will resize const logoContainerClass = ` max-[639px]:size-[72px] min-[640px]:max-[1023px]:size-[80px] min-[1024px]:max-[1439px]:size-[56px] min-[1440px]:size-[103px] `; // Title typography - use CSS responsive classes const titleClass = ` max-[639px]:font-inter max-[639px]:font-bold max-[639px]:text-[20px] max-[639px]:leading-[28px] min-[640px]:max-[1023px]:font-bricolage-grotesque min-[640px]:max-[1023px]:font-bold min-[640px]:max-[1023px]:text-[28px] min-[640px]:max-[1023px]:leading-[36px] min-[1024px]:max-[1439px]:font-bricolage-grotesque min-[1024px]:max-[1439px]:font-bold min-[1024px]:max-[1439px]:text-[24px] min-[1024px]:max-[1439px]:leading-[32px] min-[1440px]:font-bricolage-grotesque min-[1440px]:font-extrabold min-[1440px]:text-[36px] min-[1440px]:leading-[44px] `; // Description typography const descriptionClass = isLarge ? "font-inter font-medium text-[18px] leading-[24px]" : isMedium ? "font-inter font-medium text-[14px] leading-[16px]" : isSmall ? "font-inter font-medium text-[14px] leading-[16px]" // S: 14px, medium, Inter : "font-inter font-medium text-[12px] leading-[14px]"; // XS: 12px, medium, Inter // Render logo/icon const renderLogo = () => { if (logoUrl) { // Check if it's a localhost URL or external URL that needs regular img tag const isLocalhost = logoUrl.startsWith("http://localhost") || logoUrl.startsWith("https://localhost"); const containerClass = `${logoContainerClass} relative rounded-full overflow-hidden mix-blend-luminosity max-[639px]:p-[16px] min-[640px]:max-[1023px]:p-[12px]`; if (isLocalhost) { return (
{/* eslint-disable-next-line @next/next/no-img-element */} {logoAlt
); } return (
{logoAlt
); } if (icon) { return (
{icon}
); } if (communityInitials) { const initialsSize = ` max-[639px]:text-[16px] min-[640px]:max-[1023px]:text-[20px] min-[1024px]:max-[1439px]:text-[24px] min-[1440px]:text-[36px] `; return (
{communityInitials}
); } return null; }; // Border radius - use CSS classes if provided via className, otherwise use size-based logic const borderRadiusClass = className?.includes("rounded-") ? "" // If className already has border radius, don't add size-based one : isExtraSmall ? "rounded-[var(--measures-radius-200,8px)]" : isSmall ? "rounded-[var(--measures-radius-300,12px)]" : "rounded-[var(--radius-measures-radius-small)]"; return (
{/* Outermost container with bottom border - taller to match Figma */}
{/* Logo/Icon - fixed width/height, vertically centered, does not touch bottom */} {renderLogo() && (
{renderLogo()}
)} {/* Spacing between icon and title */}
{/* Container with no padding and left border - extends full height to touch bottom */} {title && (
{/* Inner container for header text with padding */}

{title}

)}
{expanded ? ( <> {/* Categories Section - Using MultiSelect */} {categories && categories.length > 0 && (
{categories.map((category, categoryIndex) => ( { category.onChipClick?.(category.name, chipId); }} onAddClick={() => { category.onAddClick?.(category.name); }} onCustomChipConfirm={(chipId, value) => { category.onCustomChipConfirm?.(category.name, chipId, value); }} onCustomChipClose={(chipId) => { category.onCustomChipClose?.(category.name, chipId); }} addButton={true} addButtonText="" // Empty text for icon-only circular button className="w-full" /> ))}
)} {/* Footer: Description */} {description && (

{description}

)} ) : ( /* Collapsed State: Description */ description && (

{description}

) )}
); }