lbry-desktop/ui/component/common/card.jsx

87 lines
2.3 KiB
React
Raw Normal View History

2019-09-26 12:07:11 -04:00
// @flow
import type { Node } from 'react';
import React, { useState } from 'react';
2019-09-26 12:07:11 -04:00
import classnames from 'classnames';
import Icon from 'component/common/icon';
import Button from 'component/button';
import * as ICONS from 'constants/icons';
2019-09-26 12:07:11 -04:00
type Props = {
2019-09-27 14:56:15 -04:00
title?: string | Node,
2019-09-26 12:07:11 -04:00
subtitle?: string | Node,
titleActions?: string | Node,
2019-09-26 12:07:11 -04:00
body?: string | Node,
actions?: string | Node,
icon?: string,
2019-11-22 16:13:00 -05:00
className?: string,
isPageTitle?: boolean,
isBodyTable?: boolean,
defaultExpand?: boolean,
nag?: Node,
2019-09-26 12:07:11 -04:00
};
export default function Card(props: Props) {
const {
title,
subtitle,
titleActions,
body,
actions,
icon,
className,
isPageTitle = false,
isBodyTable = false,
defaultExpand,
nag,
} = props;
const [expanded, setExpanded] = useState(defaultExpand);
const expandable = defaultExpand !== undefined;
2019-09-26 12:07:11 -04:00
return (
2019-11-22 16:13:00 -05:00
<section className={classnames(className, 'card')}>
{(title || subtitle) && (
<div className="card__header--between">
<div className="card__section--flex">
{icon && <Icon sectionIcon icon={icon} />}
<div>
{isPageTitle && <h1 className="card__title">{title}</h1>}
{!isPageTitle && <h2 className="card__title">{title}</h2>}
{subtitle && <div className="card__subtitle">{subtitle}</div>}
</div>
2019-09-26 12:07:11 -04:00
</div>
<div>
{titleActions && <div className="card__title-actions">{titleActions}</div>}
{expandable && (
<div className="card__title-actions">
<Button
button={'alt'}
aria-label={__('More')}
2020-04-15 10:12:54 -04:00
icon={expanded ? ICONS.SUBTRACT : ICONS.ADD}
onClick={() => setExpanded(!expanded)}
/>
</div>
)}
</div>
2019-09-26 12:07:11 -04:00
</div>
2019-09-27 14:56:15 -04:00
)}
{(!expandable || (expandable && expanded)) && (
<>
{body && (
<div
className={classnames('card__body', {
'card__body--no-title': !title && !subtitle,
'card__body--table': isBodyTable,
})}
>
{body}
</div>
)}
{actions && <div className="card__main-actions">{actions}</div>}
</>
2019-09-26 12:07:11 -04:00
)}
{nag}
2019-09-26 12:07:11 -04:00
</section>
);
}