* treat cmd and ctrl key shortcuts differently on macOS * consolidate shortcut key string into Runtime helper
313 lines
9.4 KiB
JavaScript
313 lines
9.4 KiB
JavaScript
import { h } from 'preact';
|
|
import { useState, useLayoutEffect } from 'preact/hooks';
|
|
import {
|
|
coreSyntaxFormatters,
|
|
secondarySyntaxFormatters,
|
|
} from './markdownSyntaxFormatters';
|
|
import { Overflow, Help } from './icons';
|
|
import { Button } from '@crayons';
|
|
import { KeyboardShortcuts } from '@components/useKeyboardShortcuts';
|
|
import { BREAKPOINTS, useMediaQuery } from '@components/useMediaQuery';
|
|
import { getIndexOfLineStart } from '@utilities/textAreaUtils';
|
|
|
|
export const MarkdownToolbar = ({ textAreaId }) => {
|
|
const [textArea, setTextArea] = useState(null);
|
|
const [overflowMenuOpen, setOverflowMenuOpen] = useState(false);
|
|
const smallScreen = useMediaQuery(`(max-width: ${BREAKPOINTS.Medium - 1}px)`);
|
|
|
|
const markdownSyntaxFormatters = {
|
|
...coreSyntaxFormatters,
|
|
...secondarySyntaxFormatters,
|
|
};
|
|
|
|
const keyboardShortcuts = Object.fromEntries(
|
|
Object.keys(markdownSyntaxFormatters)
|
|
.filter(
|
|
(syntaxName) =>
|
|
!!markdownSyntaxFormatters[syntaxName].getKeyboardShortcut,
|
|
)
|
|
.map((syntaxName) => {
|
|
const { command } =
|
|
markdownSyntaxFormatters[syntaxName].getKeyboardShortcut?.();
|
|
return [command, () => insertSyntax(syntaxName)];
|
|
}),
|
|
);
|
|
|
|
useLayoutEffect(() => {
|
|
setTextArea(document.getElementById(textAreaId));
|
|
}, [textAreaId]);
|
|
|
|
useLayoutEffect(() => {
|
|
// If a user resizes their screen, make sure roving tabindex continues to operate
|
|
const focusableToolbarButton = document.querySelector(
|
|
'.toolbar-btn[tabindex="0"]',
|
|
);
|
|
if (!focusableToolbarButton) {
|
|
document.querySelector('.toolbar-btn').setAttribute('tabindex', '0');
|
|
}
|
|
}, [smallScreen]);
|
|
|
|
useLayoutEffect(() => {
|
|
const clickOutsideHandler = ({ target }) => {
|
|
if (target.id !== 'overflow-menu-button') {
|
|
setOverflowMenuOpen(false);
|
|
}
|
|
};
|
|
|
|
const escapePressHandler = ({ key }) => {
|
|
if (key === 'Escape') {
|
|
setOverflowMenuOpen(false);
|
|
document.getElementById('overflow-menu-button').focus();
|
|
}
|
|
if (key === 'Tab') {
|
|
setOverflowMenuOpen(false);
|
|
}
|
|
};
|
|
|
|
if (overflowMenuOpen) {
|
|
document
|
|
.getElementById('overflow-menu')
|
|
.getElementsByClassName('overflow-menu-btn')[0]
|
|
.focus();
|
|
|
|
document.addEventListener('keyup', escapePressHandler);
|
|
document.addEventListener('click', clickOutsideHandler);
|
|
} else {
|
|
document.removeEventListener('keyup', escapePressHandler);
|
|
document.removeEventListener('click', clickOutsideHandler);
|
|
}
|
|
|
|
return () => {
|
|
document.removeEventListener('keyup', escapePressHandler);
|
|
document.removeEventListener('click', clickOutsideHandler);
|
|
};
|
|
}, [overflowMenuOpen]);
|
|
|
|
// Handles keyboard 'roving tabindex' pattern for toolbar
|
|
const handleToolbarButtonKeyPress = (event, className) => {
|
|
const { key, target } = event;
|
|
const {
|
|
nextElementSibling: nextButton,
|
|
previousElementSibling: previousButton,
|
|
} = target;
|
|
|
|
switch (key) {
|
|
case 'ArrowRight':
|
|
event.preventDefault();
|
|
target.setAttribute('tabindex', '-1');
|
|
if (nextButton) {
|
|
nextButton.setAttribute('tabindex', 0);
|
|
nextButton.focus();
|
|
} else {
|
|
const firstButton = document.querySelector(`.${className}`);
|
|
firstButton.setAttribute('tabindex', '0');
|
|
firstButton.focus();
|
|
}
|
|
break;
|
|
case 'ArrowLeft':
|
|
event.preventDefault();
|
|
target.setAttribute('tabindex', '-1');
|
|
if (previousButton) {
|
|
previousButton.setAttribute('tabindex', 0);
|
|
previousButton.focus();
|
|
} else {
|
|
const allButtons = document.getElementsByClassName(className);
|
|
const lastButton = allButtons[allButtons.length - 1];
|
|
lastButton.setAttribute('tabindex', '0');
|
|
lastButton.focus();
|
|
}
|
|
break;
|
|
case 'ArrowDown':
|
|
if (target.id === 'overflow-menu-button') {
|
|
event.preventDefault();
|
|
setOverflowMenuOpen(true);
|
|
}
|
|
break;
|
|
}
|
|
};
|
|
|
|
const getSelectionData = (syntaxName) => {
|
|
const {
|
|
selectionStart: initialSelectionStart,
|
|
selectionEnd,
|
|
value,
|
|
} = textArea;
|
|
|
|
let selectionStart = initialSelectionStart;
|
|
|
|
// The 'heading' formatter can edit a previously inserted syntax,
|
|
// so we check if we need adjust the selection to the start of the line
|
|
if (syntaxName === 'heading') {
|
|
const indexOfLineStart = getIndexOfLineStart(
|
|
textArea.value,
|
|
initialSelectionStart,
|
|
);
|
|
|
|
if (textArea.value.charAt(indexOfLineStart + 1) === '#') {
|
|
selectionStart = indexOfLineStart;
|
|
}
|
|
}
|
|
|
|
const textBeforeInsertion = value.substring(0, selectionStart);
|
|
const textAfterInsertion = value.substring(selectionEnd, value.length);
|
|
const selectedText = value.substring(selectionStart, selectionEnd);
|
|
|
|
return {
|
|
textBeforeInsertion,
|
|
textAfterInsertion,
|
|
selectedText,
|
|
selectionStart,
|
|
selectionEnd,
|
|
};
|
|
};
|
|
|
|
const insertSyntax = (syntaxName) => {
|
|
setOverflowMenuOpen(false);
|
|
|
|
const {
|
|
textBeforeInsertion,
|
|
textAfterInsertion,
|
|
selectedText,
|
|
selectionStart,
|
|
selectionEnd,
|
|
} = getSelectionData(syntaxName);
|
|
|
|
const { formattedText, cursorOffsetStart, cursorOffsetEnd } =
|
|
markdownSyntaxFormatters[syntaxName].getFormatting(selectedText);
|
|
|
|
const newTextContent = `${textBeforeInsertion}${formattedText}${textAfterInsertion}`;
|
|
|
|
textArea.value = newTextContent;
|
|
textArea.focus({ preventScroll: true });
|
|
textArea.setSelectionRange(
|
|
selectionStart + cursorOffsetStart,
|
|
selectionEnd + cursorOffsetEnd,
|
|
);
|
|
};
|
|
|
|
const getSecondaryFormatterButtons = (isOverflow) =>
|
|
Object.keys(secondarySyntaxFormatters).map((controlName, index) => {
|
|
const { icon, label, getKeyboardShortcut } =
|
|
secondarySyntaxFormatters[controlName];
|
|
|
|
return (
|
|
<Button
|
|
key={`${controlName}-btn`}
|
|
role={isOverflow ? 'menuitem' : 'button'}
|
|
variant="ghost"
|
|
contentType="icon"
|
|
icon={icon}
|
|
className={
|
|
isOverflow
|
|
? 'overflow-menu-btn hidden m:block mr-2'
|
|
: 'toolbar-btn m:hidden mr-2'
|
|
}
|
|
tabindex={isOverflow && index === 0 ? '0' : '-1'}
|
|
onClick={() => insertSyntax(controlName)}
|
|
onKeyUp={(e) =>
|
|
handleToolbarButtonKeyPress(
|
|
e,
|
|
isOverflow ? 'overflow-menu-btn' : 'toolbar-btn',
|
|
)
|
|
}
|
|
aria-label={label}
|
|
tooltip={
|
|
smallScreen ? null : (
|
|
<span aria-hidden="true">
|
|
{label}
|
|
{getKeyboardShortcut ? (
|
|
<span className="opacity-75">
|
|
{` ${getKeyboardShortcut().tooltipHint}`}
|
|
</span>
|
|
) : null}
|
|
</span>
|
|
)
|
|
}
|
|
/>
|
|
);
|
|
});
|
|
|
|
return (
|
|
<div
|
|
className="editor-toolbar relative overflow-x-auto m:overflow-visible"
|
|
aria-label="Markdown formatting toolbar"
|
|
role="toolbar"
|
|
aria-controls={textAreaId}
|
|
>
|
|
{Object.keys(coreSyntaxFormatters).map((controlName, index) => {
|
|
const { icon, label, getKeyboardShortcut } =
|
|
coreSyntaxFormatters[controlName];
|
|
return (
|
|
<Button
|
|
key={`${controlName}-btn`}
|
|
variant="ghost"
|
|
contentType="icon"
|
|
icon={icon}
|
|
className="toolbar-btn mr-2"
|
|
tabindex={index === 0 ? '0' : '-1'}
|
|
onClick={() => insertSyntax(controlName)}
|
|
onKeyUp={(e) => handleToolbarButtonKeyPress(e, 'toolbar-btn')}
|
|
aria-label={label}
|
|
tooltip={
|
|
smallScreen ? null : (
|
|
<span aria-hidden="true">
|
|
{label}
|
|
{getKeyboardShortcut ? (
|
|
<span className="opacity-75">
|
|
{` ${getKeyboardShortcut().tooltipHint}`}
|
|
</span>
|
|
) : null}
|
|
</span>
|
|
)
|
|
}
|
|
/>
|
|
);
|
|
})}
|
|
{smallScreen ? getSecondaryFormatterButtons(false) : null}
|
|
|
|
{smallScreen ? null : (
|
|
<Button
|
|
id="overflow-menu-button"
|
|
onClick={() => setOverflowMenuOpen(!overflowMenuOpen)}
|
|
onKeyUp={(e) => handleToolbarButtonKeyPress(e, 'toolbar-btn')}
|
|
aria-expanded={overflowMenuOpen ? 'true' : 'false'}
|
|
aria-haspopup="true"
|
|
variant="ghost"
|
|
contentType="icon"
|
|
icon={Overflow}
|
|
className="toolbar-btn ml-auto hidden m:block"
|
|
tabindex="-1"
|
|
aria-label="More options"
|
|
/>
|
|
)}
|
|
|
|
{overflowMenuOpen && (
|
|
<div
|
|
id="overflow-menu"
|
|
role="menu"
|
|
className="crayons-dropdown flex p-2 min-w-unset right-0 top-100"
|
|
>
|
|
{getSecondaryFormatterButtons(true)}
|
|
<Button
|
|
tagName="a"
|
|
role="menuitem"
|
|
url="/p/editor_guide"
|
|
variant="ghost"
|
|
contentType="icon"
|
|
icon={Help}
|
|
className="overflow-menu-btn"
|
|
tabindex="-1"
|
|
aria-label="Help"
|
|
onKeyUp={(e) => handleToolbarButtonKeyPress(e, 'overflow-menu-btn')}
|
|
/>
|
|
</div>
|
|
)}
|
|
{textArea && (
|
|
<KeyboardShortcuts
|
|
shortcuts={keyboardShortcuts}
|
|
eventTarget={textArea}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|