eleventy-plugin-vidyard

1.0.1 • Public • Published

eleventy-plugin-vidyard

npm npm license

An Eleventy shortcode, allows to be embedded Vidyard into templates by using Vidyard API v4.

Installation

Install the plugin from npm:

npm install eleventy-plugin-vidyard --save-dev

Add it to your Eleventy Config file:

const eleventyPluginVidyard = require('eleventy-plugin-vidyard');

module.exports = function (eleventyConfig) {
    eleventyConfig.addPlugin(eleventyPluginVidyard);
};

Advanced usage:

const eleventyPluginVidyard = require('eleventy-plugin-vidyard');

module.exports = function (eleventyConfig) {
    eleventyConfig.addPlugin(eleventyPluginVidyard, {
        script: true,
        class: 'vidyard-player-embed',
        version: 4,
        type: 'inline'
    });
};

What does it do?

The plugin turns 11ty shortcodes like this:

{% vidyard "https://share.vidyard.com/watch/Cse5Fqy1CpUWqYdtikKrFy?embeded=true" %}

into HTML code like this:

<script src="https://play.vidyard.com/embed/v4.js" type="text/javascript" async></script>
<img style="max-width: 100%;"
     class="vidyard-player-embed"
     src="https://play.vidyard.com/Cse5Fqy1CpUWqYdtikKrFy.jpg"
     data-uuid="Cse5Fqy1CpUWqYdtikKrFy"
     data-v="4"
     data-type="inline" />
        

Custom Usage

Vidyard documentations says, the script tag should live in the head of your page if at all possible.

In that case, we can disable rendering script within embedded player, and place main script on the head of website manually

<head>
    ...
    <!-- The script tag should live in the head of your page if at all possible -->
    <script src="https://play.vidyard.com/embed/v4.js" type="text/javascript" async></script>
    ...
</head>

and set config file to:

module.exports = function (eleventyConfig) {
    eleventyConfig.addPlugin(eleventyPluginVidyard, {
        script: false
    });
};

or by passing options to shortcode directly

{% vidyard "https://share.vidyard.com/watch/Cse5Fqy1CpUWqYdtikKrFy?embeded=true", {
    script: false,
    class: 'vidyard-player-embed my-custom-class',
    version: 4,
    type: 'inline'
} %}

Contributing

If you notice an issue, feel free to open an issue.

  1. Fork this repo
  2. Clone git clone git@github.com:reatlat/eleventy-plugin-vidyard.git
  3. Install dependencies npm install
  4. Build npm run build
  5. Serve locally npm run dev

License

The code is available under the MIT license.

May the 4th be with you

May 4th be with you

Dependents (0)

Package Sidebar

Install

npm i eleventy-plugin-vidyard

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

6.78 kB

Total Files

4

Last publish

Collaborators

  • reatlat