* fix: add disclosure and transition * fix: keep collections expanded * fix: tune transition and collapsing conditions * fix: collectionIcon expanded props is no longer driven by expanded state * fix: sync issue * fix: managing state together * fix: remove comment * fix: simplify expanded state * fix: remove extra state * fix: remove animation and retain expanded state * fix: remove isCollectionDropped * fix: don't use ref * review suggestions * fix many functional and design issues * don't render every single document in the sidebar, just ones that the user has seen before * chore: Sidebar refinement (#3154) * stash * wip: More sidebar tweaks * Simplify draft bubble * disclosure refactor * wip wip * lint * tweak menu position * Use document emoji for starred docs where available * feat: Trigger cmd+k from sidebar (#3149) * feat: Trigger cmd+k from sidebar * Add hint when opening command bar from sidebar * fix: Clicking internal links in shared documents sometimes reroutes to Login * fix: Spacing issues on connected slack channels list * Merge * fix: Do not prefetch JS bundles on public share links * fix: Buttons show on collection empty state when user does not have permission to edit * fix: the hover area for the "collections" subheading was being obfuscated by the initial collection drop cursor * fix: top-align disclosures * fix: Disclosure color PR feedback fix: Starred no longer draggable * fix: Overflow on sidebar button * fix: Scrollbar in sidebar when command menu is open * Minor alignment issues, clarify back in settings sidebar * fix: Fade component causes SidebarButton missizing Co-authored-by: Nan Yu <thenanyu@gmail.com> Co-authored-by: Tom Moor <tom.moor@gmail.com> Co-authored-by: Nan Yu <thenanyu@gmail.com>
65 lines
1.4 KiB
TypeScript
65 lines
1.4 KiB
TypeScript
import { CollapsedIcon } from "outline-icons";
|
|
import * as React from "react";
|
|
import styled from "styled-components";
|
|
|
|
type Props = {
|
|
onClick?: React.MouseEventHandler;
|
|
expanded?: boolean;
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export function Header({ onClick, expanded, children }: Props) {
|
|
return (
|
|
<H3>
|
|
<Button onClick={onClick} disabled={!onClick}>
|
|
{children}
|
|
{onClick && (
|
|
<Disclosure expanded={expanded} color="currentColor" size={20} />
|
|
)}
|
|
</Button>
|
|
</H3>
|
|
);
|
|
}
|
|
|
|
const Button = styled.button`
|
|
display: inline-flex;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
user-select: none;
|
|
color: ${(props) => props.theme.textTertiary};
|
|
letter-spacing: 0.03em;
|
|
margin: 0;
|
|
padding: 4px 2px 4px 12px;
|
|
height: 22px;
|
|
border: 0;
|
|
background: none;
|
|
border-radius: 4px;
|
|
-webkit-appearance: none;
|
|
transition: all 100ms ease;
|
|
|
|
&:not(:disabled):hover,
|
|
&:not(:disabled):active {
|
|
color: ${(props) => props.theme.textSecondary};
|
|
cursor: pointer;
|
|
}
|
|
`;
|
|
|
|
const Disclosure = styled(CollapsedIcon)<{ expanded?: boolean }>`
|
|
transition: opacity 100ms ease, transform 100ms ease, fill 50ms !important;
|
|
${({ expanded }) => !expanded && "transform: rotate(-90deg);"};
|
|
opacity: 0;
|
|
`;
|
|
|
|
const H3 = styled.h3`
|
|
margin: 0;
|
|
|
|
&:hover {
|
|
${Disclosure} {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Header;
|