forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvoid.js
146 lines (126 loc) · 2.72 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
138
139
140
141
142
143
144
145
146
import Debug from 'debug'
import React from 'react'
import SlateTypes from 'slate-prop-types'
import Types from 'prop-types'
import Text from './text'
import DATA_ATTRS from '../constants/data-attributes'
/**
* 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',
position: 'absolute',
}
const spacerAttrs = {
[DATA_ATTRS.SPACER]: true,
}
const spacer = (
<Tag style={style} {...spacerAttrs}>
{this.renderText()}
</Tag>
)
const content = (
<Tag contentEditable={readOnly ? null : false}>{children}</Tag>
)
this.debug('render', { props })
const attrs = {
[DATA_ATTRS.VOID]: true,
[DATA_ATTRS.KEY]: node.key,
}
return (
<Tag
contentEditable={readOnly || node.object === 'block' ? null : false}
{...attrs}
>
{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 {
annotations,
block,
decorations,
node,
readOnly,
editor,
textRef,
} = this.props
const child = node.getFirstText()
return (
<Text
ref={textRef}
annotations={annotations}
block={node.object === 'block' ? node : block}
decorations={decorations}
editor={editor}
key={child.key}
node={child}
parent={node}
readOnly={readOnly}
/>
)
}
}
/**
* Export.
*
* @type {Component}
*/
export default Void