react-code-dataset
/
react-page
/packages
/plugins
/content
/slate
/src
/components
/HoverButtons.tsx
| import React, { useEffect, useRef } from 'react'; | |
| import { Portal } from 'react-portal'; | |
| import { useSlate } from 'slate-react'; | |
| import useTextIsSelected from '../hooks/useTextIsSelected'; | |
| import type { SlateProps } from '../types/component'; | |
| import PluginButton from './PluginButton'; | |
| const HoverButtons = ({ | |
| plugins, | |
| translations, | |
| }: Pick<SlateProps, 'plugins' | 'translations'>) => { | |
| const showHoverToolbar = useTextIsSelected(); | |
| const toolbarRef = useRef<HTMLDivElement>(null); | |
| const editor = useSlate(); | |
| useEffect(() => { | |
| const toolbar = toolbarRef.current; | |
| if (!showHoverToolbar || !toolbar) { | |
| return; | |
| } | |
| const s = window.getSelection(); | |
| try { | |
| const oRange = s?.getRangeAt(0); // get the text range | |
| const oRect = oRange?.getBoundingClientRect(); | |
| if (oRect) { | |
| const { left, top, width } = oRect; | |
| toolbar.style.opacity = '1'; | |
| toolbar.style.top = `${top + window.scrollY - toolbar.offsetHeight}px`; | |
| toolbar.style.left = `${ | |
| left + window.scrollX - toolbar.offsetWidth / 2 + width / 2 | |
| }px`; | |
| } | |
| } catch (e) { | |
| // ignore | |
| } | |
| }, [editor, showHoverToolbar]); | |
| return ( | |
| <Portal> | |
| <div | |
| className={ | |
| 'react-page-plugins-content-slate-inline-toolbar ' + | |
| (showHoverToolbar | |
| ? '' | |
| : 'react-page-plugins-content-slate-inline-toolbar--hidden') | |
| } | |
| style={{ padding: 0 }} | |
| ref={toolbarRef} | |
| > | |
| {plugins && | |
| plugins.map((plugin, i: number) => | |
| plugin.addHoverButton ? ( | |
| <PluginButton | |
| dark | |
| translations={translations} | |
| key={i} | |
| plugin={plugin} | |
| /> | |
| ) : null | |
| )} | |
| </div> | |
| </Portal> | |
| ); | |
| }; | |
| export default HoverButtons; | |