Package Exports
- react-lite-youtube-embed
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-lite-youtube-embed) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
๐บ React Lite YouTube Embed
A faster and cleaner YouTube embed component for React
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.
๐ Install
Use your favorite package manager:
yarn add react-lite-youtube-embed
npm install react-lite-youtube-embed -S
๐น๏ธ Basic Usage
import React from "react";
import { render } from "react-dom";
import LiteYouTubeEmbed from 'react-lite-youtube-embed';
import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css'
const App = () => (
<div>
<LiteYouTubeEmbed
id="L2vS_050c-M"
title="Whatโs new in Material Design for the web (Chrome Dev Summit 2019)"
/>
</div>
);
render(<App />, document.getElementById("root"));
And that's it.
๐ Pro Usage
const App = () => (
<div>
<LiteYouTubeEmbed
id="L2vS_050c-M" // Default none, id of the video or playlist
adNetwork={true} // Default true, to preconnect or not to doubleclick addresses called by YouTube iframe (the adnetwork from Google)
params="" // any params you want to pass to the URL, assume we already had '&' and pass your parameters string
playlist={false} // Use true when your ID be from a playlist
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
title="YouTube Embed" // a11y, always provide a title for iFrames: https://dequeuniversity.com/tips/provide-iframe-titles Help the web be accessible ;)
noCookie={true} //Default false, connect to YouTube via the Privacy-Enhanced Mode using https://www.youtube-nocookie.com
/>
</div>
);
๐งฐ Bring Your Own Styles
React Lite YouTube Embed is packaged with all original styles from Paul Irish's Lite YouTube Embed but you can customize them as you wish passing as a props.
const App = () => (
<div>
<LiteYouTubeEmbed
id="L2vS_050c-M"
activeClass="lyt-activated" // Default as "lyt-activated", gives control to wrapper once clicked
iframeClass="" // Default none, gives control to add a class to iframe element itself
playerClass="lty-playbtn" // Default as "lty-playbtn" to control player button styles
wrapperClass="yt-lite" // Default as "yt-lite" for the div wrapping the area, it is the most important class and needs extra attention, please refer to LiteYouTubeEmbed.css for a reference.
/>
</div>
);
โ ๏ธ Version 1.0 - BREAKING CHANGES โ ๏ธ
To play nice with new frameworks like NextJS, we now don't import the .css
necessary. Instead in order to use now you have three options:
Option 2
Place the necessary CSS in your Global CSS file method of preference
.yt-lite {
background-color: #000;
position: relative;
display: block;
contain: content;
background-position: center center;
background-size: cover;
cursor: pointer;
}
/* gradient */
.yt-lite::before {
content: '';
display: block;
position: absolute;
top: 0;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
background-position: top;
background-repeat: repeat-x;
height: 60px;
padding-bottom: 50px;
width: 100%;
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}
/* responsive iframe with a 16:9 aspect ratio
thanks https://css-tricks.com/responsive-iframes/
*/
.yt-lite::after {
content: "";
display: block;
padding-bottom: calc(100% / (16 / 9));
}
.yt-lite > iframe {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
/* play button */
.yt-lite > .lty-playbtn {
width: 70px;
height: 46px;
background-color: #212121;
z-index: 1;
opacity: 0.8;
border-radius: 14%; /* TODO: Consider replacing this with YT's actual svg. Eh. */
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.yt-lite:hover > .lty-playbtn {
background-color: #f00;
opacity: 1;
}
/* play button triangle */
.yt-lite > .lty-playbtn:before {
content: '';
border-style: solid;
border-width: 11px 0 11px 19px;
border-color: transparent transparent transparent #fff;
}
.yt-lite > .lty-playbtn,
.yt-lite > .lty-playbtn:before {
position: absolute;
top: 50%;
left: 50%;
transform: translate3d(-50%, -50%, 0);
}
/* Post-click styles */
.yt-lite.lyt-activated {
cursor: unset;
}
.yt-lite.lyt-activated::before,
.yt-lite.lyt-activated > .lty-playbtn {
opacity: 0;
pointer-events: none;
}
For example, for NextJS:
<style jsx global>{`
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
sans-serif;
}
* {
box-sizing: border-box;
}
// CSS above
`}</style>
Option 2
Using your CSS-In-JS tool of choice encapsulate this component and use the css provided as a guide.
Option 3
Not work on every framework but you can import the css directly, if your bundler allow you to as:
import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css';
TO DO:
- Add tests
Thanks
Paul Irish (paulirish) for Lite YouTube Embed
Acauรฃ Sperl de Faria (acaua) for code review
Addy Osmani (addyosmani) for the Adaptive Loading ideas
See Also
React Quicklink: Faster subsequent page-loads by prefetching in-viewport links during idle time for React
MIT License
Copyright (c) 2021 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.