forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoid.js
118 lines (100 loc) · 2.48 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
import Leaf from './leaf'
import Mark from '../models/mark'
import OffsetKey from '../utils/offset-key'
import React from 'react'
import ReactDOM from 'react-dom'
import keycode from 'keycode'
/**
* Void.
*/
class Void extends React.Component {
static propTypes = {
children: React.PropTypes.any.isRequired,
className: React.PropTypes.string,
editor: React.PropTypes.object.isRequired,
node: React.PropTypes.object.isRequired,
state: React.PropTypes.object.isRequired,
style: React.PropTypes.object
};
static defaultProps = {
style: {}
}
shouldComponentUpdate = (props) => {
return (
props.node != this.props.node ||
props.state.selection.hasEdgeIn(props.node) ||
this.props.state.selection.hasEdgeIn(this.props.node)
)
}
render = () => {
const { children, node, className, style } = this.props
const Tag = node.kind == 'block' ? 'div' : 'span'
// Make the outer wrapper relative, so the spacer can overlay it.
const styles = {
...style,
position: 'relative'
}
return (
<Tag contentEditable={false}>
<Tag
contentEditable
suppressContentEditableWarning
className={className}
style={styles}
>
{this.renderSpacer()}
<Tag contentEditable={false}>{children}</Tag>
</Tag>
</Tag>
)
}
renderSpacer = () => {
// Styles that will cause the spacer to be overlaid exactly on top of the
// void content, so it capture clicks and emulates the same scrolling
// behavior, but with a negative text indent to hide the cursor.
const style = {
position: 'absolute',
top: '0px',
right: '0px',
bottom: '0px',
left: '0px',
textIndent: '-9999px'
}
return (
<span style={style}>{this.renderLeaf()}</span>
)
}
renderLeaf = () => {
const { node, state } = this.props
const child = node.getTexts().first()
const text = ''
const marks = Mark.createSet()
const index = 0
const offsetKey = OffsetKey.stringify({
key: child.key,
index
})
return (
<Leaf
ref={this.renderLeafRefs}
renderMark={this.renderLeafMark}
key={offsetKey}
state={state}
node={child}
index={index}
text={text}
marks={marks}
/>
)
}
renderLeafMark = (mark) => {
return {}
}
renderLeafRefs = (el) => {
this.leaf = el
}
}
/**
* Export.
*/
export default Void