Bläddra i källkod

Add lite-youtube-embed

customisations
alemart 6 månader sedan
förälder
incheckning
5047a176a0
2 ändrade filer med 334 tillägg och 0 borttagningar
  1. 239
    0
      docs_overrides/js/lite-yt-embed.js
  2. 95
    0
      docs_overrides/style/lite-yt-embed.css

+ 239
- 0
docs_overrides/js/lite-yt-embed.js Visa fil

@@ -0,0 +1,239 @@
1
+/**
2
+ * A lightweight youtube embed. Still should feel the same to the user, just MUCH faster to initialize and paint.
3
+ *
4
+ * Thx to these as the inspiration
5
+ *   https://storage.googleapis.com/amp-vs-non-amp/youtube-lazy.html
6
+ *   https://autoplay-youtube-player.glitch.me/
7
+ *
8
+ * Once built it, I also found these:
9
+ *   https://github.com/ampproject/amphtml/blob/master/extensions/amp-youtube (👍👍)
10
+ *   https://github.com/Daugilas/lazyYT
11
+ *   https://github.com/vb/lazyframe
12
+ */
13
+class LiteYTEmbed extends HTMLElement {
14
+    connectedCallback() {
15
+        this.videoId = this.getAttribute('videoid');
16
+
17
+        let playBtnEl = this.querySelector('.lyt-playbtn,.lty-playbtn');
18
+        // A label for the button takes priority over a [playlabel] attribute on the custom-element
19
+        this.playLabel = (playBtnEl && playBtnEl.textContent.trim()) || this.getAttribute('playlabel') || 'Play';
20
+
21
+        this.dataset.title = this.getAttribute('title') || "";
22
+
23
+        /**
24
+         * Lo, the youtube poster image!  (aka the thumbnail, image placeholder, etc)
25
+         *
26
+         * See https://github.com/paulirish/lite-youtube-embed/blob/master/youtube-thumbnail-urls.md
27
+         */
28
+        if (!this.style.backgroundImage) {
29
+          this.style.backgroundImage = `url("https://i.ytimg.com/vi/${this.videoId}/hqdefault.jpg")`;
30
+          this.upgradePosterImage();
31
+        }
32
+
33
+        // Set up play button, and its visually hidden label
34
+        if (!playBtnEl) {
35
+            playBtnEl = document.createElement('button');
36
+            playBtnEl.type = 'button';
37
+            // Include the mispelled 'lty-' in case it's still being used. https://github.com/paulirish/lite-youtube-embed/issues/65
38
+            playBtnEl.classList.add('lyt-playbtn', 'lty-playbtn');
39
+            this.append(playBtnEl);
40
+        }
41
+        if (!playBtnEl.textContent) {
42
+            const playBtnLabelEl = document.createElement('span');
43
+            playBtnLabelEl.className = 'lyt-visually-hidden';
44
+            playBtnLabelEl.textContent = this.playLabel;
45
+            playBtnEl.append(playBtnLabelEl);
46
+        }
47
+
48
+        this.addNoscriptIframe();
49
+
50
+        // for the PE pattern, change anchor's semantics to button
51
+        if(playBtnEl.nodeName === 'A'){
52
+            playBtnEl.removeAttribute('href');
53
+            playBtnEl.setAttribute('tabindex', '0');
54
+            playBtnEl.setAttribute('role', 'button');
55
+            // fake button needs keyboard help
56
+            playBtnEl.addEventListener('keydown', e => {
57
+                if( e.key === 'Enter' || e.key === ' ' ){
58
+                    e.preventDefault();
59
+                    this.activate();
60
+                }
61
+            });
62
+        }
63
+
64
+        // On hover (or tap), warm up the TCP connections we're (likely) about to use.
65
+        this.addEventListener('pointerover', LiteYTEmbed.warmConnections, {once: true});
66
+        this.addEventListener('focusin', LiteYTEmbed.warmConnections, {once: true});
67
+
68
+        // Once the user clicks, add the real iframe and drop our play button
69
+        // TODO: In the future we could be like amp-youtube and silently swap in the iframe during idle time
70
+        //   We'd want to only do this for in-viewport or near-viewport ones: https://github.com/ampproject/amphtml/pull/5003
71
+        this.addEventListener('click', this.activate);
72
+
73
+        // Chrome & Edge desktop have no problem with the basic YouTube Embed with ?autoplay=1
74
+        // However Safari desktop and most/all mobile browsers do not successfully track the user gesture of clicking through the creation/loading of the iframe,
75
+        // so they don't autoplay automatically. Instead we must load an additional 2 sequential JS files (1KB + 165KB) (un-br) for the YT Player API
76
+        // TODO: Try loading the the YT API in parallel with our iframe and then attaching/playing it. #82
77
+        this.needsYTApi = this.hasAttribute("js-api") || navigator.vendor.includes('Apple') || navigator.userAgent.includes('Mobi');
78
+    }
79
+
80
+    /**
81
+     * Add a <link rel={preload | preconnect} ...> to the head
82
+     */
83
+    static addPrefetch(kind, url, as) {
84
+        const linkEl = document.createElement('link');
85
+        linkEl.rel = kind;
86
+        linkEl.href = url;
87
+        if (as) {
88
+            linkEl.as = as;
89
+        }
90
+        document.head.append(linkEl);
91
+    }
92
+
93
+    /**
94
+     * Begin pre-connecting to warm up the iframe load
95
+     * Since the embed's network requests load within its iframe,
96
+     *   preload/prefetch'ing them outside the iframe will only cause double-downloads.
97
+     * So, the best we can do is warm up a few connections to origins that are in the critical path.
98
+     *
99
+     * Maybe `<link rel=preload as=document>` would work, but it's unsupported: http://crbug.com/593267
100
+     * But TBH, I don't think it'll happen soon with Site Isolation and split caches adding serious complexity.
101
+     */
102
+    static warmConnections() {
103
+        if (LiteYTEmbed.preconnected) return;
104
+
105
+        // The iframe document and most of its subresources come right off youtube.com
106
+        LiteYTEmbed.addPrefetch('preconnect', 'https://www.youtube-nocookie.com');
107
+        // The botguard script is fetched off from google.com
108
+        LiteYTEmbed.addPrefetch('preconnect', 'https://www.google.com');
109
+
110
+        // Not certain if these ad related domains are in the critical path. Could verify with domain-specific throttling.
111
+        LiteYTEmbed.addPrefetch('preconnect', 'https://googleads.g.doubleclick.net');
112
+        LiteYTEmbed.addPrefetch('preconnect', 'https://static.doubleclick.net');
113
+
114
+        LiteYTEmbed.preconnected = true;
115
+    }
116
+
117
+    fetchYTPlayerApi() {
118
+        if (window.YT || (window.YT && window.YT.Player)) return;
119
+
120
+        this.ytApiPromise = new Promise((res, rej) => {
121
+            var el = document.createElement('script');
122
+            el.src = 'https://www.youtube.com/iframe_api';
123
+            el.async = true;
124
+            el.onload = _ => {
125
+                YT.ready(res);
126
+            };
127
+            el.onerror = rej;
128
+            this.append(el);
129
+        });
130
+    }
131
+
132
+    /** Return the YT Player API instance. (Public L-YT-E API) */
133
+    async getYTPlayer() {
134
+        if(!this.playerPromise) {
135
+            await this.activate();
136
+        }
137
+
138
+        return this.playerPromise;
139
+    }
140
+
141
+    async addYTPlayerIframe() {
142
+        this.fetchYTPlayerApi();
143
+        await this.ytApiPromise;
144
+
145
+        const videoPlaceholderEl = document.createElement('div')
146
+        this.append(videoPlaceholderEl);
147
+
148
+        const paramsObj = Object.fromEntries(this.getParams().entries());
149
+
150
+        this.playerPromise = new Promise(resolve => {
151
+            let player = new YT.Player(videoPlaceholderEl, {
152
+                width: '100%',
153
+                videoId: this.videoId,
154
+                playerVars: paramsObj,
155
+                events: {
156
+                    'onReady': event => {
157
+                        event.target.playVideo();
158
+                        resolve(player);
159
+                    }
160
+                }
161
+            });
162
+        });
163
+    }
164
+
165
+    // Add the iframe within <noscript> for indexability discoverability. See https://github.com/paulirish/lite-youtube-embed/issues/105
166
+    addNoscriptIframe() {
167
+        const iframeEl = this.createBasicIframe();
168
+        const noscriptEl = document.createElement('noscript');
169
+        // Appending into noscript isn't equivalant for mysterious reasons: https://html.spec.whatwg.org/multipage/scripting.html#the-noscript-element
170
+        noscriptEl.innerHTML = iframeEl.outerHTML;
171
+        this.append(noscriptEl);
172
+    }
173
+
174
+    getParams() {
175
+        const params = new URLSearchParams(this.getAttribute('params') || []);
176
+        params.append('autoplay', '1');
177
+        params.append('playsinline', '1');
178
+        return params;
179
+    }
180
+
181
+    async activate(){
182
+        if (this.classList.contains('lyt-activated')) return;
183
+        this.classList.add('lyt-activated');
184
+
185
+        if (this.needsYTApi) {
186
+            return this.addYTPlayerIframe(this.getParams());
187
+        }
188
+
189
+        const iframeEl = this.createBasicIframe();
190
+        this.append(iframeEl);
191
+
192
+        // Set focus for a11y
193
+        iframeEl.focus();
194
+    }
195
+
196
+    createBasicIframe(){
197
+        const iframeEl = document.createElement('iframe');
198
+        iframeEl.width = 560;
199
+        iframeEl.height = 315;
200
+        // No encoding necessary as [title] is safe. https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html#:~:text=Safe%20HTML%20Attributes%20include
201
+        iframeEl.title = this.playLabel;
202
+        iframeEl.allow = 'accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture';
203
+        iframeEl.allowFullscreen = true;
204
+        // AFAIK, the encoding here isn't necessary for XSS, but we'll do it only because this is a URL
205
+        // https://stackoverflow.com/q/64959723/89484
206
+        iframeEl.src = `https://www.youtube-nocookie.com/embed/${encodeURIComponent(this.videoId)}?${this.getParams().toString()}`;
207
+        return iframeEl;
208
+    }
209
+
210
+    /**
211
+     * In the spirit of the `lowsrc` attribute and progressive JPEGs, we'll upgrade the reliable
212
+     * poster image to a higher resolution one, if it's available.
213
+     * Interestingly this sddefault webp is often smaller in filesize, but we will still attempt it second
214
+     * because getting _an_ image in front of the user if our first priority.
215
+     *
216
+     * See https://github.com/paulirish/lite-youtube-embed/blob/master/youtube-thumbnail-urls.md for more details
217
+     */
218
+    upgradePosterImage() {
219
+         // Defer to reduce network contention.
220
+        setTimeout(() => {
221
+            const webpUrl = `https://i.ytimg.com/vi_webp/${this.videoId}/sddefault.webp`;
222
+            const img = new Image();
223
+            img.fetchPriority = 'low'; // low priority to reduce network contention
224
+            img.referrerpolicy = 'origin'; // Not 100% sure it's needed, but https://github.com/ampproject/amphtml/pull/3940
225
+            img.src = webpUrl;
226
+            img.onload = e => {
227
+                // A pretty ugly hack since onerror won't fire on YouTube image 404. This is (probably) due to
228
+                // Youtube's style of returning data even with a 404 status. That data is a 120x90 placeholder image.
229
+                // … per "annoying yt 404 behavior" in the .md
230
+                const noAvailablePoster = e.target.naturalHeight == 90 && e.target.naturalWidth == 120;
231
+                if (noAvailablePoster) return;
232
+
233
+                this.style.backgroundImage = `url("${webpUrl}")`;
234
+            }
235
+        }, 100);
236
+    }
237
+}
238
+// Register custom element
239
+customElements.define('lite-youtube', LiteYTEmbed);

