-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
48 lines (42 loc) · 1.04 KB
/
scripts.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
function trackChange() {
if (textArea) {
let text = textArea.value;
let selection = getSelection(textArea);
if (selection[0] === selection[1]) selection = null;
let cursor = getCursorPosition(textArea);
let payLoad = {
time: currentTime,
text,
selection,
cursor
};
finalArray.push(payLoad);
}
}
function applyChanges(replayTextarea) {
// Function to make changes to the text of the textarea while replaying.
if (replayTextarea && isReplaying) {
replayTextarea.focus();
let timeRecord = searchForTime(currentReplayTime);
if (timeRecord === -2) {
// The recording has ended.
stopReplay();
} else if (timeRecord === -1) {
// Time not found.
return;
} else {
replayTextarea.value = timeRecord.text;
if (timeRecord.selection && Array.isArray(timeRecord.selection)) {
// If there was a selection in the text.
setSelectionRange(
replayTextarea,
timeRecord.selection[0],
timeRecord.selection[1]
);
}
else
setCaretToPos(replayTextarea, timeRecord.cursor);
return;
}
}
}