153 lines
4.0 KiB
TypeScript
153 lines
4.0 KiB
TypeScript
import { LocationDescriptor } from "history";
|
|
import * as React from "react";
|
|
import styled, { useTheme } from "styled-components";
|
|
import { s, ellipsis } from "@shared/styles";
|
|
import Flex from "~/components/Flex";
|
|
import NavLink from "~/components/NavLink";
|
|
|
|
export type Props = Omit<React.HTMLAttributes<HTMLAnchorElement>, "title"> & {
|
|
/** An icon or image to display to the left of the list item */
|
|
image?: React.ReactNode;
|
|
/** An internal location to navigate to on click, if provided the list item will have hover styles */
|
|
to?: LocationDescriptor;
|
|
/** An optional click handler, if provided the list item will have hover styles */
|
|
onClick?: React.MouseEventHandler<HTMLAnchorElement>;
|
|
/** Whether to match the location exactly */
|
|
exact?: boolean;
|
|
/** The title of the list item */
|
|
title: React.ReactNode;
|
|
/** The subtitle of the list item, displayed below the title */
|
|
subtitle?: React.ReactNode;
|
|
/** Actions to display to the right of the list item */
|
|
actions?: React.ReactNode;
|
|
/** Whether to display a border below the list item */
|
|
border?: boolean;
|
|
/** Whether to display the list item in a compact style */
|
|
small?: boolean;
|
|
};
|
|
|
|
const ListItem = (
|
|
{ image, title, subtitle, actions, small, border, to, ...rest }: Props,
|
|
ref?: React.Ref<HTMLAnchorElement>
|
|
) => {
|
|
const theme = useTheme();
|
|
const compact = !subtitle;
|
|
|
|
const content = (selected: boolean) => (
|
|
<>
|
|
{image && <Image>{image}</Image>}
|
|
<Content
|
|
justify={compact ? "center" : undefined}
|
|
column={!compact}
|
|
$selected={selected}
|
|
>
|
|
<Heading $small={small}>{title}</Heading>
|
|
{subtitle && (
|
|
<Subtitle $small={small} $selected={selected}>
|
|
{subtitle}
|
|
</Subtitle>
|
|
)}
|
|
</Content>
|
|
{actions && (
|
|
<Actions $selected={selected} gap={4}>
|
|
{actions}
|
|
</Actions>
|
|
)}
|
|
</>
|
|
);
|
|
|
|
if (to) {
|
|
return (
|
|
<Wrapper
|
|
ref={ref}
|
|
$border={border}
|
|
$small={small}
|
|
activeStyle={{
|
|
background: theme.accent,
|
|
}}
|
|
{...rest}
|
|
as={NavLink}
|
|
to={to}
|
|
>
|
|
{content}
|
|
</Wrapper>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Wrapper ref={ref} $border={border} $small={small} {...rest}>
|
|
{content(false)}
|
|
</Wrapper>
|
|
);
|
|
};
|
|
|
|
const Wrapper = styled.a<{
|
|
$small?: boolean;
|
|
$border?: boolean;
|
|
onClick?: React.MouseEventHandler<HTMLAnchorElement>;
|
|
to?: LocationDescriptor;
|
|
}>`
|
|
display: flex;
|
|
padding: ${(props) => (props.$border === false ? 0 : "8px 0")};
|
|
min-height: 32px;
|
|
margin: ${(props) =>
|
|
props.$border === false ? (props.$small ? "8px 0" : "16px 0") : 0};
|
|
border-bottom: 1px solid
|
|
${(props) =>
|
|
props.$border === false ? "transparent" : props.theme.divider};
|
|
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
&:hover {
|
|
background: ${(props) =>
|
|
props.onClick ? props.theme.secondaryBackground : "inherit"};
|
|
}
|
|
|
|
cursor: ${(props) =>
|
|
props.to || props.onClick ? "var(--pointer)" : "default"};
|
|
`;
|
|
|
|
const Image = styled(Flex)`
|
|
padding: 0 8px 0 0;
|
|
max-height: 32px;
|
|
align-items: center;
|
|
user-select: none;
|
|
flex-shrink: 0;
|
|
align-self: center;
|
|
color: ${s("text")};
|
|
`;
|
|
|
|
const Heading = styled.p<{ $small?: boolean }>`
|
|
font-size: ${(props) => (props.$small ? 14 : 16)}px;
|
|
font-weight: 500;
|
|
${ellipsis()}
|
|
line-height: ${(props) => (props.$small ? 1.3 : 1.2)};
|
|
margin: 0;
|
|
`;
|
|
|
|
const Content = styled(Flex)<{ $selected: boolean }>`
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
color: ${(props) => (props.$selected ? props.theme.white : props.theme.text)};
|
|
`;
|
|
|
|
const Subtitle = styled.p<{ $small?: boolean; $selected?: boolean }>`
|
|
margin: 0;
|
|
font-size: ${(props) => (props.$small ? 13 : 14)}px;
|
|
color: ${(props) =>
|
|
props.$selected ? props.theme.white50 : props.theme.textTertiary};
|
|
margin-top: -2px;
|
|
`;
|
|
|
|
export const Actions = styled(Flex)<{ $selected?: boolean }>`
|
|
align-self: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
color: ${(props) =>
|
|
props.$selected ? props.theme.white : props.theme.textSecondary};
|
|
`;
|
|
|
|
export default React.forwardRef(ListItem);
|