+ 95
- 0
docs_overrides/style/lite-yt-embed.css Visa fil

@@ -0,0 +1,95 @@
1
+lite-youtube {
2
+    background-color: #000;
3
+    position: relative;
4
+    display: block;
5
+    contain: content;
6
+    background-position: center center;
7
+    background-size: cover;
8
+    cursor: pointer;
9
+    max-width: 720px;
10
+}
11
+
12
+/* gradient */
13
+lite-youtube::before {
14
+    content: attr(data-title);
15
+    display: block;
16
+    position: absolute;
17
+    top: 0;
18
+    /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
19
+    background-image: linear-gradient(180deg, rgb(0 0 0 / 67%) 0%, rgb(0 0 0 / 54%) 14%, rgb(0 0 0 / 15%) 54%, rgb(0 0 0 / 5%) 72%, rgb(0 0 0 / 0%) 94%);
20
+    height: 99px;
21
+    width: 100%;
22
+    font-family: "YouTube Noto",Roboto,Arial,Helvetica,sans-serif;
23
+    color: hsl(0deg 0% 93.33%);
24
+    text-shadow: 0 0 2px rgba(0,0,0,.5);
25
+    font-size: 18px;
26
+    padding: 25px 20px;
27
+    overflow: hidden;
28
+    white-space: nowrap;
29
+    text-overflow: ellipsis;
30
+    box-sizing: border-box;
31
+}
32
+
33
+lite-youtube:hover::before {
34
+    color: white;
35
+}
36
+
37
+/* responsive iframe with a 16:9 aspect ratio
38
+    thanks https://css-tricks.com/responsive-iframes/
39
+*/
40
+lite-youtube::after {
41
+    content: "";
42
+    display: block;
43
+    padding-bottom: calc(100% / (16 / 9));
44
+}
45
+lite-youtube > iframe {
46
+    width: 100%;
47
+    height: 100%;
48
+    position: absolute;
49
+    top: 0;
50
+    left: 0;
51
+    border: 0;
52
+}
53
+
54
+/* play button */
55
+lite-youtube > .lyt-playbtn {
56
+    display: block;
57
+    /* Make the button element cover the whole area for a large hover/click target… */
58
+    width: 100%;
59
+    height: 100%;
60
+    /* …but visually it's still the same size */
61
+    background: no-repeat center/68px 48px;
62
+    /* YT's actual play button svg */
63
+    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
64
+    position: absolute;
65
+    cursor: pointer;
66
+    z-index: 1;
67
+    filter: grayscale(100%);
68
+    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
69
+    border: 0;
70
+}
71
+
72
+lite-youtube:hover > .lyt-playbtn,
73
+lite-youtube .lyt-playbtn:focus {
74
+    filter: none;
75
+}
76
+
77
+/* Post-click styles */
78
+lite-youtube.lyt-activated {
79
+    cursor: unset;
80
+}
81
+lite-youtube.lyt-activated::before,
82
+lite-youtube.lyt-activated > .lyt-playbtn {
83
+    opacity: 0;
84
+    pointer-events: none;
85
+}
86
+
87
+.lyt-visually-hidden {
88
+    clip: rect(0 0 0 0);
89
+    clip-path: inset(50%);
90
+    height: 1px;
91
+    overflow: hidden;
92
+    position: absolute;
93
+    white-space: nowrap;
94
+    width: 1px;
95
+  }

Laddar…
Avbryt
Spara