forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhovering-toolbar.tsx
165 lines (147 loc) · 4.1 KB
/
hovering-toolbar.tsx
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
import React, { useState, useMemo, useRef, useEffect } from 'react'
import { Slate, Editable, ReactEditor, withReact, useSlate } from 'slate-react'
import { Editor, Transforms, Text, createEditor, Node } from 'slate'
import { css } from 'emotion'
import { withHistory } from 'slate-history'
import { Button, Icon, Menu, Portal } from '../components'
import { Range } from 'slate'
const HoveringMenuExample = () => {
const [value, setValue] = useState<Node[]>(initialValue)
const editor = useMemo(() => withHistory(withReact(createEditor())), [])
return (
<Slate editor={editor} value={value} onChange={value => setValue(value)}>
<HoveringToolbar />
<Editable
renderLeaf={props => <Leaf {...props} />}
placeholder="Enter some text..."
onDOMBeforeInput={(event: InputEvent) => {
event.preventDefault()
switch (event.inputType) {
case 'formatBold':
return toggleFormat(editor, 'bold')
case 'formatItalic':
return toggleFormat(editor, 'italic')
case 'formatUnderline':
return toggleFormat(editor, 'underline')
}
}}
/>
</Slate>
)
}
const toggleFormat = (editor, format) => {
const isActive = isFormatActive(editor, format)
Transforms.setNodes(
editor,
{ [format]: isActive ? null : true },
{ match: Text.isText, split: true }
)
}
const isFormatActive = (editor, format) => {
const [match] = Editor.nodes(editor, {
match: n => n[format] === true,
mode: 'all',
})
return !!match
}
const Leaf = ({ attributes, children, leaf }) => {
if (leaf.bold) {
children = <strong>{children}</strong>
}
if (leaf.italic) {
children = <em>{children}</em>
}
if (leaf.underlined) {
children = <u>{children}</u>
}
return <span {...attributes}>{children}</span>
}
const HoveringToolbar = () => {
const ref = useRef<HTMLDivElement | null>()
const editor = useSlate()
useEffect(() => {
const el = ref.current
const { selection } = editor
if (!el) {
return
}
if (
!selection ||
!ReactEditor.isFocused(editor) ||
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;
`}
>
<FormatButton format="bold" icon="format_bold" />
<FormatButton format="italic" icon="format_italic" />
<FormatButton format="underlined" icon="format_underlined" />
</Menu>
</Portal>
)
}
const FormatButton = ({ format, icon }) => {
const editor = useSlate()
return (
<Button
reversed
active={isFormatActive(editor, format)}
onMouseDown={event => {
event.preventDefault()
toggleFormat(editor, format)
}}
>
<Icon>{icon}</Icon>
</Button>
)
}
const initialValue = [
{
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!' },
],
},
{
children: [
{ text: 'Try it out yourself! Just ' },
{ text: 'select any piece of text and the menu will appear', bold: true },
{ text: '.' },
],
},
]
export default HoveringMenuExample