Skip to content

Instantly share code, notes, and snippets.

@MWDelaney
Forked from freshyill/.eleventy.js
Last active January 2, 2023 08:33
Show Gist options
  • Save MWDelaney/b62f95a6fec2e6f2ff60d31b12e0b174 to your computer and use it in GitHub Desktop.
Save MWDelaney/b62f95a6fec2e6f2ff60d31b12e0b174 to your computer and use it in GitHub Desktop.
YouTube Editor component for Netlify CMS
eleventyConfig.addNunjucksShortcode("youtube", function (youtubeId, aspectRatio) {
return `<div class="aspect-ratio" style="--aspect-ratio: ${aspectRatio}"><iframe class="youtube-player video video--youtube" src="https://www.youtube.com/embed/${youtubeId}/" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>`;
});
CMS.registerEditorComponent({
// Internal id of the component
id: "youtube",
// Visible label
label: "Youtube",
// Fields the user need to fill out when adding an instance of the component
fields: [
{name: 'id', label: 'YouTube ID', widget: 'string'},
{name: 'aspect_ratio', label: 'Aspect ratio', widget: 'select', multiple: false, options: [ "16/9", "4/3", "1/1" ], default: "16/9"}
],
// Pattern to identify a block as being an instance of this component
pattern: /^{\% youtube \"(\S+)\", \"(\S+)\" \%}$/,
// Function to extract data elements from the regexp match
fromBlock: function(match) {
return {
id: match[1],
aspect_ratio: match[2]
};
},
// Function to create a text block from an instance of this component
toBlock: function(obj) {
return `{% youtube "${obj.id}", "${obj.aspect_ratio}" %}`;
},
// Preview output for this component. Can either be a string or a React component
// (component gives better render performance)
toPreview: function(obj) {
return (
'<img src="http://img.youtube.com/vi/' + obj.id + '/maxresdefault.jpg#block" alt="Youtube Video"/>'
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment