-
Notifications
You must be signed in to change notification settings - Fork 171
/
index.js
629 lines (544 loc) · 16.4 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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
/* @flow */
/* global global */
import * as React from 'react';
type Props = React.ElementConfig<'div'> & {
// Props for the component
value: string,
onValueChange: (value: string) => mixed,
highlight: (value: string) => string | React.Node,
tabSize: number,
insertSpaces: boolean,
ignoreTabKey: boolean,
padding: number | string,
style?: {},
// Props for the textarea
textareaId?: string,
autoFocus?: boolean,
disabled?: boolean,
form?: string,
maxLength?: number,
minLength?: number,
name?: string,
placeholder?: string,
readOnly?: boolean,
required?: boolean,
onClick?: (e: MouseEvent) => mixed,
onFocus?: (e: FocusEvent) => mixed,
onBlur?: (e: FocusEvent) => mixed,
onKeyUp?: (e: KeyboardEvent) => mixed,
onKeyDown?: (e: KeyboardEvent) => mixed,
};
type State = {
capture: boolean,
};
type Record = {
value: string,
selectionStart: number,
selectionEnd: number,
};
type History = {
stack: Array<Record & { timestamp: number }>,
offset: number,
};
const KEYCODE_ENTER = 13;
const KEYCODE_TAB = 9;
const KEYCODE_BACKSPACE = 8;
const KEYCODE_Y = 89;
const KEYCODE_Z = 90;
const KEYCODE_M = 77;
const KEYCODE_PARENS = 57;
const KEYCODE_BRACKETS = 219;
const KEYCODE_QUOTE = 222;
const KEYCODE_BACK_QUOTE = 192;
const HISTORY_LIMIT = 100;
const HISTORY_TIME_GAP = 3000;
const isWindows = 'navigator' in global && /Win/i.test(navigator.platform);
const isMacLike =
'navigator' in global && /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
const className = 'npm__react-simple-code-editor__textarea';
const cssText = /* CSS */ `
/**
* Reset the text fill color so that placeholder is visible
*/
.${className}:empty {
-webkit-text-fill-color: inherit !important;
}
/**
* Hack to apply on some CSS on IE10 and IE11
*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/**
* IE doesn't support '-webkit-text-fill-color'
* So we use 'color: transparent' to make the text transparent on IE
* Unlike other browsers, it doesn't affect caret color in IE
*/
.${className} {
color: transparent !important;
}
.${className}::selection {
background-color: #accef7 !important;
color: transparent !important;
}
}
`;
export default class Editor extends React.Component<Props, State> {
static defaultProps = {
tabSize: 2,
insertSpaces: true,
ignoreTabKey: false,
padding: 0,
};
state = {
capture: true,
};
componentDidMount() {
this._recordCurrentState();
}
_recordCurrentState = () => {
const input = this._input;
if (!input) return;
// Save current state of the input
const { value, selectionStart, selectionEnd } = input;
this._recordChange({
value,
selectionStart,
selectionEnd,
});
};
_getLines = (text: string, position: number) =>
text.substring(0, position).split('\n');
_recordChange = (record: Record, overwrite?: boolean = false) => {
const { stack, offset } = this._history;
if (stack.length && offset > -1) {
// When something updates, drop the redo operations
this._history.stack = stack.slice(0, offset + 1);
// Limit the number of operations to 100
const count = this._history.stack.length;
if (count > HISTORY_LIMIT) {
const extras = count - HISTORY_LIMIT;
this._history.stack = stack.slice(extras, count);
this._history.offset = Math.max(this._history.offset - extras, 0);
}
}
const timestamp = Date.now();
if (overwrite) {
const last = this._history.stack[this._history.offset];
if (last && timestamp - last.timestamp < HISTORY_TIME_GAP) {
// A previous entry exists and was in short interval
// Match the last word in the line
const re = /[^a-z0-9]([a-z0-9]+)$/i;
// Get the previous line
const previous = this._getLines(last.value, last.selectionStart)
.pop()
.match(re);
// Get the current line
const current = this._getLines(record.value, record.selectionStart)
.pop()
.match(re);
if (previous && current && current[1].startsWith(previous[1])) {
// The last word of the previous line and current line match
// Overwrite previous entry so that undo will remove whole word
this._history.stack[this._history.offset] = { ...record, timestamp };
return;
}
}
}
// Add the new operation to the stack
this._history.stack.push({ ...record, timestamp });
this._history.offset++;
};
_updateInput = (record: Record) => {
const input = this._input;
if (!input) return;
// Update values and selection state
input.value = record.value;
input.selectionStart = record.selectionStart;
input.selectionEnd = record.selectionEnd;
this.props.onValueChange(record.value);
};
_applyEdits = (record: Record) => {
// Save last selection state
const input = this._input;
const last = this._history.stack[this._history.offset];
if (last && input) {
this._history.stack[this._history.offset] = {
...last,
selectionStart: input.selectionStart,
selectionEnd: input.selectionEnd,
};
}
// Save the changes
this._recordChange(record);
this._updateInput(record);
};
_undoEdit = () => {
const { stack, offset } = this._history;
// Get the previous edit
const record = stack[offset - 1];
if (record) {
// Apply the changes and update the offset
this._updateInput(record);
this._history.offset = Math.max(offset - 1, 0);
}
};
_redoEdit = () => {
const { stack, offset } = this._history;
// Get the next edit
const record = stack[offset + 1];
if (record) {
// Apply the changes and update the offset
this._updateInput(record);
this._history.offset = Math.min(offset + 1, stack.length - 1);
}
};
_handleKeyDown = (e: *) => {
const { tabSize, insertSpaces, ignoreTabKey, onKeyDown } = this.props;
if (onKeyDown) {
onKeyDown(e);
if (e.defaultPrevented) {
return;
}
}
const { value, selectionStart, selectionEnd } = e.target;
const tabCharacter = (insertSpaces ? ' ' : ' ').repeat(tabSize);
if (e.keyCode === KEYCODE_TAB && !ignoreTabKey && this.state.capture) {
// Prevent focus change
e.preventDefault();
if (e.shiftKey) {
// Unindent selected lines
const linesBeforeCaret = this._getLines(value, selectionStart);
const startLine = linesBeforeCaret.length - 1;
const endLine = this._getLines(value, selectionEnd).length - 1;
const nextValue = value
.split('\n')
.map((line, i) => {
if (
i >= startLine &&
i <= endLine &&
line.startsWith(tabCharacter)
) {
return line.substring(tabCharacter.length);
}
return line;
})
.join('\n');
if (value !== nextValue) {
const startLineText = linesBeforeCaret[startLine];
this._applyEdits({
value: nextValue,
// Move the start cursor if first line in selection was modified
// It was modified only if it started with a tab
selectionStart: startLineText.startsWith(tabCharacter)
? selectionStart - tabCharacter.length
: selectionStart,
// Move the end cursor by total number of characters removed
selectionEnd: selectionEnd - (value.length - nextValue.length),
});
}
} else if (selectionStart !== selectionEnd) {
// Indent selected lines
const linesBeforeCaret = this._getLines(value, selectionStart);
const startLine = linesBeforeCaret.length - 1;
const endLine = this._getLines(value, selectionEnd).length - 1;
const startLineText = linesBeforeCaret[startLine];
this._applyEdits({
value: value
.split('\n')
.map((line, i) => {
if (i >= startLine && i <= endLine) {
return tabCharacter + line;
}
return line;
})
.join('\n'),
// Move the start cursor by number of characters added in first line of selection
// Don't move it if it there was no text before cursor
selectionStart: /\S/.test(startLineText)
? selectionStart + tabCharacter.length
: selectionStart,
// Move the end cursor by total number of characters added
selectionEnd:
selectionEnd + tabCharacter.length * (endLine - startLine + 1),
});
} else {
const updatedSelection = selectionStart + tabCharacter.length;
this._applyEdits({
// Insert tab character at caret
value:
value.substring(0, selectionStart) +
tabCharacter +
value.substring(selectionEnd),
// Update caret position
selectionStart: updatedSelection,
selectionEnd: updatedSelection,
});
}
} else if (e.keyCode === KEYCODE_BACKSPACE) {
const hasSelection = selectionStart !== selectionEnd;
const textBeforeCaret = value.substring(0, selectionStart);
if (textBeforeCaret.endsWith(tabCharacter) && !hasSelection) {
// Prevent default delete behaviour
e.preventDefault();
const updatedSelection = selectionStart - tabCharacter.length;
this._applyEdits({
// Remove tab character at caret
value:
value.substring(0, selectionStart - tabCharacter.length) +
value.substring(selectionEnd),
// Update caret position
selectionStart: updatedSelection,
selectionEnd: updatedSelection,
});
}
} else if (e.keyCode === KEYCODE_ENTER) {
// Ignore selections
if (selectionStart === selectionEnd) {
// Get the current line
const line = this._getLines(value, selectionStart).pop();
const matches = line.match(/^\s+/);
if (matches && matches[0]) {
e.preventDefault();
// Preserve indentation on inserting a new line
const indent = '\n' + matches[0];
const updatedSelection = selectionStart + indent.length;
this._applyEdits({
// Insert indentation character at caret
value:
value.substring(0, selectionStart) +
indent +
value.substring(selectionEnd),
// Update caret position
selectionStart: updatedSelection,
selectionEnd: updatedSelection,
});
}
}
} else if (
e.keyCode === KEYCODE_PARENS ||
e.keyCode === KEYCODE_BRACKETS ||
e.keyCode === KEYCODE_QUOTE ||
e.keyCode === KEYCODE_BACK_QUOTE
) {
let chars;
if (e.keyCode === KEYCODE_PARENS && e.shiftKey) {
chars = ['(', ')'];
} else if (e.keyCode === KEYCODE_BRACKETS) {
if (e.shiftKey) {
chars = ['{', '}'];
} else {
chars = ['[', ']'];
}
} else if (e.keyCode === KEYCODE_QUOTE) {
if (e.shiftKey) {
chars = ['"', '"'];
} else {
chars = ["'", "'"];
}
} else if (e.keyCode === KEYCODE_BACK_QUOTE && !e.shiftKey) {
chars = ['`', '`'];
}
// If text is selected, wrap them in the characters
if (selectionStart !== selectionEnd && chars) {
e.preventDefault();
this._applyEdits({
value:
value.substring(0, selectionStart) +
chars[0] +
value.substring(selectionStart, selectionEnd) +
chars[1] +
value.substring(selectionEnd),
// Update caret position
selectionStart,
selectionEnd: selectionEnd + 2,
});
}
} else if (
(isMacLike
? // Trigger undo with ⌘+Z on Mac
e.metaKey && e.keyCode === KEYCODE_Z
: // Trigger undo with Ctrl+Z on other platforms
e.ctrlKey && e.keyCode === KEYCODE_Z) &&
!e.shiftKey &&
!e.altKey
) {
e.preventDefault();
this._undoEdit();
} else if (
(isMacLike
? // Trigger redo with ⌘+Shift+Z on Mac
e.metaKey && e.keyCode === KEYCODE_Z && e.shiftKey
: isWindows
? // Trigger redo with Ctrl+Y on Windows
e.ctrlKey && e.keyCode === KEYCODE_Y
: // Trigger redo with Ctrl+Shift+Z on other platforms
e.ctrlKey && e.keyCode === KEYCODE_Z && e.shiftKey) &&
!e.altKey
) {
e.preventDefault();
this._redoEdit();
} else if (
e.keyCode === KEYCODE_M &&
e.ctrlKey &&
(isMacLike ? e.shiftKey : true)
) {
e.preventDefault();
// Toggle capturing tab key so users can focus away
this.setState(state => ({
capture: !state.capture,
}));
}
};
_handleChange = (e: *) => {
const { value, selectionStart, selectionEnd } = e.target;
this._recordChange(
{
value,
selectionStart,
selectionEnd,
},
true
);
this.props.onValueChange(value);
};
_history: History = {
stack: [],
offset: -1,
};
_input: ?HTMLTextAreaElement;
get session() {
return {
history: this._history,
};
}
set session(session: { history: History }) {
this._history = session.history;
}
render() {
const {
value,
style,
padding,
highlight,
textareaId,
autoFocus,
disabled,
form,
maxLength,
minLength,
name,
placeholder,
readOnly,
required,
onClick,
onFocus,
onBlur,
onKeyUp,
/* eslint-disable no-unused-vars */
onKeyDown,
onValueChange,
tabSize,
insertSpaces,
ignoreTabKey,
/* eslint-enable no-unused-vars */
...rest
} = this.props;
const contentStyle = {
paddingTop: padding,
paddingRight: padding,
paddingBottom: padding,
paddingLeft: padding,
};
const highlighted = highlight(value);
return (
<div {...rest} style={{ ...styles.container, ...style }}>
<textarea
ref={c => (this._input = c)}
style={{
...styles.editor,
...styles.textarea,
...contentStyle,
}}
className={className}
id={textareaId}
value={value}
onChange={this._handleChange}
onKeyDown={this._handleKeyDown}
onClick={onClick}
onKeyUp={onKeyUp}
onFocus={onFocus}
onBlur={onBlur}
disabled={disabled}
form={form}
maxLength={maxLength}
minLength={minLength}
name={name}
placeholder={placeholder}
readOnly={readOnly}
required={required}
autoFocus={autoFocus}
autoCapitalize="off"
autoComplete="off"
autoCorrect="off"
spellCheck={false}
data-gramm={false}
/>
<pre
aria-hidden="true"
style={{ ...styles.editor, ...styles.highlight, ...contentStyle }}
{...(typeof highlighted === 'string'
? { dangerouslySetInnerHTML: { __html: highlighted + '<br />' } }
: { children: highlighted })}
/>
{/* eslint-disable-next-line react/no-danger */}
<style type="text/css" dangerouslySetInnerHTML={{ __html: cssText }} />
</div>
);
}
}
const styles = {
container: {
position: 'relative',
textAlign: 'left',
boxSizing: 'border-box',
padding: 0,
overflow: 'hidden',
},
textarea: {
position: 'absolute',
top: 0,
left: 0,
height: '100%',
width: '100%',
resize: 'none',
color: 'inherit',
overflow: 'hidden',
MozOsxFontSmoothing: 'grayscale',
WebkitFontSmoothing: 'antialiased',
WebkitTextFillColor: 'transparent',
},
highlight: {
position: 'relative',
pointerEvents: 'none',
},
editor: {
margin: 0,
border: 0,
background: 'none',
boxSizing: 'inherit',
display: 'inherit',
fontFamily: 'inherit',
fontSize: 'inherit',
fontStyle: 'inherit',
fontVariantLigatures: 'inherit',
fontWeight: 'inherit',
letterSpacing: 'inherit',
lineHeight: 'inherit',
tabSize: 'inherit',
textIndent: 'inherit',
textRendering: 'inherit',
textTransform: 'inherit',
whiteSpace: 'pre-wrap',
wordBreak: 'keep-all',
overflowWrap: 'break-word',
},
};