135 lines
3.4 KiB
TypeScript
135 lines
3.4 KiB
TypeScript
import { ExpandedIcon } from "outline-icons";
|
|
import * as React from "react";
|
|
import { useMenuState } from "reakit";
|
|
import { MenuButton } from "reakit/Menu";
|
|
import styled from "styled-components";
|
|
import { MenuItem } from "@shared/editor/types";
|
|
import { s } from "@shared/styles";
|
|
import ContextMenu from "~/components/ContextMenu";
|
|
import Template from "~/components/ContextMenu/Template";
|
|
import { MenuItem as TMenuItem } from "~/types";
|
|
import { useEditor } from "./EditorContext";
|
|
import ToolbarButton from "./ToolbarButton";
|
|
import ToolbarSeparator from "./ToolbarSeparator";
|
|
import Tooltip from "./Tooltip";
|
|
|
|
type Props = {
|
|
items: MenuItem[];
|
|
};
|
|
|
|
/*
|
|
* Renders a dropdown menu in the floating toolbar.
|
|
*/
|
|
function ToolbarDropdown(props: { item: MenuItem }) {
|
|
const menu = useMenuState();
|
|
const { commands, view } = useEditor();
|
|
const { item } = props;
|
|
const { state } = view;
|
|
|
|
const items: TMenuItem[] = React.useMemo(() => {
|
|
const handleClick = (item: MenuItem) => () => {
|
|
if (!item.name) {
|
|
return;
|
|
}
|
|
|
|
commands[item.name](
|
|
typeof item.attrs === "function" ? item.attrs(state) : item.attrs
|
|
);
|
|
};
|
|
|
|
return item.children
|
|
? item.children.map((child) => ({
|
|
type: "button",
|
|
title: child.label,
|
|
icon: child.icon,
|
|
selected: child.active ? child.active(state) : false,
|
|
onClick: handleClick(child),
|
|
}))
|
|
: [];
|
|
}, [item.children, commands, state]);
|
|
|
|
return (
|
|
<>
|
|
<MenuButton {...menu}>
|
|
{(props) => (
|
|
<ToolbarButton {...props} hovering={menu.visible}>
|
|
{item.label && <Label>{item.label}</Label>}
|
|
<Arrow />
|
|
</ToolbarButton>
|
|
)}
|
|
</MenuButton>
|
|
<ContextMenu aria-label={item.label} {...menu}>
|
|
<Template {...menu} items={items} />
|
|
</ContextMenu>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function ToolbarMenu(props: Props) {
|
|
const { commands, view } = useEditor();
|
|
const { items } = props;
|
|
const { state } = view;
|
|
|
|
const handleClick = (item: MenuItem) => () => {
|
|
if (!item.name) {
|
|
return;
|
|
}
|
|
|
|
commands[item.name](
|
|
typeof item.attrs === "function" ? item.attrs(state) : item.attrs
|
|
);
|
|
};
|
|
|
|
return (
|
|
<FlexibleWrapper>
|
|
{items.map((item, index) => {
|
|
if (item.name === "separator" && item.visible !== false) {
|
|
return <ToolbarSeparator key={index} />;
|
|
}
|
|
if (item.visible === false || !item.icon) {
|
|
return null;
|
|
}
|
|
const isActive = item.active ? item.active(state) : false;
|
|
|
|
return (
|
|
<Tooltip
|
|
tooltip={item.label === item.tooltip ? undefined : item.tooltip}
|
|
key={index}
|
|
>
|
|
{item.children ? (
|
|
<ToolbarDropdown item={item} />
|
|
) : (
|
|
<ToolbarButton
|
|
onClick={handleClick(item)}
|
|
active={isActive && !item.label}
|
|
>
|
|
{item.label && <Label>{item.label}</Label>}
|
|
{item.icon}
|
|
</ToolbarButton>
|
|
)}
|
|
</Tooltip>
|
|
);
|
|
})}
|
|
</FlexibleWrapper>
|
|
);
|
|
}
|
|
|
|
const FlexibleWrapper = styled.div`
|
|
color: ${s("textSecondary")};
|
|
overflow: hidden;
|
|
display: flex;
|
|
gap: 8px;
|
|
`;
|
|
|
|
const Arrow = styled(ExpandedIcon)`
|
|
margin-right: -4px;
|
|
color: ${s("textSecondary")};
|
|
`;
|
|
|
|
const Label = styled.span`
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
`;
|
|
|
|
export default ToolbarMenu;
|