Gathering detailed insights and metrics for @yapplejack/react-lite-youtube-embed
Gathering detailed insights and metrics for @yapplejack/react-lite-youtube-embed
Gathering detailed insights and metrics for @yapplejack/react-lite-youtube-embed
Gathering detailed insights and metrics for @yapplejack/react-lite-youtube-embed
react-lite-youtube-embed
A private by default, faster and cleaner YouTube embed component for React applications
@next/third-parties
`@next/third-parties` is a collection of components and utilities that can be used to efficiently load third-party libraries into your Next.js application.
lite-youtube-embed
A faster youtube embed.
vue-lite-youtube-embed
A private by default, faster and cleaner YouTube embed component for Vue applications.
📺 < A private by default, faster and cleaner YouTube embed component for React applications />
npm install @yapplejack/react-lite-youtube-embed
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
208 Commits
1 Branches
1 Contributors
Updated on 26 Dec 2023
Minified
Minified + Gzipped
TypeScript (73.3%)
CSS (26.7%)
Cumulative downloads
Total Downloads
Last day
0%
3
Compared to previous day
Last week
50%
3
Compared to previous week
Last month
-58.3%
15
Compared to previous month
Last year
0%
353
Compared to previous year
27
A private by default, faster and cleaner YouTube embed component for React applications
Developed in 🇧🇷 Brazil
Port of Paul Irish's Lite YouTube Embed to a React Component. Provide videos with a supercharged focus on visual performance. The gain is not the same as the web component of the original implementation but saves some requests and gives you more control of the embed visual. An "Adaptive Loading" way to handle iframes for YouTube.
The biggest change is, from 2.0.0 this component is private by default. Meaning that will not preconnect with the ad network from Google and connect to YouTube via the Privacy-Enhanced Mode using https://www.youtube-nocookie.com.
Use your favorite package manager:
1yarn add react-lite-youtube-embed
1npm install react-lite-youtube-embed -S
1import React from "react"; 2import { render } from "react-dom"; 3import LiteYouTubeEmbed from 'react-lite-youtube-embed'; 4import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css' 5 6const App = () => ( 7 <div> 8 <LiteYouTubeEmbed 9 id="L2vS_050c-M" 10 title="What’s new in Material Design for the web (Chrome Dev Summit 2019)" 11 /> 12 </div> 13); 14 15render(<App />, document.getElementById("root"));
And that's it.
1const App = () => ( 2 <div> 3 <LiteYouTubeEmbed 4 id="L2vS_050c-M" // Default none, id of the video or playlist 5 adNetwork={true} // Default true, to preconnect or not to doubleclick addresses called by YouTube iframe (the adnetwork from Google) 6 params="" // any params you want to pass to the URL, assume we already had '&' and pass your parameters string 7 playlist={false} // Use true when your ID be from a playlist 8 playlistCoverId="L2vS_050c-M" // The ids for playlists did not bring the cover in a pattern to render so you'll need pick up a video from the playlist (or in fact, whatever id) and use to render the cover. There's a programmatic way to get the cover from YouTube API v3 but the aim of this component is do not make any another call and reduce requests and bandwidth usage as much as possibe 9 poster="hqdefault" // Defines the image size to call on first render as poster image. Possible values are "default","mqdefault", "hqdefault", "sddefault" and "maxresdefault". Default value for this prop is "hqdefault". Please be aware that "sddefault" and "maxresdefault", high resolution images are not always avaialble for every video. See: https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api 10 title="YouTube Embed" // a11y, always provide a title for iFrames: https://dequeuniversity.com/tips/provide-iframe-titles Help the web be accessible ;) 11 noCookie={true} // Default false, connect to YouTube via the Privacy-Enhanced Mode using https://www.youtube-nocookie.com 12 ref={myRef} // Use this ref prop to programmatically access the underlying iframe element 13 /> 14 </div> 15);
React Lite YouTube Embed comes with all original styles from Paul Irish's Lite YouTube Embed but you can customize them as you wish passing as a props.
1const App = () => ( 2 <div> 3 <LiteYouTubeEmbed 4 id="L2vS_050c-M" 5 activeClass="lyt-activated" // Default as "lyt-activated", gives control to wrapper once clicked 6 iframeClass="" // Default none, gives control to add a class to iframe element itself 7 playerClass="lty-playbtn" // Default as "lty-playbtn" to control player button styles 8 wrapperClass="yt-lite" // Default as "yt-lite" for the div wrapping the area, the most important class and needs extra attention, please refer to LiteYouTubeEmbed.css for a reference. 9 /> 10 </div> 11);
To play nice with new frameworks like NextJS, we now don't import the .css
necessary. Since version 2.0.9
you can pass custom aspect-ratio props, so be aware of any changes needed in the CSS options. Instead use now you have three options:
Place the necessary CSS in your Global CSS file method of preference
1.yt-lite { 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} 10 11/* gradient */ 12.yt-lite::before { 13 content: ''; 14 display: block; 15 position: absolute; 16 top: 0; 17 background-position: top; 18 background-repeat: repeat-x; 19 height: 60px; 20 padding-bottom: 50px; 21 width: 100%; 22 transition: all 0.2s cubic-bezier(0, 0, 0.2, 1); 23} 24 25/* responsive iframe with a 16:9 aspect ratio 26 thanks https://css-tricks.com/responsive-iframes/ 27*/ 28.yt-lite::after { 29 content: ""; 30 display: block; 31 padding-bottom: calc(100% / (16 / 9)); 32} 33.yt-lite > iframe { 34 width: 100%; 35 height: 100%; 36 position: absolute; 37 top: 0; 38 left: 0; 39} 40 41/* play button */ 42.yt-lite > .lty-playbtn { 43 width: 65px; 44 height: 46px; 45 z-index: 1; 46 opacity: 0.8; 47 border: none; 48 background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20version%3D%221.1%22%20id%3D%22YouTube_Icon%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201024%20721%22%20enable-background%3D%22new%200%200%201024%20721%22%20xml%3Aspace%3D%22preserve%22%3E%3Cscript%20xmlns%3D%22%22%3E%0A%20%20%20%20try%20%7B%0A%20%20%20%20%20%20Object.defineProperty(navigator%2C%20%22globalPrivacyControl%22%2C%20%7B%0A%20%20%20%20%20%20%20%20value%3A%20false%2C%0A%20%20%20%20%20%20%20%20configurable%3A%20false%2C%0A%20%20%20%20%20%20%20%20writable%3A%20false%0A%20%20%20%20%20%20%7D)%3B%0A%20%20%20%20%20%20document.currentScript.parentElement.removeChild(document.currentScript)%3B%0A%20%20%20%20%7D%20catch(e)%20%7B%7D%3B%0A%20%20%20%20%20%20%3C%2Fscript%3E%0A%3Cpath%20id%3D%22Triangle%22%20fill%3D%22%23FFFFFF%22%20d%3D%22M407%2C493l276-143L407%2C206V493z%22%2F%3E%0A%3Cpath%20id%3D%22The_Sharpness%22%20opacity%3D%220.12%22%20fill%3D%22%23420000%22%20d%3D%22M407%2C206l242%2C161.6l34-17.6L407%2C206z%22%2F%3E%0A%3Cg%20id%3D%22Lozenge%22%3E%0A%09%3Cg%3E%0A%09%09%0A%09%09%09%3ClinearGradient%20id%3D%22SVGID_1_%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22512.5%22%20y1%3D%22719.7%22%20x2%3D%22512.5%22%20y2%3D%221.2%22%20gradientTransform%3D%22matrix(1%200%200%20-1%200%20721)%22%3E%0A%09%09%09%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3A%23E52D27%22%2F%3E%0A%09%09%09%3Cstop%20offset%3D%221%22%20style%3D%22stop-color%3A%23BF171D%22%2F%3E%0A%09%09%3C%2FlinearGradient%3E%0A%09%09%3Cpath%20fill%3D%22url(%23SVGID_1_)%22%20d%3D%22M1013%2C156.3c0%2C0-10-70.4-40.6-101.4C933.6%2C14.2%2C890%2C14%2C870.1%2C11.6C727.1%2C1.3%2C512.7%2C1.3%2C512.7%2C1.3%20%20%20%20h-0.4c0%2C0-214.4%2C0-357.4%2C10.3C135%2C14%2C91.4%2C14.2%2C52.6%2C54.9C22%2C85.9%2C12%2C156.3%2C12%2C156.3S1.8%2C238.9%2C1.8%2C321.6v77.5%20%20%20%20C1.8%2C481.8%2C12%2C564.4%2C12%2C564.4s10%2C70.4%2C40.6%2C101.4c38.9%2C40.7%2C89.9%2C39.4%2C112.6%2C43.7c81.7%2C7.8%2C347.3%2C10.3%2C347.3%2C10.3%20%20%20%20s214.6-0.3%2C357.6-10.7c20-2.4%2C63.5-2.6%2C102.3-43.3c30.6-31%2C40.6-101.4%2C40.6-101.4s10.2-82.7%2C10.2-165.3v-77.5%20%20%20%20C1023.2%2C238.9%2C1013%2C156.3%2C1013%2C156.3z%20M407%2C493V206l276%2C144L407%2C493z%22%2F%3E%0A%09%3C%2Fg%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E"); 49 transition: all 0.2s cubic-bezier(0, 0, 0.2, 1); 50} 51.yt-lite:hover > .lty-playbtn { 52 opacity: 1; 53} 54/* play button triangle */ 55.yt-lite > .lty-playbtn:before { 56 content: ''; 57 border-style: solid; 58 border-width: 11px 0 11px 19px; 59 border-color: transparent transparent transparent #fff; 60} 61 62.yt-lite > .lty-playbtn, 63.yt-lite > .lty-playbtn:before { 64 position: absolute; 65 top: 50%; 66 left: 50%; 67 transform: translate3d(-50%, -50%, 0); 68} 69 70/* Post-click styles */ 71.yt-lite.lyt-activated { 72 cursor: unset; 73} 74.yt-lite.lyt-activated::before, 75.yt-lite.lyt-activated > .lty-playbtn { 76 opacity: 0; 77 pointer-events: none; 78}
For example, for NextJS:
1<style jsx global>{` 2 html, 3 body { 4 padding: 0; 5 margin: 0; 6 font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, 7 Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, 8 sans-serif; 9 } 10 11 * { 12 box-sizing: border-box; 13 14 // CSS above 15 16`}</style> 17
Using your CSS-In-JS tool of choice encapsulate this component and use the css provided as a guide.
Not work on every framework but you can import the css directly, check what works best with your bundler / framework.
1import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css';
or in a *.css/scss etc:
1@import "~react-lite-youtube-embed/dist/LiteYouTubeEmbed.css";
The most minimalist implementation requires two props: id
from the YouTube you want to render and title
, for the iFrame.
Prop | Type | Description |
---|---|---|
id | string | id of the video or playlist |
title | string | Here goes your video title. Always provide a title for iFrames: https://dequeuniversity.com/tips/provide-iframe-titles Help the web be accessible ;) #a11y |
activeClass | string | Pass the string class for the active state |
adNetwork | boolean | Default: false To preconnect or not to doubleclick addresses called by YouTube iframe (the adnetwork from Google) |
announce | string | Default: Watch . This will added to the button announce to the final user as in Clickable Watch, ${title}, button , customize to match your own language #a11y #i18n |
aspectHeight | number | Default: 9 . Use this optional prop if you want a custom aspect-ratio. Please be aware of aspect height and width relation and also any custom CSS you are using. |
aspectWidth | number | Default: 16 . Use this optional prop if you want a custom aspect-ratio. Please be aware of aspect height and width relation and also any custom CSS you are using. |
cookie | boolean | Default: false Connect to YouTube via the Privacy-Enhanced Mode using https://www.youtube-nocookie.com. You should opt-in to allow cookies |
iframeClass | string | Pass the string class for the own iFrame |
muted | boolean | If the video has sound or not. Required autoplay true to work |
noCookie | boolean | Deprecated Default false use option cookie to opt-in |
onIframeAdded | function | Callback that will fired when iframe loads |
params | string | any params you want to pass to the URL in the iFrame. Two important points to notice: You need to add the params, we already setup for you, so you should write start=1150 and not ?start=1150 or &start=1150 . You can place more params but it will need to fully form: start=1150&other=value&another=value . First, when you share a YouTube url the param of time is t , but the embed needs start . |
playerClass | string | Pass the string class for the player, once you can customize it |
playlist | boolean | Use true when your id be from a playlist |
playlistCoverId | string | The ids for playlists did not bring the cover in a pattern to render so you'll need pick up a video from the playlist (or in fact, whatever id) and use to render the cover. There's a programmatic way to get the cover from YouTube API v3 but the aim of this component is do not make any another call and reduce requests and bandwidth usage as much as possible |
poster | string. One of default mqdefault hqdefault sddefault maxresdefault | Defines the image size to call on first render as poster image. See: https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api |
rel | string | Default preload . allows for prefetch or preload of the link url |
thumbnail | string | Pass an optional image url to override the default poster and set a custom poster image |
webp | boolean | Default false . When set, uses the WebP format for poster images |
wrapperClass | string | Pass the string class that wraps the iFrame |
containerElement | string | Default article . Pass the element to be used for the container. |
Copyright (c) 2021 — 2023 Ibrahim Cesar
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
No vulnerabilities found.
No security vulnerabilities found.