-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathreact-contenteditable.js
More file actions
69 lines (60 loc) · 2.02 KB
/
Copy pathreact-contenteditable.js
File metadata and controls
69 lines (60 loc) · 2.02 KB
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
import React from 'react';
const OBSERVER_CONFIG = { childList: true, subtree: true, characterData: true };
export default class ContentEditable extends React.Component {
constructor() {
super();
this.emitChange = this.emitChange.bind(this);
}
render() {
var { tagName, html, ...props } = this.props;
return React.createElement(
tagName || 'div',
{
...props,
ref: (e) => this.htmlEl = e,
onBlur: this.props.onBlur || this.emitChange,
contentEditable: !this.props.disabled,
dangerouslySetInnerHTML: {__html: html}
},
this.props.children);
}
componentDidMount() {
this.observer = new MutationObserver((mutations) => {
mutations.forEach(this.emitChange);
});
this.observer.observe(this.htmlEl, OBSERVER_CONFIG);
}
shouldComponentUpdate(nextProps) {
// We need not rerender if the change of props simply reflects the user's
// edits. Rerendering in this case would make the cursor/caret jump.
return (
// Rerender if there is no element yet... (somehow?)
!this.htmlEl
// ...or if html really changed... (programmatically, not by user edit)
|| ( nextProps.html !== this.htmlEl.innerHTML
&& nextProps.html !== this.props.html )
// ...or if editing is enabled or disabled.
|| this.props.disabled !== nextProps.disabled
// ...or if className changed
|| this.props.className !== nextProps.className
);
}
componentDidUpdate() {
if ( this.htmlEl && this.props.html !== this.htmlEl.innerHTML ) {
// Perhaps React (whose VDOM gets outdated because we often prevent
// rerendering) did not update the DOM. So we update it manually now.
this.htmlEl.innerHTML = this.props.html;
}
}
componentWillUnmount() {
this.observer.disconnect();
}
emitChange(evt) {
if (!this.htmlEl) return;
var html = this.htmlEl.innerHTML;
if (this.props.onChange && html !== this.lastHtml) {
this.props.onChange(evt);
}
this.lastHtml = html;
}
}