-
Notifications
You must be signed in to change notification settings - Fork 322
/
Copy pathfunctions.js
564 lines (484 loc) · 18.2 KB
/
functions.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
---
---
// Sliding Panel and scala in a nutshell
$(document).ready(function() {
$('.navigation-panel-button,.navigation-fade-screen,.navigation-panel-close').on('click touchstart', function(e) {
$('.navigation-menu,.navigation-fade-screen').toggleClass('is-visible');
e.preventDefault();
});
var menus = $('.items-menu');
var allContents = $('.items-code');
var allButtons = $('.scala-item');
menus.each(function(index1, row) {
var row = $(row);
var items = row.find('.scala-item');
var content = row.children('.items-content');
var contents = content.children('.items-code');
items.each(function(index2, button) {
var jButton = $(button);
var expandButton = jButton.children('.button-more');
if (expandButton.length > 0) {
var target = jButton.is('.scala-item__governance') ? expandButton : jButton;
target.click(function(event) {
var activeCode = contents.eq(index2);
var others = allContents.not(activeCode);
allButtons.removeClass('active');
others.hide();
if (activeCode.is(":visible")) {
activeCode.hide();
} else {
jButton.addClass('active')
activeCode.show();
}
});
}
});
});
});
// Tooltip
$(document).ready(function() {
// Tooltip only Text
$('.masterTooltip').hover(function(){
// Hover over code
var title = $(this).attr('title');
$(this).data('tipText', title).removeAttr('title');
$('<p class="tooltip"></p>')
.text(title)
.appendTo('body')
.fadeIn('slow');
}, function() {
// Hover out code
$(this).attr('title', $(this).data('tipText'));
$('.tooltip').remove();
}).mousemove(function(e) {
var mousex = e.pageX + 20; //Get X coordinates
var mousey = e.pageY + 10; //Get Y coordinates
$('.tooltip')
.css({ top: mousey, left: mousex })
});
});
// Highlight
$(document).ready(function() {
hljs.configure({
languages: ["scala", "bash"]
})
hljs.initHighlighting();
});
// Show Blog
$(".hide").click(function() {
$(".new-on-the-blog").hide();
updatePointer();
});
//Tweet feed in frontpage
$('#tweet-feed').tweetMachine('', {
backendScript: '/webscripts/ajax/getFromTwitter.php',
endpoint: 'statuses/user_timeline',
user_name: 'scala_lang',
include_retweets: true,
exclude_replies: false,
limit: 6,
pageLimit: 3,
autoRefresh: false,
animateIn: false,
tweetFormat: `
<div class="item-tweet">
<img src="" class="avatar" alt="">
<div class="tweet-text">
<div class="header-tweet">
<ul>
<li class="user"><a href="" class="userLink"></a></li>
<li class="username"><a href="" class="usernameLink"></a></li>
</ul>
<span class="date"></span>
</div>
<div class="main-tweet"></div>
</div>
</div>
`
}, function(tweets, tweetsDisplayed) {
$('.slider-twitter').unslider({});
});
// Scaladex autocomplete search
var scaladexUrlBase = 'https://index.scala-lang.org';
function scaladexUrl(item) {
return scaladexUrlBase + "/" + item.organization + "/" + item.repository;
}
$('#scaladex-search').keypress(function(e){
var RETURN = 13;
if (e.which == RETURN ) {
e.stopImmediatePropagation();
e.preventDefault();
window.open(scaladexUrlBase + "/search?q=" + e.target.value);
}
});
$('#scaladex-search').autocomplete({
paramName: 'q',
serviceUrl: scaladexUrlBase + '/api/autocomplete',
dataType: 'json',
transformResult: function(response) {
return {
suggestions: $.map(response, function(dataItem) {
return {
value: dataItem.organization + " / " + dataItem.repository,
data: dataItem
};
})
};
},
noCache: true,
onSelect: function (suggestion) {
window.open(scaladexUrl(suggestion.data), '_blank');
},
formatResult: function(suggestion){
var item = suggestion.data;
var url = scaladexUrl(item);
var title = item.organization + " / " + item.repository;
return '<a href="' + url + '">' + '\n' +
' <p>' + title + '</p>' + '\n' +
' <span>' + '\n' +
item.description
' </span>' + '\n' +
'</a>';
}
});
// TOC:
$(document).ready(function() {
if ($("#sidebar-toc").length) {
$('#sidebar-toc').toc({exclude: 'h1, h5, h6', context: '.inner-box', autoId: true, numerate: false});
toggleStickyToc();
}
})
$(window).resize(function() {
toggleStickyToc();
});
var toggleStickyToc = function() {
if ($("#sidebar-toc").length) {
if ($(window).width() <= 992) {
$(".sidebar-toc-wrapper").unstick();
} else {
$(".sidebar-toc-wrapper").sticky({
topSpacing: 0,
bottomSpacing: 500
});
}
}
}
// Blog search
$(document).ready(function() {
if ($("#blog-search-bar").length) {
SimpleJekyllSearch({
searchInput: document.getElementById('blog-search-bar'),
resultsContainer: document.getElementById('result-container'),
json: '/resources/json/search.json',
searchResultTemplate: '<li><a href="{url}">{title}</a></li>',
limit: 5,
});
$("#blog-search-bar").on("change paste keyup", function () {
if ($(this).val()) {
$("#result-container").show();
} else {
$("#result-container").hide();
}
});
}
});
// Scala in the browser
$(document).ready(function() {
if ($("#scastie-textarea").length) {
var editor =
CodeMirror.fromTextArea(
document.getElementById("scastie-textarea"),
{
// lineNumbers: false,
matchBrackets: true,
theme: "monokai",
mode: "text/x-scala",
autoRefresh: true,
fixedGutter: false,
extraKeys: {
'Ctrl-Enter': 'run',
'Cmd-Enter': 'run'
}
}
);
editor.setSize("100%", ($("#scastie-code-container").height()));
var codeSnippet = "List(\"Hello\", \"World\").mkString(\"\", \", \", \"!\")";
editor.getDoc().setValue(codeSnippet);
editor.refresh();
function run(){
var scastieBaseUrl = "https://scastie.scala-lang.org";
$.ajax(
{
type: "POST",
url: scastieBaseUrl + '/scala-lang',
data: editor.getDoc().getValue(),
success: function(url) {
window.open(scastieBaseUrl + "/" + url);
},
// otherwise it's considered a popup
async: false
}
)
}
$('.btn-run').click(run);
CodeMirror.commands.run = run;
}
});
// OS detection
function getOS() {
var osname = "linux";
if (navigator.appVersion.indexOf("Win") != -1) osname = "windows";
if (navigator.appVersion.indexOf("Mac") != -1) osname = "macos";
if (navigator.appVersion.indexOf("Linux") != -1) osname = "linux";
if (navigator.appVersion.indexOf("X11") != -1) osname = "unix";
return osname;
}
$(document).ready(function() {
// Get current year and put it in span, used on /license page
if ($(".current-year").length) {
var currYear = new Date().getFullYear();
$(".current-year").text(currYear);
}
var os = getOS();
if (os == "Unknown OS") os = "UNIX";
var osLabel = os.replace(/\s/g, '').toLowerCase();
// Do not do any of the following if we're not on a download page
// Otherwise a TypeError is raised and disables all other scripts on the page
if ($("#download-binaries").length == 0)
return;
/*$("#download-button, #getting-started-popup").click(function() {
$("#getting-started-popup").toggleClass("open");
});*/
var anchor = document.getElementById("#link-main-unixsys");
if (os == "windows") {
anchor = document.getElementById("#link-main-windows");
}
if (anchor == null) anchor = document.getElementById("#link-main-one4all");
var link = anchor.getAttribute("href");
$("#download-binaries").attr("href", link).addClass(osLabel);
$("#users-os").text(os);
});
$(document).ready(function() {
// for each code snippet area, find the copy button,
// and add a click listener that will copy text from
// the code area to the clipboard
$(".code-snippet-area").each(function() {
var area = this;
$(area).children(".code-snippet-buttons").children("button.copy-button").click(function () {
var code = $(area).children(".code-snippet-display").children("code").text();
window.navigator.clipboard.writeText(code);
});
});
});
$(document).ready(function () {
if ($(".main-download").length) {
var os = getOS();
var stepOneContent = $("#stepOne-" + os).html();
$("#download-step-one").html(stepOneContent);
}
});
$(document).ready(function () {
// click the get-started tab corresponding to the users OS.
if ($(".main-download").length) {
var os = getOS();
if (os === 'unix') {
os = 'linux';
}
$("#install-cs-setup-tabs").find('input[data-target=' + os + ']').prop("checked", true);
}
});
$(document).ready(function () {
// set up automatic switching of code carousel
$(".code-carousel").each(function () {
var carousel = this;
var inputs = [];
$(carousel).children("input.code-carousel_control").each(function () {
inputs.push(this);
});
// if there is more than one section, set up automatic switching
if (inputs.length > 1) {
var cancelled = false;
var index = inputs.findIndex(input => input.checked);
// switch every 8 seconds while the page is visible and not cancelled
const intervalHandle = setInterval(() => {
if (!document.hidden && !cancelled) {
const nextIndex = (index + 1) % inputs.length;
inputs[nextIndex].checked = true;
index = nextIndex;
}
}, 8000);
carousel.addEventListener("click", function cancelTicker() {
carousel.removeEventListener("click", cancelTicker);
cancelled = true;
clearInterval(intervalHandle);
});
}
});
});
var image = { width: 1680, height: 1100 };
var target = { x: 1028, y: 290 };
var pointer = $('#position-marker');
$(document).ready(updatePointer);
$(window).resize(updatePointer);
function updatePointer() {
var windowWidth = $(window).width();
var windowHeight = $(window).height();
var xScale = windowWidth / image.width;
var yScale = windowHeight / image.height;
if ($(".new-on-the-blog").css('display') === 'none') {
pointer.css('top', (target.y));
} else {
pointer.css('top', (target.y + 25));
}
pointer.css('left', (target.x) * xScale);
}
// TRAININGS
$(document).ready(function() {
var MONTH_NAMES = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ];
var MONTH_NAMES_SHORT = MONTH_NAMES.map(function (month) {
return month.substr(0, 3);
});
function getTrainings() {
function loadTrainings(url) {
return $.getJSON(url)
.then(function (data) {
// filter out extra ajax info
return data;
}, function (jqXHR, textStatus, errorThrown) {
// recover so we can keep processing
return [];
});
}
// load our trainings
var ourTrainingsPromise = loadTrainings("/resources/json/trainings.json")
.then(function (trainings) {
return trainings.map(function (training) {
var parsedTraining = Object.assign({}, training);
// parse our date
parsedTraining.when = new Date(training.when);
return parsedTraining;
}).filter(function(training) {
// make sure our date occurs in the future
return training.when >= new Date();
})
}, function (error) {
// if our data is bad recover with an empty array
return [];
});
// load the trainings from lightbend
var lightbendTrainingsPromise = loadTrainings("/resources/php/typesafe-feed-trainings.php")
.then(function(data) {
var trainings = (data && data.length > 0) ? data[0] : [];
// flatten and filter our sessions by date
var flattenedTrainings = [];
for (var i = 0; i < trainings.length; i++) {
var training = trainings[i];
for (var j = 0; j < training.sessions.length; j++) {
var session = training.sessions[j];
// make sure this session occurs in the future
var when = new Date(session.when);
if (when >= new Date()) {
flattenedTrainings.push({
title: training.title,
url: session.url,
location: session.where.toUpperCase(),
when: when,
organizer: session.organizer
});
}
}
}
return flattenedTrainings;
}, function (error) {
// if our data is bad recover with an empty array
return [];
});
// load and combine all our trainings
return $.when(ourTrainingsPromise, lightbendTrainingsPromise)
.then(function (ourTrainings, lightBendTrainings) {
return ourTrainings.concat(lightBendTrainings)
.sort(function (lhs, rhs) {
return lhs.when - rhs.when;
});
});
}
// Render training data for our front page
var frontPageTrainingList = $('.training-items-list');
// Stop early if the front page element does not exist
if (frontPageTrainingList.length !== 0) {
getTrainings()
.then(function (trainings) {
var MAX_TRAININGS = 5;
// clear out any preloaded training info
frontPageTrainingList.empty();
for (var i = 0; i < Math.min(trainings.length, MAX_TRAININGS); i++) {
var training = trainings[i];
// we should have validated our dates by this point
var month = MONTH_NAMES_SHORT[training.when.getMonth()];
var day = training.when.getDate();
// build up our training item
var content = '<a href=' + training.url + ' class="training-item card">' +
'<div class="calendar">' +
'<span>' + month + '</span>' +
'<span>' + day + '</span>' +
'</div>' +
'<div class="card-text">' +
'<h4>' + training.title + '</h4>' +
'<ul>' +
'<li class="online-courses-price">' + training.location + '</li>' +
'<li class="dot">•</li>' +
'<li class="online-courses-date">' + training.organizer + '</li>' +
'</ul>' +
'</div>' +
'</a>';
// add it to our list
frontPageTrainingList.append(content);
}
});
}
// Render training data for the training page
var pathname = window.location.pathname;
var trainingPageItemList = $('.training-events .wrap .inner-box');
// Check if we are on the training page and the training page element exists
if (pathname.startsWith("/training") && trainingPageItemList.length !== 0) {
getTrainings()
.then(function (trainings) {
var MAX_TRAININGS = 999;
// clear out any preloaded training info
trainingPageItemList.empty();
var content = "";
var i = 0;
var lastIndex = Math.min(trainings.length, MAX_TRAININGS);
while (i < lastIndex) {
// we should have validated our dates by this point
var year = trainings[i].when.getFullYear();
var month = trainings[i].when.getMonth();
// create our training list container
content += '<h3>' + MONTH_NAMES[month] + ' ' + year + '</h3>';
content += '<div class="training-list">';
while (i < lastIndex) {
var training = trainings[i];
// check if we're still in the right month
if (training.when.getMonth() !== month || training.when.getFullYear() !== year) {
break;
}
// build up our training item
content += '<a href="' + training.url + '" class="training-item">' +
'<div class="calendar">' +
'<span>' + MONTH_NAMES_SHORT[month] + '</span>' +
'<span>' + training.when.getDate() + '</span>' +
'</div>' +
'<div class="training-text">' +
'<h4>' + training.title + '</h4>' +
'<p>' + training.location + '</p>' +
'<p>' + training.organizer + '</p>' +
'</div>' +
'</a>';
i++;
}
content += '</div>'
}
trainingPageItemList.append(content);
});
}
});