Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
boundless-image
Advanced tools
An image block with placeholder support for loading and fallback scenarios.
npm i boundless-image --save
Then use it like:
/** @jsx createElement */
import { createElement, PureComponent } from 'react';
import Button from 'boundless-button';
import Image from 'boundless-image';
export default class ImageDemo extends PureComponent {
state = {
normal: Date.now(),
delayed: Date.now(),
error: Date.now(),
}
remountImage(refName) {
this.setState({ [refName]: Date.now() });
}
render() {
return (
<div className='demo-image spread center'>
<figure>
<h5>Normal</h5>
<Image
ref='normal'
src={`https://c2.staticflickr.com/6/5128/5288605976_9b06c0de8f_b.jpg?${this.state.normal}`}
alt='A snowy drive.' />
<Button
onPressed={this.remountImage.bind(this, 'normal')}
style={{ marginTop: '1rem' }}>
Remount Image
</Button>
</figure>
<figure>
<h5>Delayed</h5>
<Image
ref='delayed'
src={`http://deelay.me/5000/http://igcdn-photos-g-a.akamaihd.net/hphotos-ak-xfa1/t51.2885-15/11244434_646274218842534_532892887_n.jpg?${this.state.delayed}`}
alt='An aerial shot of a snow-covered forest.' />
<Button onPressed={this.remountImage.bind(this, 'delayed')}
style={{ marginTop: '1rem' }}>
Remount Image
</Button>
</figure>
<figure>
<h5>Errored Out</h5>
<Image
ref='error'
src={`http://www.flickr.com/1o2k3ok1231?${this.state.error}`}
alt='A dead image.' />
<Button
onPressed={this.remountImage.bind(this, 'error')}
style={{ marginTop: '1rem' }}>
Remount Image
</Button>
</figure>
</div>
);
}
}
Image can also just be directly used from the main Boundless library. This is recommended when you're getting started to avoid maintaining the package versions of several components:
npm i boundless --save
the ES6 import
statement then becomes like:
import { Image } from 'boundless';
Note: only top-level props are in the README, for the full list check out the website.
src
· a valid path to the desired image
Expects | Default Value |
---|---|
string | 'about:blank' |
*
· any React-supported attribute
Expects | Default Value |
---|---|
any | n/a |
alt
· a written description of the image for search engines, hovertext and those using accessibility technologies
Expects | Default Value |
---|---|
string | '' |
component
· overrides the component HTML tag
Expects | Default Value |
---|---|
string | 'div' |
You can see what variables are available to override in variables.styl.
// Redefine any variables as desired, e.g:
color-accent = royalblue
// Bring in the component styles; they will be autoconfigured based on the above
@require "node_modules/boundless-image/style"
If desired, a precompiled plain CSS stylesheet is available for customization at /build/style.css
, based on Boundless's default variables.
FAQs
An image block with placeholder support for loading and fallback scenarios.
The npm package boundless-image receives a total of 0 weekly downloads. As such, boundless-image popularity was classified as not popular.
We found that boundless-image 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.