npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@visual-framework/vf-embed

v1.1.2

Published

vf-embed component

Downloads

1,587

Readme

Embed component

npm version

About

The vf-embed component can currently give two different aspect ratios by adding a class variant. You can also define a max-width for the embed if needed.

Usage

Nunjucks Props

To avoid any mistyping, forgetfulness, and to aid in future proofing the component. We are using 'pseudo props' in nunjucks to determine which CSS selectors to use. All props do nothing unless included in your data for the component.

Props available

  • vf_embed_max_width: required a number and CSS unit to give vf-embed as maximum width. This number is applied to the CSS custom property --vf-embed-max-width.
  • vf_embed_variant_16x9: if set to true (vf_embed_variant_16x9: true) it will apply the class selector vf-embed--16x9 to vf-embed.
  • vf_embed_variant_4x3: if set to true (vf_embed_variant_4x3: true) it will apply the class selector vf-embed--4x3 to vf-embed.
  • vf_embed_variant_custom: if set to true ('vf_embed_variant_custom: true') it will apply the class selector vf-embed--custom-ratio to vf-embed. When this is applied the two CSS custom properties --vf-embed-custom-ratio-x and --vf-embed-custom-ratio-y can be used to define the X and Y ratio.

Aspect Ratios

Aspect Ratios available are 16x9 and 4x3 or one defined using CSS custom properties.

Class Variants

  • vf-embed--16x9 for embedable content that is has an aspect ratio of 16x9.
  • vf-embed--4x3 for embedable content that is has an aspect ratio of 4x3.
  • vf-embed--custom-ratio for embedable content that requires a unique aspect ratio.

Custom Ratios

If you use vf-embed--custom-ratio you will need to set the X and Y ratio using CSS Custom Properties.

The CSS Custom Properties available when using vf-embed--custom-ratio are:

  • --vf-embed-custom-ratio-x for the X value.
  • --vf-embed-custom-ratio-y for the Y value.

For example. If you need an aspect ratio of 11x6 your HTML output could look like:

<div class="vf-embed vf-embed--custom-ratio" style="--vf-embed-custom-ratio-x: 11; --vf-embed-custom-ratio-y: 6">
  <!-- embedded content goes here -->
</div>

Max Width

You can also set a max width for the vf-emded. If you do this in the nunjucks file with the key of maxWidth: the nunjucks template will output an inline style onto the vf-embed. You can add this however fits best your product (in the :root, in a stylesheet, etc).

If you do not set a --vf-embed-max-width value then the component is set to a maximum width of 100%.

For example. If you need a vf-embed with the aspect ratio of 16x9 but with a maximum width of 400px your HTML out could look like:

<div class="vf-embed vf-embed--16x9" style="--vf-embed-max-width: 400px">
  <!-- embedded content goes here -->
</div>

Install

This repository is distributed with [npm][https://www.npmjs.com/]. After [installing npm][https://www.npmjs.com/get-npm] and yarn, you can install vf-embed with this command.

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

JS

You should import this component in ./components/vf-component-rollup/scripts.js or your other JS process:

import { vfcomponentName } from 'vf-embed/vf-embed';
// Or import directly
// import { vfcomponentName } from '../components/raw/vf-embed/vf-embed.js';
vfcomponentName(); // if needed, invoke it

Sass/CSS

If your component uses Sass:

The style files included are written in Sass. If you're using a VF-core project, you can import it like this:

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

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

Help