import React, { ReactNode } from "react"; import classNames from "classnames"; import styled from "styled-components"; import { Link } from "react-router-dom"; type Props = { title: string; description: string; avatar: ReactNode; contentRight?: ReactNode; footerLeft: ReactNode; footerRight: ReactNode; link?: string; action?: () => void; className?: string; }; const NoEventWrapper = styled.article` position: relative; pointer-events: none; z-index: 1; `; const AvatarWrapper = styled.figure` margin-top: 0.8em; margin-left: 1em !important; `; const FlexFullHeight = styled.div` flex-direction: column; justify-content: space-around; align-self: stretch; `; const FooterWrapper = styled.div` padding-bottom: 1rem; `; const ContentLeft = styled.div` margin-bottom: 0 !important; overflow: hidden; `; const ContentRight = styled.div` margin-left: auto; `; export default class CardColumn extends React.Component { createLink = () => { const { link, action } = this.props; if (link) { return ; } else if (action) { return ( { e.preventDefault(); action(); }} href="#" /> ); } return null; }; render() { const { avatar, title, description, contentRight, footerLeft, footerRight, className } = this.props; const link = this.createLink(); return ( <> {link} {avatar}

{title}

{description}

{contentRight}
{footerLeft}
{footerRight}
); } }