-
Notifications
You must be signed in to change notification settings - Fork 241
/
index.js
264 lines (221 loc) · 6.16 KB
/
index.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
import React, { Component } from 'react'
import cn from '../../utils/cn'
import prism from '../../utils/prism'
import normalizeCode from '../../utils/normalizeCode'
import normalizeHtml from '../../utils/normalizeHtml'
import htmlToPlain from '../../utils/htmlToPlain'
import selectionRange from '../../vendor/selection-range'
import { getIndent, getDeindentLevel } from '../../utils/getIndent'
class Editor extends Component {
static defaultProps = {
contentEditable: true,
language: 'jsx'
}
undoStack = []
undoOffset = 0
undoTimestamp = 0
compositing = false
state = {
html: ''
}
onRef = node => {
this.ref = node
}
getPlain = () => {
if (this._innerHTML === this.ref.innerHTML) {
return this._plain
}
const plain = htmlToPlain(normalizeHtml(this.ref.innerHTML))
this._plain = plain
this._innerHTML = this.ref.innerHTML
return this._plain
}
recordChange = (plain, selection) => {
if (plain === this.undoStack[this.undoStack.length - 1]) {
return
}
if (this.undoOffset > 0) {
this.undoStack = this.undoStack.slice(0, -this.undoOffset)
this.undoOffset = 0
}
const timestamp = Date.now()
const record = { plain, selection }
// Overwrite last record if threshold is not crossed
if (timestamp - this.undoTimestamp < 3000) {
this.undoStack[this.undoStack.length - 1] = record
} else {
this.undoStack.push(record)
if (this.undoStack.length > 50) {
this.undoStack.shift()
}
}
this.undoTimestamp = timestamp
}
updateContent = plain => {
if (this.compositing) {
return;
}
this.setState({ html: prism(plain, this.props.language) })
if (this.props.onChange) {
this.props.onChange(plain)
}
}
restoreStackState = offset => {
const { plain, selection } = this.undoStack[this.undoStack.length - 1 - offset]
this.selection = selection
this.undoOffset = offset
this.updateContent(plain)
}
undo = () => {
const offset = this.undoOffset + 1
if (offset >= this.undoStack.length) {
return
}
this.restoreStackState(offset)
}
redo = () => {
const offset = this.undoOffset - 1
if (offset < 0) {
return
}
this.restoreStackState(offset)
}
onKeyDown = evt => {
if (this.props.onKeyDown) {
this.props.onKeyDown(evt)
}
if (evt.keyCode === 9 && !this.props.ignoreTabKey) { // Tab Key
document.execCommand('insertHTML', false, ' ')
evt.preventDefault()
} else if (evt.keyCode === 8) { // Backspace Key
const { start: cursorPos, end: cursorEndPos } = selectionRange(this.ref)
if (cursorPos !== cursorEndPos) {
return // Bail on selections
}
const deindent = getDeindentLevel(this.getPlain(), cursorPos)
if (deindent <= 0) {
return // Bail when deindent level defaults to 0
}
// Delete chars `deindent` times
for (let i = 0; i < deindent; i++) {
document.execCommand('delete', false)
}
evt.preventDefault()
} else if (evt.keyCode === 13) { // Enter Key
const { start: cursorPos } = selectionRange(this.ref)
const indentation = getIndent(this.getPlain(), cursorPos)
document.execCommand('insertHTML', false, '\n' + indentation)
evt.preventDefault()
} else if (
// Undo / Redo
evt.keyCode === 90 &&
evt.metaKey !== evt.ctrlKey &&
!evt.altKey
) {
if (evt.shiftKey) {
this.redo()
} else {
this.undo()
}
evt.preventDefault()
}
}
onKeyUp = evt => {
if (this.props.onKeyUp) {
this.props.onKeyUp(evt)
}
if (
evt.keyCode === 91 || // left cmd
evt.keyCode === 93 || // right cmd
evt.ctrlKey ||
evt.metaKey
) {
return
}
// Enter key
if (evt.keyCode === 13) {
this.undoTimestamp = 0
}
this.selection = selectionRange(this.ref)
if (
evt.keyCode !== 37 && // left
evt.keyCode !== 38 && // up
evt.keyCode !== 39 && // right
evt.keyCode !== 40 // down
) {
const plain = this.getPlain()
this.recordChange(plain, this.selection)
this.updateContent(plain);
} else {
this.undoTimestamp = 0
}
}
onCompositionStart = evt => {
if (this.props.onCompositionStart) {
this.props.onCompositionStart(evt)
}
this.compositing = true;
}
onCompositionEnd = evt => {
if (this.props.onCompositionEnd) {
this.props.onCompositionEnd(evt)
}
this.compositing = false;
}
onClick = evt => {
if (this.props.onClick) {
this.props.onClick(evt)
}
this.undoTimestamp = 0 // Reset timestamp
this.selection = selectionRange(this.ref)
}
componentWillMount() {
const html = prism(normalizeCode(this.props.code), this.props.language)
this.setState({ html })
}
componentDidMount() {
this.recordChange(this.getPlain())
this.undoTimestamp = 0 // Reset timestamp
}
componentWillReceiveProps({ code, language }) {
if (code !== this.props.code || language !== this.props.language) {
const html = prism(normalizeCode(code), language)
this.setState({ html })
}
}
componentDidUpdate() {
const { selection } = this
if (selection) {
selectionRange(this.ref, selection)
}
}
render() {
const {
contentEditable,
className,
style,
code, // ignored & unused
ignoreTabKey, // ignored & unused
language, // ignored & unused
...rest
} = this.props
const { html } = this.state
return (
<pre
{...rest}
ref={this.onRef}
className={cn('prism-code', className)}
style={style}
spellCheck="false"
contentEditable={contentEditable}
onCompositionEnd={contentEditable ? this.onCompositionEnd : undefined}
onCompositionStart={contentEditable ? this.onCompositionStart : undefined}
onKeyDown={contentEditable ? this.onKeyDown : undefined}
onKeyUp={contentEditable ? this.onKeyUp : undefined}
onClick={contentEditable ? this.onClick : undefined}
dangerouslySetInnerHTML={{ __html: html }}
/>
)
}
}
export default Editor