File size: 4,512 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
import { css } from '@emotion/css'
import React, { MouseEvent, useEffect, useMemo, useRef } from 'react'
import { Descendant, Editor, Range, createEditor } from 'slate'
import { withHistory } from 'slate-history'
import {
Editable,
RenderLeafProps,
Slate,
useFocused,
useSlate,
withReact,
} from 'slate-react'
import { Button, Icon, Menu, Portal } from './components'
import { CustomEditor, CustomTextKey } from './custom-types.d'
const HoveringMenuExample = () => {
const editor = useMemo(() => withHistory(withReact(createEditor())), [])
return (
<Slate editor={editor} initialValue={initialValue}>
<HoveringToolbar />
<Editable
renderLeaf={props => <Leaf {...props} />}
placeholder="Enter some text..."
onDOMBeforeInput={(event: InputEvent) => {
switch (event.inputType) {
case 'formatBold':
event.preventDefault()
return toggleMark(editor, 'bold')
case 'formatItalic':
event.preventDefault()
return toggleMark(editor, 'italic')
case 'formatUnderline':
event.preventDefault()
return toggleMark(editor, 'underline')
}
}}
/>
</Slate>
)
}
const toggleMark = (editor: CustomEditor, format: CustomTextKey) => {
const isActive = isMarkActive(editor, format)
if (isActive) {
Editor.removeMark(editor, format)
} else {
Editor.addMark(editor, format, true)
}
}
const isMarkActive = (editor: CustomEditor, format: CustomTextKey) => {
const marks = Editor.marks(editor)
return marks ? marks[format] === true : false
}
const Leaf = ({ attributes, children, leaf }: RenderLeafProps) => {
if (leaf.bold) {
children = <strong>{children}</strong>
}
if (leaf.italic) {
children = <em>{children}</em>
}
if (leaf.underline) {
children = <u>{children}</u>
}
return <span {...attributes}>{children}</span>
}
const HoveringToolbar = () => {
const ref = useRef<HTMLDivElement | null>(null)
const editor = useSlate()
const inFocus = useFocused()
useEffect(() => {
const el = ref.current
const { selection } = editor
if (!el) {
return
}
if (
!selection ||
!inFocus ||
Range.isCollapsed(selection) ||
Editor.string(editor, selection) === ''
) {
el.removeAttribute('style')
return
}
const domSelection = window.getSelection()
const domRange = domSelection!.getRangeAt(0)
const rect = domRange.getBoundingClientRect()
el.style.opacity = '1'
el.style.top = `${rect.top + window.pageYOffset - el.offsetHeight}px`
el.style.left = `${
rect.left + window.pageXOffset - el.offsetWidth / 2 + rect.width / 2
}px`
})
return (
<Portal>
<Menu
ref={ref}
className={css`
padding: 8px 7px 6px;
position: absolute;
z-index: 1;
top: -10000px;
left: -10000px;
margin-top: -6px;
opacity: 0;
background-color: #222;
border-radius: 4px;
transition: opacity 0.75s;
`}
onMouseDown={(e: MouseEvent) => {
// prevent toolbar from taking focus away from editor
e.preventDefault()
}}
>
<FormatButton format="bold" icon="format_bold" />
<FormatButton format="italic" icon="format_italic" />
<FormatButton format="underline" icon="format_underlined" />
</Menu>
</Portal>
)
}
interface FormatButtonProps {
format: CustomTextKey
icon: string
}
const FormatButton = ({ format, icon }: FormatButtonProps) => {
const editor = useSlate()
return (
<Button
reversed
active={isMarkActive(editor, format)}
onClick={() => toggleMark(editor, format)}
>
<Icon>{icon}</Icon>
</Button>
)
}
const initialValue: Descendant[] = [
{
type: 'paragraph',
children: [
{
text: 'This example shows how you can make a hovering menu appear above your content, which you can use to make text ',
},
{ text: 'bold', bold: true },
{ text: ', ' },
{ text: 'italic', italic: true },
{ text: ', or anything else you might want to do!' },
],
},
{
type: 'paragraph',
children: [
{ text: 'Try it out yourself! Just ' },
{ text: 'select any piece of text and the menu will appear', bold: true },
{ text: '.' },
],
},
]
export default HoveringMenuExample
|