beta This component version is ready to be used but is still in active development.

Video block

Add a video with this component.

github location npm version

Variants

Nunjucks syntax

Depending on your environment you'll want to use render or include. As a rule of thumb: server-side use include, precompiled browser use render. If you're using vf-eleventy you should use include.

Using include

You'll need to pass a context object from your code or Yaml file (example), as well as the path to the Nunjucks template. Nunjucks' include is an abstraction of render and provides some additional portability.


{% set context fromYourYamlFile %}
- or -
{% set context = { 
"component-type" : "block",
"video_href" : "https://www.youtube.com/embed/nGNvYjYQaaQ?rel=0",
 }
%}
{% include "../path_to/vf-video/vf-video.njk" %}
                

Using render

This approach is best for bare-bones Nunjucks environments, such as precompiled templates with the Nunjucks slim runtime where include is not be available.


{% render '@vf-video', {
  "component-type" : "block",
  "video_href" : "https://www.youtube.com/embed/nGNvYjYQaaQ?rel=0",}
%}
                
HTML
<div class="vf-video">
  <iframe width="560" height="315" src="https://www.youtube.com/embed/nGNvYjYQaaQ?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
              

Examples

Installation info

This component is distributed with npm. After installing npm, you can install the vf-video with this command.

$ yarn add --dev @visual-framework/vf-video

Sass/CSS

The source files included are written in Sass(scss). You can point your Sass include-path at your node_modules directory and import it like this.

@import "@visual-framework/vf-video/index.scss";

Make sure you import Sass requirements along with the modules. You can use a project boilerplate or the vf-sass-starter

Changelog

Changelog

1.0.0-alpha.9

1.0.0-alpha.8

  • Version bump only for package @visual-framework/vf-video

1.0.0-alpha.7

  • Version bump only for package @visual-framework/vf-video

Assets



File system location: components/vf-video

Find an issue on this page? Propose a change or discuss it.