264 lines
7.4 KiB
TypeScript
264 lines
7.4 KiB
TypeScript
import { KeyboardKey } from '@/services/ioService';
|
|
import { WebApplication } from '@/ui_models/application';
|
|
import { AppState } from '@/ui_models/app_state';
|
|
import {
|
|
MENU_MARGIN_FROM_APP_BORDER,
|
|
MAX_MENU_SIZE_MULTIPLIER,
|
|
} from '@/constants';
|
|
import {
|
|
Disclosure,
|
|
DisclosureButton,
|
|
DisclosurePanel,
|
|
} from '@reach/disclosure';
|
|
import {
|
|
ComponentArea,
|
|
IconType,
|
|
SNComponent,
|
|
SNNote,
|
|
} from '@standardnotes/snjs';
|
|
import { FunctionComponent } from 'preact';
|
|
import { useEffect, useRef, useState } from 'preact/hooks';
|
|
import { Icon } from '../Icon';
|
|
import { createEditorMenuGroups } from './changeEditor/createEditorMenuGroups';
|
|
import { ChangeEditorMenu } from './changeEditor/ChangeEditorMenu';
|
|
|
|
type ChangeEditorOptionProps = {
|
|
appState: AppState;
|
|
application: WebApplication;
|
|
note: SNNote;
|
|
closeOnBlur: (event: { relatedTarget: EventTarget | null }) => void;
|
|
};
|
|
|
|
type AccordionMenuGroup<T> = {
|
|
icon?: IconType;
|
|
iconClassName?: string;
|
|
title: string;
|
|
items: Array<T>;
|
|
};
|
|
|
|
export type EditorMenuItem = {
|
|
name: string;
|
|
component?: SNComponent;
|
|
isPremiumFeature?: boolean;
|
|
};
|
|
|
|
export type EditorMenuGroup = AccordionMenuGroup<EditorMenuItem>;
|
|
|
|
type MenuPositionStyle = {
|
|
top?: number | 'auto';
|
|
right?: number | 'auto';
|
|
bottom: number | 'auto';
|
|
left?: number | 'auto';
|
|
visibility?: 'hidden' | 'visible';
|
|
};
|
|
|
|
const calculateMenuPosition = (
|
|
button: HTMLButtonElement | null,
|
|
menu?: HTMLDivElement | null
|
|
): MenuPositionStyle | undefined => {
|
|
const defaultFontSize = window.getComputedStyle(
|
|
document.documentElement
|
|
).fontSize;
|
|
|
|
const maxChangeEditorMenuSize =
|
|
parseFloat(defaultFontSize) * MAX_MENU_SIZE_MULTIPLIER;
|
|
|
|
const { clientWidth, clientHeight } = document.documentElement;
|
|
|
|
const buttonRect = button?.getBoundingClientRect();
|
|
|
|
const buttonParentRect = button?.parentElement?.getBoundingClientRect();
|
|
|
|
const menuBoundingRect = menu?.getBoundingClientRect();
|
|
|
|
const footerElementRect = document
|
|
.getElementById('footer-bar')
|
|
?.getBoundingClientRect();
|
|
|
|
const footerHeightInPx = footerElementRect?.height ?? 0;
|
|
|
|
let position: MenuPositionStyle = {
|
|
bottom: 'auto',
|
|
};
|
|
|
|
if (buttonRect && buttonParentRect) {
|
|
let positionBottom =
|
|
clientHeight - buttonRect.bottom - buttonRect.height / 2;
|
|
|
|
if (positionBottom < footerHeightInPx) {
|
|
positionBottom = footerHeightInPx + MENU_MARGIN_FROM_APP_BORDER;
|
|
}
|
|
|
|
if (buttonRect.right + maxChangeEditorMenuSize > clientWidth) {
|
|
position = {
|
|
bottom: positionBottom,
|
|
right: clientWidth - buttonRect.left,
|
|
visibility: 'hidden',
|
|
};
|
|
} else {
|
|
position = {
|
|
bottom: positionBottom,
|
|
left: buttonRect.right,
|
|
visibility: 'hidden',
|
|
};
|
|
}
|
|
}
|
|
|
|
if (menuBoundingRect && menuBoundingRect.height && buttonRect) {
|
|
if (menuBoundingRect.y < MENU_MARGIN_FROM_APP_BORDER) {
|
|
if (
|
|
buttonRect.right + maxChangeEditorMenuSize >
|
|
document.documentElement.clientWidth
|
|
) {
|
|
return {
|
|
...position,
|
|
top: MENU_MARGIN_FROM_APP_BORDER + buttonRect.top - buttonRect.height,
|
|
bottom: 'auto',
|
|
visibility: 'visible',
|
|
};
|
|
} else {
|
|
return {
|
|
...position,
|
|
top: MENU_MARGIN_FROM_APP_BORDER,
|
|
bottom: 'auto',
|
|
visibility: 'visible',
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
return position;
|
|
};
|
|
|
|
export const ChangeEditorOption: FunctionComponent<ChangeEditorOptionProps> = ({
|
|
application,
|
|
closeOnBlur,
|
|
note,
|
|
}) => {
|
|
const [changeEditorMenuOpen, setChangeEditorMenuOpen] = useState(false);
|
|
const [changeEditorMenuVisible, setChangeEditorMenuVisible] = useState(false);
|
|
const [changeEditorMenuMaxHeight, setChangeEditorMenuMaxHeight] = useState<
|
|
number | 'auto'
|
|
>('auto');
|
|
const [changeEditorMenuPosition, setChangeEditorMenuPosition] =
|
|
useState<MenuPositionStyle>({
|
|
right: 0,
|
|
bottom: 0,
|
|
});
|
|
const changeEditorMenuRef = useRef<HTMLDivElement>(null);
|
|
const changeEditorButtonRef = useRef<HTMLButtonElement>(null);
|
|
const [editors] = useState<SNComponent[]>(() =>
|
|
application.componentManager
|
|
.componentsForArea(ComponentArea.Editor)
|
|
.sort((a, b) => {
|
|
return a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1;
|
|
})
|
|
);
|
|
const [editorMenuGroups, setEditorMenuGroups] = useState<EditorMenuGroup[]>(
|
|
[]
|
|
);
|
|
const [selectedEditor, setSelectedEditor] = useState(() =>
|
|
application.componentManager.editorForNote(note)
|
|
);
|
|
|
|
useEffect(() => {
|
|
setEditorMenuGroups(createEditorMenuGroups(editors));
|
|
}, [editors]);
|
|
|
|
useEffect(() => {
|
|
setSelectedEditor(application.componentManager.editorForNote(note));
|
|
}, [application, note]);
|
|
|
|
const toggleChangeEditorMenu = () => {
|
|
if (!changeEditorMenuOpen) {
|
|
const menuPosition = calculateMenuPosition(changeEditorButtonRef.current);
|
|
if (menuPosition) {
|
|
setChangeEditorMenuPosition(menuPosition);
|
|
}
|
|
}
|
|
|
|
setChangeEditorMenuOpen(!changeEditorMenuOpen);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (changeEditorMenuOpen) {
|
|
setTimeout(() => {
|
|
const newMenuPosition = calculateMenuPosition(
|
|
changeEditorButtonRef.current,
|
|
changeEditorMenuRef.current
|
|
);
|
|
|
|
if (newMenuPosition) {
|
|
const { clientHeight } = document.documentElement;
|
|
const footerElementRect = document
|
|
.getElementById('footer-bar')
|
|
?.getBoundingClientRect();
|
|
const footerHeightInPx = footerElementRect?.height;
|
|
|
|
if (
|
|
footerHeightInPx &&
|
|
newMenuPosition.top &&
|
|
newMenuPosition.top !== 'auto'
|
|
) {
|
|
setChangeEditorMenuMaxHeight(
|
|
clientHeight -
|
|
newMenuPosition.top -
|
|
footerHeightInPx -
|
|
MENU_MARGIN_FROM_APP_BORDER
|
|
);
|
|
}
|
|
|
|
setChangeEditorMenuPosition(newMenuPosition);
|
|
setChangeEditorMenuVisible(true);
|
|
}
|
|
});
|
|
}
|
|
}, [changeEditorMenuOpen]);
|
|
|
|
return (
|
|
<Disclosure open={changeEditorMenuOpen} onChange={toggleChangeEditorMenu}>
|
|
<DisclosureButton
|
|
onKeyDown={(event) => {
|
|
if (event.key === KeyboardKey.Escape) {
|
|
setChangeEditorMenuOpen(false);
|
|
}
|
|
}}
|
|
onBlur={closeOnBlur}
|
|
ref={changeEditorButtonRef}
|
|
className="sn-dropdown-item justify-between"
|
|
>
|
|
<div className="flex items-center">
|
|
<Icon type="dashboard" className="color-neutral mr-2" />
|
|
Change editor
|
|
</div>
|
|
<Icon type="chevron-right" className="color-neutral" />
|
|
</DisclosureButton>
|
|
<DisclosurePanel
|
|
ref={changeEditorMenuRef}
|
|
onKeyDown={(event) => {
|
|
if (event.key === KeyboardKey.Escape) {
|
|
setChangeEditorMenuOpen(false);
|
|
changeEditorButtonRef.current?.focus();
|
|
}
|
|
}}
|
|
style={{
|
|
...changeEditorMenuPosition,
|
|
maxHeight: changeEditorMenuMaxHeight,
|
|
position: 'fixed',
|
|
}}
|
|
className="sn-dropdown flex flex-col max-h-120 min-w-68 fixed overflow-y-auto"
|
|
>
|
|
<ChangeEditorMenu
|
|
application={application}
|
|
closeOnBlur={closeOnBlur}
|
|
currentEditor={selectedEditor}
|
|
setSelectedEditor={setSelectedEditor}
|
|
note={note}
|
|
groups={editorMenuGroups}
|
|
isOpen={changeEditorMenuVisible}
|
|
/>
|
|
</DisclosurePanel>
|
|
</Disclosure>
|
|
);
|
|
};
|