-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcommon.js
217 lines (190 loc) · 6.69 KB
/
common.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
(function () {
initHelpers();
initHeadingAnchors();
initTableOfContents();
initSidebarScrollState();
function initHeadingAnchors () {
function anchorId (str) {
return (str || '').replace(/[^-a-zA-Z0-9,&\s]+/g, '')
.replace(/-/g, '_')
.replace(/\s+/g, ' ')
.trim()
.replace(/\s/g, '_')
.trim()
.toLowerCase();
}
var anchorHeadingsSelector = [
'.copy__wrap > table[id] tr th:first-child',
'.copy__wrap > table tr[id] td:first-child'
].join(',');
var tableIds = {};
var rowIds = {};
var content = $('.content');
if (content) {
var tablesEls = $$('.content .copy__wrap > table');
tablesEls.forEach(function (tableEl, idx) {
// Find the closest sibling section heading.
var siblingEl = tableEl;
var tableHeading = '';
while (siblingEl) {
siblingEl = siblingEl.previousElementSibling;
if (siblingEl && siblingEl.nodeName === 'H2') {
tableHeading = siblingEl.textContent;
break;
}
}
var tableId = anchorId(tableHeading);
// If this `id` has already been used, append at `-{num}` (starting at `-2`).
if (tableIds[tableId]) {
tableId += ++tableIds[tableId];
} else {
tableIds[tableId] = 1;
}
tableEl.setAttribute('id', tableId);
$$('tr', tableEl).forEach(function (trEl) {
var td = trEl.querySelector('td');
if (!td) { return; }
var trId = anchorId(td.textContent);
// If this `id` has already been used, append at `-{num}` (starting at `-2`).
if (rowIds[trId]) {
trId += '-' + (++rowIds[trId])
} else {
rowIds[trId] = 1;
}
trEl.setAttribute('id', tableId + '_' + trId);
});
});
content.addEventListener('click', function (e) {
var el = e.target;
if (el.matches && el.matches(anchorHeadingsSelector)) {
// Use the click target if it has an `id` (or a parent with an `id`).
var closestEl = el.closest('[id]');
if (!closestEl) { return; }
window.location.hash = '#' + closestEl.id;
}
});
}
}
function initTableOfContents () {
if (!document.querySelector('#table-of-contents')) { return; }
// Sort sections by their offsets and grab reference to table of contents link.
var sectionScrolls = [];
$$('.content h2, .content h3, .anchor-heading').forEach(function (heading) {
var link = document.querySelector('#table-of-contents [href="#' + heading.getAttribute('id') + '"]');
if (!link) { return; }
sectionScrolls.push([heading.offsetTop, link]);
});
if (!sectionScrolls.length) { return; }
sectionScrolls.sort(function (a, b) {
if (a[0] < b[0]) { return -1; }
if (a[0] > b[0]) { return 1; }
return 0;
});
function highlightHeading (scrollPos) {
// Account for heading size.
scrollPos += 40;
// Reset.
for (var i = 0; i < sectionScrolls.length; i++) {
sectionScrolls[i][1].classList.remove('current');
}
// Highlight active section's heading link.
var found = false;
for (i = 0; i < sectionScrolls.length; i++) {
if (scrollPos >= sectionScrolls[i][0] &&
(!sectionScrolls[i + 1] || scrollPos < sectionScrolls[i + 1][0])) {
sectionScrolls[i][1].classList.add('current');
found = true;
}
}
// Default to top link.
if (!found) {
sectionScrolls[0][1].classList.add('current');
}
}
// Throttle scroll listener.
var scrollPos = 0;
var ticking = false;
window.addEventListener('scroll', function () {
scrollPos = window.scrollY;
if (!ticking) {
window.requestAnimationFrame(function () {
highlightHeading(scrollPos);
ticking = false;
});
}
ticking = true;
});
sectionScrolls[0][1].classList.add('current');
}
function initSidebarScrollState () {
// Sidebar scroll state.
var sidebarEl = document.querySelector('#sidebar');
var sidebarLinks = document.querySelectorAll('#sidebar a');
if (sidebarEl) {
// Add listeners to links to tell if user is navigating away from aframe.io.
var sidebarLinkClicked = false;
function markSidebarLinkClicked () { sidebarLinkClicked = true; }
for (var i = 0; i < sidebarLinks.length; i++) {
sidebarLinks[i].addEventListener('click', markSidebarLinkClicked);
}
// Store scroll state in localStorage.
var lsKey = 'sidebar-scroll';
var scrollTop = localStorage.getItem(lsKey);
if (scrollTop) { sidebarEl.scrollTop = scrollTop; }
sidebarEl.style.visibility = 'visible';
sidebarEl.addEventListener('scroll', function () {
localStorage.setItem(lsKey, sidebarEl.scrollTop);
});
// Clear scroll state if navigating away to different site.
window.addEventListener('beforeunload', function () {
if (sidebarLinkClicked) { return; }
localStorage.setItem(lsKey, null);
});
}
}
function initHelpers () {
/**
* Wraps `querySelector` like jQuery's `$`.
*
* @param {String|Element} sel CSS selector to match an element.
* @param {Element=} parent Parent from which to query.
* @returns {Element} Element matched by selector.
*/
window.$ = function (sel, parent) {
var el = sel;
if (sel && typeof sel === 'string') {
el = (parent || document).querySelector(sel);
}
return el;
};
/**
* Wraps `querySelectorAll` like jQuery's `$`.
*
* @param {String|Element} sel CSS selector to match elements.
* @param {Element=} parent Parent from which to query.
* @returns {Array} Array of elements matched by selector.
*/
window.$$ = function (sel, parent) {
if (Array.isArray(sel)) { return sel; }
var els = sel;
if (sel && typeof sel === 'string') {
els = (parent || document).querySelectorAll(sel);
}
return toArray(els);
};
/**
* Turns an array-like object into an array.
*
* @param {String|Element} obj CSS selector to match elements.
* @param {Array|NamedNodeMap|NodeList|HTMLCollection} arr An array-like object.
* @returns {Array} Array of elements matched by selector.
*/
var toArray = function (obj) {
if (Array.isArray(obj)) { return obj; }
if (typeof obj === 'object' && typeof obj.length === 'number') {
return Array.prototype.slice.call(obj);
}
return [obj];
};
}
})();