Giter VIP home page Giter VIP logo

appropriate-images-get-url's Introduction

@mapbox/appropriate-images-get-url

Note: This repository is no longer in use. As of April 2024 it is archived.

Build Status

Use in combination with appropriate-images.

After you've generated resized, optimized images with appropriate-images, you'll want to use them in the browser. In order to do that, you'll need to determine which variant of the image to load — which size, and whether to load the .webp version or not. That's what this module is for. This is how the image configuration used by appropriate-images can be reused in the browser to select the appropriate image to load at runtime.

If you're thinking about using this function in combination with React, check out appropriate-images-react.

Installation

npm install @mapbox/appropriate-images-get-url

API

getAppropriateImageUrl

getAppropriateImageUrl(options)

Uses the image id, image configuration, and width value to figure out the URL of the image variant that should be loaded. Returns a URL for the appropriate image variant that you created with appropriate-images.

The returned URL will account for

  • the available width,
  • the resolution of the screen, and
  • whether or not the browser supports webp.

The image variant that is selected will be the narrowest variant that is at least as wide as the available width, or else, if the available width exceeds all sizes, the widest variant.

options

imageId

Type: string. Required.

Id of the image to be loaded. Image ids correspond to keys in your appropriate-images configuration.

imageConfig

Type: Object. Required.

Your appropriate-images configuration object.

availableWidth

Type number. Default: Infinity.

Not technically required, but you should provide it. This is the width available to the image. This is key to figuring out which size variant to load.

hiResRatio

Type number. Default: 1.3.

The ratio at which you want to consider a screen "high resolution". If the browser judges that the screen is high resolution, according to this ratio, the availableWidth provided will be multiplied by this ratio when determining which size variant to load. This means that in a 300px-wide space but on a Retina screen, the image at least 600px wide will be loaded.

imageDirectory

Type string.

If provided, this will be prepended to the URL.

Examples

const getAppropriateImageUrl = require('@mapbox/appropriate-images-get-url');

const imageConfig = {
  bear: {
    basename: 'bear.png',
    sizes: [{ width: 300 }, { width: 600 }]
  },
  montaraz: {
    basename: 'montaraz.jpg',
    sizes: [
      { width: 600, height: 500 },
      { width: 1200, height: 800, crop: 'north' },
      { width: 200, height: 200, crop: 'southeast' },
    ]
  }
};

getAppropriateImageUrl({ imageConfig, imageId: 'bear', width: 280 });
// On a regular-resolution screen: bear-300.png or webp
// On a high-resolution screen: bear-600.png or webp

getAppropriateImageUrl({ imageConfig, imageId: 'bear', width: 550 });
// bear-600.png or webp

getAppropriateImageUrl({ imageConfig, imageId: 'bear', width: 800 });
// bear-600.png or webp

getAppropriateImageUrl({
  imageConfig,  
  imageId: 'montaraz',
  width: 400,
  imageDirectory: 'img/optimized/'
});
// On a regular-resolution screen: img/optimized/montaraz-600x500.jpg or webp
// On a high-resolution screen: img/optimized/montaraz-1200x800.jpg or webp

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.