85 lines
1.7 KiB
JavaScript
85 lines
1.7 KiB
JavaScript
// @flow
|
|
import * as React from "react";
|
|
import styled from "styled-components";
|
|
import Flex from "components/Flex";
|
|
|
|
type Props = {
|
|
image?: React.Node,
|
|
title: React.Node,
|
|
subtitle?: React.Node,
|
|
actions?: React.Node,
|
|
border?: boolean,
|
|
small?: boolean,
|
|
};
|
|
|
|
const ListItem = ({
|
|
image,
|
|
title,
|
|
subtitle,
|
|
actions,
|
|
small,
|
|
border,
|
|
}: Props) => {
|
|
const compact = !subtitle;
|
|
|
|
return (
|
|
<Wrapper compact={compact} $border={border}>
|
|
{image && <Image>{image}</Image>}
|
|
<Content align={compact ? "center" : undefined} column={!compact}>
|
|
<Heading $small={small}>{title}</Heading>
|
|
{subtitle && <Subtitle $small={small}>{subtitle}</Subtitle>}
|
|
</Content>
|
|
{actions && <Actions>{actions}</Actions>}
|
|
</Wrapper>
|
|
);
|
|
};
|
|
|
|
const Wrapper = styled.li`
|
|
display: flex;
|
|
padding: ${(props) => (props.$border === false ? 0 : "8px 0")};
|
|
margin: ${(props) => (props.$border === false ? "8px 0" : 0)};
|
|
border-bottom: 1px solid
|
|
${(props) =>
|
|
props.$border === false ? "transparent" : props.theme.divider};
|
|
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
`;
|
|
|
|
const Image = styled(Flex)`
|
|
padding: 0 8px 0 0;
|
|
max-height: 32px;
|
|
align-items: center;
|
|
user-select: none;
|
|
flex-shrink: 0;
|
|
align-self: center;
|
|
`;
|
|
|
|
const Heading = styled.p`
|
|
font-size: ${(props) => (props.$small ? 15 : 16)}px;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
line-height: 1.2;
|
|
margin: 0;
|
|
`;
|
|
|
|
const Content = styled(Flex)`
|
|
flex-grow: 1;
|
|
`;
|
|
|
|
const Subtitle = styled.p`
|
|
margin: 0;
|
|
font-size: ${(props) => (props.$small ? 13 : 14)}px;
|
|
color: ${(props) => props.theme.textTertiary};
|
|
margin-top: -2px;
|
|
`;
|
|
|
|
const Actions = styled.div`
|
|
align-self: center;
|
|
`;
|
|
|
|
export default ListItem;
|