Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
filestack-adaptive
Advanced tools
Generate responsive HTML picture elements powered by on-the-fly Filestack image conversions.
You will need a Filestack developer account to use this library. Get a free one here.
If you're looking for a self-initializing Javascript solution please see the powerful lazysizes library. It can integrate easily with Filestack conversions by using the RIAS plugin.
npm install filestack-adaptive
The package.json
specifies three separate modules:
main
for the CommonJS modulemodule
for the ES Module (suitable for bundlers like Webpack and Rollup)browser
for the UMD module (usable in HTML script tags)You can find a minified UMD module on the Filestack CDN here.
https://filestack.github.io/adaptive/
Adaptive at its core is a generator for objects representing the structure of HTML picture tags. These in turn can be consumed by different interpreters.
This library ships with a built-in virtual DOM adapter powered by hyperx, which allows you to simply call picture(handle, options, renderer)
, where renderer
can be any DOM builder supported by hyperx. If renderer
is not provided then picture
will default to returning plain DOM. For example it can support React components:
Browser (using umd):
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://static.filestackapi.com/adaptive/adaptive.min.js"></script>
<script>
const options = { alt: 'downtown', sizes: { fallback: '100vw' } };
const tree = fsAdaptive.picture('5aYkEQJSQCmYShsoCnZN', options, React.createElement);
ReactDOM.render(tree, document.body);
</script>
Browser (using bundler):
import react from 'react';
import reactDOM from 'react-dom';
import { picture } from 'filestack-adaptive';
// Need to spread children parameter to prevent React key warnings
const createElement = (Component, props, children) => {
return React.createElement(Component, props, ...children);
};
const options = { alt: 'downtown', sizes: { fallback: '100vw' } };
const tree = picture('5aYkEQJSQCmYShsoCnZN', options, createElement);
ReactDOM.render(tree, document.body);
Server:
import react from 'react';
import reactDOM from 'react-dom/server';
import { picture } from 'filestack-adaptive';
const toString = reactDOM.renderToString;
// Need to spread children parameter to prevent React key warnings
const createElement = (Component, props, children) => {
return React.createElement(Component, props, ...children);
};
const options = { alt: 'downtown', sizes: { fallback: '100vw' } };
const tree = picture('5aYkEQJSQCmYShsoCnZN', options, createElement);
console.log(toString(tree));
The attribute structure returned from makePictureTree
can be used in JSX directly, if for example you would prefer writing your own adapter (not using the picture
helper).
JSX:
import React, { Component } from 'react';
import { makePictureTree } from 'filestack-adaptive';
class Picture extends Component {
renderSources(sources) {
return sources.map((sourceObj) => {
return <source {...sourceObj} />;
});
}
renderImage(imageObj) {
return <img {...imageObj} />;
}
render() {
const tree = makePictureTree(this.props.handle, this.props);
return (
<picture>
{tree.sources && this.renderSources(tree.sources)}
{this.renderImage(tree.img)}
</picture>
);
}
}
export default Picture;
Most cases can be covered with the picture
function for generating plain DOM elements. Support for art direction (distinct/cropped images per media query) is not yet implemented.
import { picture } from 'filestack-adaptive';
const options = {
alt: 'downtown',
sizes: {
fallback: '60vw',
},
};
const el = picture('seW1thvcR1aQBfOCF8bX', options);
document.body.appendChild(el);
This will generate a DOM node with the following structure:
<picture>
<img alt="downtown"
sizes="60vw"
src="https://cdn.filestackcontent.com/seW1thvcR1aQBfOCF8bX"
srcset="https://cdn.filestackcontent.com/resize=width:180/seW1thvcR1aQBfOCF8bX 180w,
https://cdn.filestackcontent.com/resize=width:360/seW1thvcR1aQBfOCF8bX 360w,
https://cdn.filestackcontent.com/resize=width:540/seW1thvcR1aQBfOCF8bX 540w,
https://cdn.filestackcontent.com/resize=width:720/seW1thvcR1aQBfOCF8bX 720w,
https://cdn.filestackcontent.com/resize=width:900/seW1thvcR1aQBfOCF8bX 900w,
https://cdn.filestackcontent.com/resize=width:1080/seW1thvcR1aQBfOCF8bX 1080w,
https://cdn.filestackcontent.com/resize=width:1296/seW1thvcR1aQBfOCF8bX 1296w,
https://cdn.filestackcontent.com/resize=width:1512/seW1thvcR1aQBfOCF8bX 1512w,
https://cdn.filestackcontent.com/resize=width:1728/seW1thvcR1aQBfOCF8bX 1728w,
https://cdn.filestackcontent.com/resize=width:1944/seW1thvcR1aQBfOCF8bX 1944w,
https://cdn.filestackcontent.com/resize=width:2160/seW1thvcR1aQBfOCF8bX 2160w,
https://cdn.filestackcontent.com/resize=width:2376/seW1thvcR1aQBfOCF8bX 2376w,
https://cdn.filestackcontent.com/resize=width:2592/seW1thvcR1aQBfOCF8bX 2592w,
https://cdn.filestackcontent.com/resize=width:2808/seW1thvcR1aQBfOCF8bX 2808w,
https://cdn.filestackcontent.com/resize=width:3024/seW1thvcR1aQBfOCF8bX 3024w">
</picture>
The srcset here is using a list of default resolutions that apply whenever sizes
is specified, but these can be overridden. The alt is not required but it is strongly recommended to comply
with the HTML5 + ARIA specification.
Current state of picture support.
For unsupported browsers we recommend the picturefill polyfill.
When the image width is known it will generate a srcset for HiDPI screens at 2x. More densities can be specified
by passing an array to the resolutions
option, e.g. resolutions: ['1x', '2x', '3x']
.
const options = {
alt: 'downtown',
width: '768px',
};
picture('seW1thvcR1aQBfOCF8bX', options);
Output:
<picture>
<img src="https://cdn.filestackcontent.com/resize=width:768/5aYkEQJSQCmYShsoCnZN"
srcset="https://cdn.filestackcontent.com/resize=width:768/5aYkEQJSQCmYShsoCnZN 1x,
https://cdn.filestackcontent.com/resize=width:1536/5aYkEQJSQCmYShsoCnZN 2x"
alt="downtown"
width="768">
</picture>
You can specify generated widths by using resolutions
, which takes an array
of numbers or strings (e.g. 540
or '540w'
).
const options = {
alt: 'downtown',
sizes: {
'(min-width: 1080px)': '100vw',
fallback: '90vw',
},
resolutions: [540, 1080],
};
picture('seW1thvcR1aQBfOCF8bX', options);
Output:
<picture>
<source media="(min-width: 1080px)"
sizes="100vw"
srcset="https://cdn.filestackcontent.com/resize=width:540/5aYkEQJSQCmYShsoCnZN 540w,
https://cdn.filestackcontent.com/resize=width:1080/5aYkEQJSQCmYShsoCnZN 1080w">
<img src="https://cdn.filestackcontent.com/5aYkEQJSQCmYShsoCnZN"
srcset="https://cdn.filestackcontent.com/resize=width:540/5aYkEQJSQCmYShsoCnZN 540w,
https://cdn.filestackcontent.com/resize=width:1080/5aYkEQJSQCmYShsoCnZN 1080w"
alt="downtown"
sizes="90vw">
</picture>
WebP can be used when it's supported by the browser. Filestack will take care of the image conversion and cache it on the delivery network for future requests.
const options = {
alt: 'downtown',
formats: ['webp', 'jpg'], // order matters!
};
picture('seW1thvcR1aQBfOCF8bX', options);
Output:
<picture>
<source srcset="https://cdn.filestackcontent.com/output=format:webp/5aYkEQJSQCmYShsoCnZN"
type="image/webp">
<source srcset="https://cdn.filestackcontent.com/output=format:jpg/5aYkEQJSQCmYShsoCnZN"
type="image/jpg">
<img src="https://cdn.filestackcontent.com/5aYkEQJSQCmYShsoCnZN" alt="downtown">
</picture>
Adaptive is joining an ecosystem already populated with many utilities for responsive images. We want to remain flexible while still having some opinions on how to implement picture elements using Filestack conversions, and we know it is hard to cover every use case. Contributions and ideas are welcome that would help improve the usefulness of this library.
Current ideas:
makePictureTree
FAQs
HTML5 picture elements powered by Filestack
The npm package filestack-adaptive receives a total of 555 weekly downloads. As such, filestack-adaptive popularity was classified as not popular.
We found that filestack-adaptive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.