-
Notifications
You must be signed in to change notification settings - Fork 0
/
void.js
executable file
·137 lines (119 loc) · 2.52 KB
/
void.js
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
import Debug from 'debug'
import React from 'react'
import SlateTypes from 'slate-prop-types'
import Types from 'prop-types'
import Text from './text'
/**
* Debug.
*
* @type {Function}
*/
const debug = Debug('slate:void')
/**
* Void.
*
* @type {Component}
*/
class Void extends React.Component {
/**
* Property types.
*
* @type {Object}
*/
static propTypes = {
block: SlateTypes.block,
children: Types.any.isRequired,
editor: Types.object.isRequired,
node: SlateTypes.node.isRequired,
parent: SlateTypes.node.isRequired,
readOnly: Types.bool.isRequired,
}
/**
* Debug.
*
* @param {String} message
* @param {Mixed} ...args
*/
debug = (message, ...args) => {
const { node } = this.props
const { key, type } = node
const id = `${key} (${type})`
debug(message, `${id}`, ...args)
}
/**
* Render.
*
* @return {Element}
*/
render() {
const { props } = this
const { children, node, readOnly } = props
const Tag = node.object == 'block' ? 'div' : 'span'
const style = {
height: '0',
color: 'transparent',
outline: 'none',
}
const spacer = (
<Tag
contentEditable
data-slate-spacer
suppressContentEditableWarning
style={style}
>
{this.renderText()}
</Tag>
)
const content = <Tag draggable={readOnly ? null : true}>{children}</Tag>
this.debug('render', { props })
return (
<Tag
data-slate-void
data-key={node.key}
contentEditable={readOnly ? null : false}
>
{readOnly ? null : spacer}
{content}
</Tag>
)
}
/**
* Render the void node's text node, which will catch the cursor when it the
* void node is navigated to with the arrow keys.
*
* Having this text node there means the browser continues to manage the
* selection natively, so it keeps track of the right offset when moving
* across the block.
*
* @return {Element}
*/
renderText = () => {
const {
block,
decorations,
isSelected,
node,
readOnly,
editor,
} = this.props
const child = node.getFirstText()
return (
<Text
block={node.object == 'block' ? node : block}
decorations={decorations}
editor={editor}
isSelected={isSelected}
key={child.key}
node={child}
parent={node}
readOnly={readOnly}
/>
)
}
}
/**
* Export.
*
* @type {Component}
*/
export default Void