// @flow // GalleryCardDetails Component import * as React from "react"; import cn from "classnames"; import Avatar from "../Avatar"; type Props = {| +className?: string, +children?: React.Node, +avatarURL?: string, +fullName?: string, +dateString?: string, |}; function GalleryCardDetails({ className, children, avatarURL, fullName, dateString, }: Props): React.Node { //classes const avatarClasses = cn("mr-3"); const dateStringClasses = cn("d-block text-muted"); //conditions const hasOtherDetails = fullName !== null || dateString !== null; //components const avatar = ( ); // TODO: The following could be a seperate component const otherDetails = (
{fullName}
{dateString}{" "}
); return ( {avatarURL && avatar} {hasOtherDetails && otherDetails} {children} ); } GalleryCardDetails.displayName = "GalleryCard.Details"; export default GalleryCardDetails;