-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
353 lines (300 loc) · 11.2 KB
/
main.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
/*jslint continue:true */
var $ = require('jquery');
var _ = require('lodash');
var HtmlWalker = require('./html-walker').HtmlWalker;
var TutoronsConnection = function(window, options) {
this.HL_CLASS = 'tutorons-highlight';
this.TOOLTIP_PADDING_SIDES = 20;
this.options = {
'endpoints': {
'wget': '//tutorons.com/wget',
'regex': '//tutorons.com/regex',
'css': '//tutorons.com/css',
'python': '//tutorons.com/python',
},
'colors': ['#d99eff', '#ffbbbb', '#cceeaa', '#fff4cc'],
'contextTutorons': ['css'],
};
this.options = _.assign(this.options, options);
this.window = window;
this.enabled = true;
this.htmlWalker = new HtmlWalker(this.window);
};
TutoronsConnection.prototype.addRegions = function (tutoron, regions, viewUrl) {
var parent = this;
regions.forEach(function (r) {
var range = parent.window.document.createRange();
var node = parent.window.document.querySelector(r.node);
var textNodes = parent.htmlWalker.getTextDescendants(node);
var textRanges = parent.htmlWalker.getRangeInText(textNodes, r.start_index, r.end_index + 1);
range.setStart(textRanges.start.node, textRanges.start.offset);
range.setEnd(textRanges.end.node, textRanges.end.offset);
parent.markRange(range, r.document, parent.getColor(tutoron), false, r.region_id, r.query_id, viewUrl);
});
};
TutoronsConnection.prototype.scanDom = function () {
function addExplanation (tutoronsConn, tutoron) {
return function (resp) {
var clientQueryUrl = resp.client_query_url;
var viewUrl = resp.view_url;
var startTime = resp.client_start_time;
var regions = resp.regions;
tutoronsConn.addRegions(tutoron, regions, viewUrl);
// Update the client query structure with the runtime of this
// client query to be returned.
var serverQueryId = '/api/v1/server_query/' + resp.query_id + '/';
var clientQueryData = JSON.stringify({
end_time: Date(),
start_time: startTime,
server_query: serverQueryId,
});
// We're using calls to the 'ajax' method instead of 'post'
// a few places in this file because some critical settings aren't
// available with the 'post' method.
$.ajax({
url: clientQueryUrl,
type: 'POST',
contentType: 'application/json',
data: clientQueryData,
processData: false
});
};
}
var endpoints = this.options.endpoints;
var tutoron, endpoint;
for (tutoron in endpoints) {
if (endpoints.hasOwnProperty(tutoron)) {
endpoint = endpoints[tutoron];
$.post(endpoint + '/scan', {
origin: this.window.location.href,
document: this.window.document.body.innerHTML,
client_start_time : Date(),
},
addExplanation(this, tutoron),
'json');
}
}
};
TutoronsConnection.prototype.explainSelection = function (tutoron, selection) {
var DEFAULT_CONTEXT_SIZE = 3;
var contextSize = 0;
var queryText;
var selectedText = selection.toString();
var context = this.htmlWalker.getContext(selection, DEFAULT_CONTEXT_SIZE);
if (this.options.contextTutorons.indexOf(tutoron) !== -1 && context !== null) {
queryText = context;
contextSize = DEFAULT_CONTEXT_SIZE;
} else {
queryText = selectedText;
}
var range = selection.getRangeAt(0);
var parent = this;
$.post(this.options.endpoints[tutoron] + '/explain', {
origin: this.window.location.href,
text: queryText,
edge_size: contextSize,
}, function (resp) {
if (resp.error){
parent.markRange(range, resp.html, parent.getColor(tutoron), true, -1, -1);
} else {
var region = resp.region;
parent.markRange(range, region.document, parent.getColor(tutoron), true, region.regionId, region.queryId);
}
}, 'json');
};
TutoronsConnection.prototype.markRange = function (range, explanation, color, showNow, regionId, queryId, viewUrl) {
if (this.isHighlighted(range)) {
return;
}
var parent = this;
// Transfer found terms into a span
var contents = range.extractContents();
var span = this.window.document.createElement('span');
span.appendChild(contents);
range.insertNode(span);
// Add explanation and click handler to show explanation in tooltip
span.onclick = function () {
parent.showTooltip(span);
};
$(span).data('explanation', explanation);
$(span).data('regionId', regionId);
$(span).data('queryId', queryId);
$(span).data('viewUrl', viewUrl);
// Smoothly fade in the highlighting
$(span).fadeOut('fast', function () {
$(this).fadeIn('slow', function () {
if (showNow === true) {
parent.showTooltip(span);
}
});
$(this).addClass(parent.HL_CLASS);
$(this).css('background-color', color);
});
};
TutoronsConnection.prototype.getTooltipWidth = function (node) {
var TOOLTIP_MIN_WIDTH = 600;
var TOOLTIP_PADDING_SIDES = this.TOOLTIP_PADDING_SIDES;
var tooltipWidth = TOOLTIP_MIN_WIDTH;
function widthWithPadding(node) {
return Number($(node).attr('width')) + TOOLTIP_PADDING_SIDES * 2;
}
// We approximate an appropriate width for the tooltip as the width of
// its largest internal descendant, plus padding
$(node).find('*').each(function() {
if (widthWithPadding(this) > tooltipWidth) {
tooltipWidth = widthWithPadding(this);
}
});
return tooltipWidth;
};
TutoronsConnection.prototype.showTooltip = function (node) {
var explanation = $(node).data('explanation');
var regionId = $(node).data('regionId');
var serverQueryId = $(node).data('queryId');
var viewUrl = $(node).data('viewUrl');
var viewData = JSON.stringify({
region: '/api/v1/region/' + regionId + '/',
server_query: '/api/v1/server_query/' + serverQueryId + '/',
action : 'show',
});
$.ajax({
url: viewUrl,
type: 'POST',
contentType: 'application/json',
data: viewData,
dataType: 'json',
processData: false
});
if (this.enabled === false || explanation === undefined) {
return;
}
// Remove container if it already exists
var div = this.window.document.getElementById('hint-tooltip');
if (div !== null) {
this.window.document.body.removeChild(div);
}
// Create container
div = this.window.document.createElement('div');
div.id = 'hint-tooltip';
this.window.document.body.appendChild(div);
// Add explanation to tooltip
div.innerHTML = explanation;
this.styleTooltip(div);
// Center tooltip beneath text. Doesn't work in IE9.
var selRect = node.getBoundingClientRect();
var selMidX = this.window.pageXOffset + selRect.left + selRect.width / 2;
var tooltipWidth = this.getTooltipWidth(div);
var bodyWidth = $(this.window.document.body).width();
var divX = selMidX - tooltipWidth / 2;
var divY = selRect.bottom + this.window.pageYOffset + 10;
divX = Math.max(this.window.pageXOffset, divX);
divX = Math.min(divX, this.window.pageXOffset + bodyWidth - tooltipWidth);
// Hide tooltip when click happens outside it
var parent = this;
var hide = function (event) {
if (!$(event.target).closest('#hint-tooltip').length) {
$(div).css('display', 'none');
$(parent.window.document.body).unbind('mousedown', hide);
parent.htmlWalker.clearSelection();
var hideData = JSON.stringify({
region: '/api/v1/region/' + regionId + '/',
server_query: '/api/v1/server_query/' + serverQueryId + '/',
action: 'hide',
});
$.ajax({
url: viewUrl,
type: 'POST',
contentType: 'application/json',
data: hideData,
dataType: 'json',
processData: false
});
}
};
$(this.window.document.body).bind('mousedown', hide);
// XXX: when tested in Firefox, it was necessary to explicitly set to CSS property
// for 'left' to the empty string '' before setting it to a new value for the page
// to reflect the intended position. This only appears to be a problem when 'all'
// CSS properties for the 'div' are set to 'initial' before setting the value of 'left'.
$(div).css('left', '');
$(div).css({
position: 'absolute',
left: String(divX) + 'px',
top: String(divY) + 'px',
});
// Fade in the tooltip
$(div).fadeIn('fast');
};
TutoronsConnection.prototype.getColor = function (tutoron) {
var tutorons = [];
var endpoints = this.options.endpoints;
var t;
for (t in endpoints) {
if (endpoints.hasOwnProperty(t)) {
tutorons.push(t);
}
}
tutorons.sort();
return this.options.colors[tutorons.indexOf(tutoron)];
};
TutoronsConnection.prototype.styleTooltip = function (div) {
// Initialize the format of all formatted elements
$(div).css({
'all': 'initial',
});
$(div).find('p, ul, h5, div.example-code, .tutoron-selection, .wget-opt').css({
'all': 'initial',
});
// Apply formatting to elements
$(div).css({
'width': String(this.getTooltipWidth(div)) + 'px',
'border': 'gray 2px dashed',
'display': 'none',
'padding-top': '10px',
'background-color': 'white',
'padding': String(this.TOOLTIP_PADDING_SIDES) + 'px',
'font-family': '"Palatino Linotype", "Book Antiqua", Palatino, serif',
'font-size': '14px',
});
$(div).find('p, ul, h5').css({
'display': 'block',
'margin-top': '0',
'margin-bottom': '.4em',
'font-family': '"Palatino Linotype", "Book Antiqua", Palatino, serif',
'font-size': '14px',
'line-height': '1.3em',
});
$(div).find('ul').css({
'padding-left': '20px',
});
$(div).find('h5').css({
'font-weight': 'bold',
});
$(div).find('div.example-code').css({
'display': 'block',
'margin-top': '1em',
'margin-bottom': '1em',
'padding': '1em',
'font-size': '14px',
'font-weight': 'normal',
'background-color': '#F2EEFF',
'border': 'gray 1px solid',
'line-height': '1.3em',
'font-family': '"Lucida Console", Monaco, monospace',
});
$(div).find('.tutoron_selection').css({
'font-weight': 'bolder',
'color': '#3A2E62',
});
$(div).find('.wget-opt').css({
'font-family': '"Courier New", Courier, monospace',
});
};
TutoronsConnection.prototype.isHighlighted = function (range) {
var ancestors = $(range.startContainer).parents();
var hlAncestors = ancestors.filter('.' + this.HL_CLASS);
return (hlAncestors.length > 0);
};
module.exports = {
'TutoronsConnection': TutoronsConnection,
};