forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaceholder.js
148 lines (119 loc) · 3.07 KB
/
placeholder.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
147
148
import Portal from 'react-portal'
import React from 'react'
import findDOMNode from '../utils/find-dom-node'
/**
* Placeholder.
*/
class Placeholder extends React.Component {
/**
* Properties.
*/
static propTypes = {
children: React.PropTypes.any.isRequired,
className: React.PropTypes.string,
node: React.PropTypes.object.isRequired,
parent: React.PropTypes.object.isRequired,
state: React.PropTypes.object.isRequired,
style: React.PropTypes.object
};
/**
* Constructor.
*
* @param {Object} props
*/
constructor(props) {
super(props)
this.tmp = {}
}
/**
* Should the component update?
*
* @param {Object} props
* @param {Object} state
* @return {Boolean}
*/
shouldComponentUpdate = (props, state) => {
return (
props.children != this.props.children ||
props.className != this.props.className ||
props.parent != this.props.parent ||
props.node != this.props.node ||
props.style != this.props.style
)
}
/**
* On mount, start listening for resize events.
*/
componentDidMount = () => {
window.addEventListener('resize', this.updatePosition)
}
/**
* On unmount, stop listening for resize events.
*/
componentWillUnmount = () => {
window.removeEventListener('resize', this.updatePosition)
}
/**
* Is the placeholder visible?
*
* @return {Boolean}
*/
isVisible = () => {
const { onlyFirstChild, node, parent } = this.props
if (node.text) return false
if (parent.nodes.size > 1) return false
const isFirst = parent.nodes.first() === node
if (isFirst) return true
return false
}
/**
* On open, update the placeholder element's position.
*
* @param {Element} portal
*/
onOpen = (portal) => {
this.tmp.placeholder = portal.firstChild
this.updatePosition()
}
/**
* Update the placeholder element's position.
*/
updatePosition = () => {
const { node } = this.props
const { placeholder } = this.tmp
if (!placeholder) return
const el = findDOMNode(node)
const rect = el.getBoundingClientRect()
placeholder.style.pointerEvents = 'none'
placeholder.style.position = 'absolute'
placeholder.style.top = `${window.scrollY + rect.top}px`
placeholder.style.left = `${window.scrollX + rect.left}px`
placeholder.style.width = `${rect.width}px`
placeholder.style.height = `${rect.height}px`
}
/**
* Render.
*
* If the placeholder is a string, and no `className` or `style` has been
* passed, give it a default style of lowered opacity.
*
* @return {Element} element
*/
render = () => {
const isOpen = this.isVisible()
const { children, className } = this.props
let { style } = this.props
if (typeof children === 'string' && style == null && className == null) {
style = { opacity: '0.333'}
}
return (
<Portal isOpened={isOpen} onOpen={this.onOpen}>
<span className={className} style={style}>{children}</span>
</Portal>
)
}
}
/**
* Export.
*/
export default Placeholder