-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.js
190 lines (166 loc) · 5.48 KB
/
setup.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
/*
* Copyright 2020 Northwestern Inclusive Technology Lab
*
* Licensed under the Apache License, Version 2.0 (the 'License');
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
let followingCursor = false;
let audioScrollBarEnabled = false;
const instruments = [
"banjo",
"cello",
"violin",
"oboe",
"saxophone",
"french_horn",
];
let availableInstruments = [...instruments];
const getRandomInstrument = () => {
const index = 0;
return {
instrument: availableInstruments[index],
index: index
};
};
const strings = {
documentLineClass: "kix-lineview-z-index-z-index",
};
let cursors = [];
let cursorInstruments = [];
let cursorVoices = [];
let lastPlayed = {};
let cursorAddCallback = undefined;
let cursorDidRemoveCallback = undefined;
const addCursor = (node) => {
chrome.runtime.sendMessage({
type: 'get_voices_speech_request',
}, (response) => {
if (availableInstruments.length === 0) {
availableInstruments = [...instruments];
}
const randomInstrument = getRandomInstrument();
// TODO: Do this same as instrument
const index = Math.floor(Math.random() * response.voices.length);
cursorVoices.push(response.voices[index]);
cursorInstruments.push(randomInstrument.instrument);
availableInstruments.splice(randomInstrument.index, 1);
cursors.push(node);
if (cursorAddCallback) {
cursorAddCallback(node);
}
});
};
const removeCursor = (node) => {
cursors.splice(cursors.indexOf(node), 1);
if (cursorDidRemoveCallback) {
cursorDidRemoveCallback(node);
}
};
const getCurrentUserCursor = () => {
const currentUserCarrotId = 'kix-current-user-cursor-caret';
return document.getElementById(currentUserCarrotId).parentElement;
};
const getDocumentLines = () => {
return [...(document.getElementsByClassName('kix-lineview-z-index'))];
};
const getDocumentParagraphs = () => {
return [...(document.getElementsByClassName('kix-paragraphrenderer'))];
};
const getDocumentPages = () => {
return [...(document.getElementsByClassName('kix-page'))];
};
const getDocumentLineAtCoordinates = (x, y) => {
const lines = [...document.getElementsByClassName('kix-lineview-z-index')];
for (const line of lines) {
const coords = line.getBoundingClientRect();
if (coords.left <= x && coords.right >= x && coords.top <= y && coords.bottom >= y) {
return line;
}
}
return undefined;
};
const getDocumentParagraphAtCoordinates = (x, y) => {
const paras = [...document.getElementsByClassName('kix-paragraphrenderer')];
for (const para of paras) {
const coords = para.getBoundingClientRect();
if (coords.left <= x && coords.right >= x && coords.top <= y && coords.bottom >= y) {
return para;
}
}
return undefined;
};
const getDocumentPageAtCoordinates = (x, y) => {
const pages = [...document.getElementsByClassName('kix-page')];
for (const page of pages) {
const coords = page.getBoundingClientRect();
if (coords.left <= x && coords.right >= x && coords.top <= y && coords.bottom >= y) {
return page;
}
}
return undefined;
};
const getDocumentPosition = (x, y) => {
let positions = {
line: -1,
paragraph: -1,
page: -1,
};
const currentPage = getDocumentPageAtCoordinates(x, y + 5);
const pageIndex = getDocumentPages().indexOf(currentPage);
if (pageIndex !== -1) {
positions.page = pageIndex + 1;
}
const currentParagraph = getDocumentParagraphAtCoordinates(x, y + 5);
const paragraphIndex = [...currentPage.getElementsByClassName('kix-paragraphrenderer')].indexOf(currentParagraph);
if (paragraphIndex !== -1) {
positions.paragraph = paragraphIndex + 1;
}
const currentLine = getDocumentLineAtCoordinates(x, y + 5);
const lineIndex = [...currentParagraph.getElementsByClassName('kix-lineview-z-index')].indexOf(currentLine);
if (lineIndex !== -1) {
positions.line = lineIndex + 1;
}
return positions;
};
const calculateCursorCoordinates = (cursor) => {
const position = cursor.getBoundingClientRect();
return {
x: position.x,
y: position.y
};
};
const trackCursors = () => {
const cursorObserver = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
mutation.addedNodes.forEach((node) => {
if (node.classList && node.classList.contains('kix-cursor')) {
addCursor(node);
}
});
mutation.removedNodes.forEach((node) => {
if (node.classList && node.classList.contains('kix-cursor')) {
removeCursor(node);
}
});
});
});
cursorObserver.observe(document.body, {
childList: true,
subtree: true
});
};
let cursorCallbacks = []
cursorAddCallback = (node) => {
cursorCallbacks.forEach((callback) => {
callback(node);
})
};