-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
316 lines (262 loc) · 10.4 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
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
const $ = selector => document.querySelector(selector)
const $$ = selector => document.querySelectorAll(selector)
const loadedScripts = []
function loadScript(src) {
if (loadedScripts.includes(src)) return Promise.resolve()
return new Promise(function (resolve, reject) {
const s = document.createElement('script')
let r = false
s.type = 'text/javascript'
s.src = src
s.async = true
s.onerror = function (err) {
reject(err, s)
}
s.onload = s.onreadystatechange = function () {
// console.log(this.readyState); // uncomment this line to see which ready states are called.
if (!r && (!this.readyState || this.readyState === 'complete')) {
r = true
loadedScripts.push(src)
resolve()
}
}
const t = document.getElementsByTagName('script')[0]
t.parentElement.insertBefore(s, t)
})
}
// youtube functionality
function createYoutubeFrame(id) {
const html =
"<div id='lightbox'><a href='#'><svg width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='#fff' stroke-width='1' stroke-linecap='square' stroke-linejoin='arcs'><line x1='18' y1='6' x2='6' y2='18'></line><line x1='6' y1='6' x2='18' y2='18'></line></svg></a> <section> <div> <iframe src='https://www.youtube.com/embed/" +
id +
"?autoplay=1' width='560' height='315' frameborder='0' allow='accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture' allowfullscreen></iframe></div></section></div>"
const fragment = document.createRange().createContextualFragment(html)
document.body.appendChild(fragment)
$('#lightbox a').addEventListener(
'click',
function (e) {
e.preventDefault()
const lightbox = $('#lightbox')
lightbox.parentNode.removeChild(lightbox)
},
{ once: true }
)
}
$$('.youtube-link').forEach(function (link) {
link.addEventListener('click', function (e) {
e.preventDefault()
const id = this.getAttribute('data-id')
createYoutubeFrame(id)
})
})
class LiteYTEmbed extends window.HTMLElement {
async connectedCallback() {
this.videoId = this.getAttribute('videoid')
let playBtnEl = this.querySelector('.lty-playbtn')
// A label for the button takes priority over a [playlabel] attribute on the custom-element
this.playLabel = (playBtnEl && playBtnEl.textContent.trim()) || this.getAttribute('playlabel') || 'Play'
const isWebpSupported = await LiteYTEmbed.checkWebPSupport()
this.posterUrl = isWebpSupported
? `https://i.ytimg.com/vi_webp/${this.videoId}/hqdefault.webp`
: `https://i.ytimg.com/vi/${this.videoId}/hqdefault.jpg`
// Warm the connection for the poster image
LiteYTEmbed.addPrefetch('preload', this.posterUrl, 'image')
this.style.backgroundImage = `url("${this.posterUrl}")`
// Set up play button, and its visually hidden label
if (!playBtnEl) {
playBtnEl = document.createElement('button')
playBtnEl.type = 'button'
playBtnEl.classList.add('lty-playbtn')
this.append(playBtnEl)
}
if (!playBtnEl.textContent) {
const playBtnLabelEl = document.createElement('span')
playBtnLabelEl.className = 'lyt-visually-hidden'
playBtnLabelEl.textContent = this.playLabel
playBtnEl.append(playBtnLabelEl)
}
// On hover (or tap), warm up the TCP connections we're (likely) about to use.
this.addEventListener('pointerover', LiteYTEmbed.warmConnections, { once: true })
// Once the user clicks, add the real iframe and drop our play button
// TODO: In the future we could be like amp-youtube and silently swap in the iframe during idle time
// We'd want to only do this for in-viewport or near-viewport ones: https://github.com/ampproject/amphtml/pull/5003
this.addEventListener('click', e => this.addIframe())
}
static addPrefetch(kind, url, as) {
const linkEl = document.createElement('link')
linkEl.rel = kind
linkEl.href = url
if (as) {
linkEl.as = as
}
document.head.append(linkEl)
}
/**
* Check WebP support for the user
*/
static checkWebPSupport() {
if (typeof LiteYTEmbed.hasWebPSupport !== 'undefined') { return Promise.resolve(LiteYTEmbed.hasWebPSupport) }
return new Promise(resolve => {
const resolveAndSaveValue = value => {
LiteYTEmbed.hasWebPSupport = value
resolve(value)
}
const img = new window.Image()
img.onload = () => resolveAndSaveValue(true)
img.onerror = () => resolveAndSaveValue(false)
img.src = 'data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAAAfQ//73v/+BiOh/AAA='
})
}
/**
* Begin pre-connecting to warm up the iframe load
* Since the embed's network requests load within its iframe,
* preload/prefetch'ing them outside the iframe will only cause double-downloads.
* So, the best we can do is warm up a few connections to origins that are in the critical path.
*
* Maybe `<link rel=preload as=document>` would work, but it's unsupported: http://crbug.com/593267
* But TBH, I don't think it'll happen soon with Site Isolation and split caches adding serious complexity.
*/
static warmConnections() {
if (LiteYTEmbed.preconnected) return
// The iframe document and most of its subresources come right off youtube.com
LiteYTEmbed.addPrefetch('preconnect', 'https://www.youtube-nocookie.com')
// The botguard script is fetched off from google.com
LiteYTEmbed.addPrefetch('preconnect', 'https://www.google.com')
// Not certain if these ad related domains are in the critical path. Could verify with domain-specific throttling.
LiteYTEmbed.addPrefetch('preconnect', 'https://googleads.g.doubleclick.net')
LiteYTEmbed.addPrefetch('preconnect', 'https://static.doubleclick.net')
LiteYTEmbed.preconnected = true
}
addIframe() {
const params = new URLSearchParams(this.getAttribute('params') || [])
params.append('autoplay', '1')
const iframeEl = document.createElement('iframe')
iframeEl.width = 560
iframeEl.height = 315
// No encoding necessary as [title] is safe. https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html#:~:text=Safe%20HTML%20Attributes%20include
iframeEl.title = this.playLabel
iframeEl.allow = 'accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture'
iframeEl.allowFullscreen = true
// AFAIK, the encoding here isn't necessary for XSS, but we'll do it only because this is a URL
// https://stackoverflow.com/q/64959723/89484
iframeEl.src = `https://www.youtube-nocookie.com/embed/${encodeURIComponent(this.videoId)}?${params.toString()}`
this.append(iframeEl)
this.classList.add('lyt-activated')
// Set focus for a11y
this.querySelector('iframe').focus()
}
}
// Register custome element
window.customElements.define('lite-youtube', LiteYTEmbed)
// Show share only when needed
const intersectionObserverOptions = {
rootMargin: '0rem',
threshold: 1.0
}
const $share = document.getElementById('share')
if ($share) {
const $articlePagination = document.getElementById('article-pagination')
const $footer = $('footer')
const elementToObserve = $articlePagination || $footer
const onIntersect = function (entries) {
const [entry] = entries
const hide = entry.boundingClientRect.top <= 0 || entry.isIntersecting
$share.classList.toggle('u-none', hide)
}
const observer = new window.IntersectionObserver(
onIntersect,
intersectionObserverOptions
)
observer.observe(elementToObserve)
}
const ALGOLIA_APPLICATION_ID = 'QK9VV9YO5F'
const ALGOLIA_SEARCH_ONLY_API_KEY = '247bb355c786b6e9f528bc382cab3039'
let algoliaIndex
const $form = $('.ais-SearchBox-form')
const $input = $('.ais-SearchBox-input')
const $reset = $('.ais-SearchBox-reset')
const $hits = $('#hits')
function getAlgoliaIndex() {
if (algoliaIndex) return algoliaIndex
console.log('🚀 ~ file: scripts.js ~ line 222 ~ getAlgoliaIndex ~ algoliaIndex', algoliaIndex)
const algoliaClient = window.algoliasearch(ALGOLIA_APPLICATION_ID, ALGOLIA_SEARCH_ONLY_API_KEY, {
_useRequestCache: true
})
algoliaIndex = algoliaClient.initIndex('prod_blog_content')
return algoliaIndex
}
$form.addEventListener('submit', function (e) {
e.preventDefault()
})
$reset.addEventListener('click', function (e) {
$input.value = ''
$hits.innerHTML = ''
})
$input.addEventListener('input', async function (e) {
await loadScript('https://cdn.jsdelivr.net/npm/[email protected]/dist/algoliasearch-lite.umd.js')
const { value } = e.target
if (value === '') {
$hits.innerHTML = ''
$reset.setAttribute('hidden')
}
$reset.removeAttribute('hidden')
$hits.removeAttribute('hidden')
const algoliaIndex = getAlgoliaIndex()
algoliaIndex.search(value, {
hitsPerPage: 3
}).then(({ hits }) => {
let hitsHtml = ''
hits.forEach(hit => {
const {
link,
_highlightResult: {
title: { value: title },
description: { value: description }
}
} = hit
hitsHtml += `
<li class='ais-Hits-item'>
<a href='${link}'>
${title}
<div>
<small>${description}</small>
</div>
</a>
</li>`
})
$hits.innerHTML = hitsHtml
})
})
// Table Of Contents script
function initTableOfContents() {
const firstTableOfContentsElement = $('#TableOfContents-container li')
if (!firstTableOfContentsElement) return null
// activate first element of table of contents
firstTableOfContentsElement.classList.add('active')
// get all links from table of contents
const links = $$('#TableOfContents-container li a')
const changeBgLinks = entries => {
entries.forEach(entry => {
const { target, isIntersecting, intersectionRatio } = entry
if (isIntersecting && intersectionRatio >= 0.5) {
const id = target.getAttribute('id')
$('#TableOfContents-container li.active').classList.remove('active')
$(`nav li a[href="#${id}"]`).parentElement.classList.add('active')
links.forEach(link => {
link.addEventListener('click', (e) => {
$('#TableOfContents-container li.active').classList.remove('active')
link.parentElement.classList.add('active')
})
})
}
})
}
const options = {
threshold: 0.5,
rootMargin: '3.125rem 0rem -55% 0rem'
}
const observer = new window.IntersectionObserver(changeBgLinks, options)
const articleTitles = $$('#article-content h2')
articleTitles.forEach(section => observer.observe(section))
}
initTableOfContents()