img-lightbox
Web Component / Custom Element with no dependencies to make a lightbox effect around images.
Check out the demo
The idea is that it should still display the image and link to the full sized one if JS is disabled, hasn't loaded for some reason, or if web components are not supported.
I quickly made this in regard to a blog article I was writing, it could be improved a lot.
Uncompressed minified size: 8.5Kb including the loading spinner image.
Using the component from npm
To use it in a project with a module bundler, install the dependency first:
npm install -D @dkvz/img-lightbox
Import it in the relevant entrypoint and register it into the browser window object:
import ImgLightbox from '@dkvz/img-lightbox';
customElements.define('img-lightbox', ImgLightbox);
To use the component in a web page, you're expected to put at least an img tag inside of it.
It's however best to enclose the img in a link, like so:
<img-lightbox>
<a href="../../assets/example.png" target="_blank" rel="noopener noreferrer">
<img src="../../assets/example_preview.png"
alt="Rabbit with a trumpet mute on its head">
</a>
</img-lightbox>
You'll probably want to add some styling to the element in your global styles as it doesn't have any by default.
The component sets up a default outline on focus, but you might want to add your own globally (which will trump the default one) like so:
img-lightbox:active, img-lightbox:focus {
outline: 2px solid rgba(20, 20, 200, 0.65);
}
Building the component
Build requirements
Installing dependencies
Run:
npm install
Build process
The build scripts will create browser ready bundles, except that the component prototype will be available through ImgLightbox.default, which is expected by module bundler but requires using ImgLightbox.default when using it directly in a web page with no module bundler.
Build using either:
npm run build
For the shadow DOM (default) version and:
npm run build-no-shadow
For the version that does not use the shadow DOM API at all.
You'll find the build script in the dist
folder.
To manually use it in some page, you could do something like this:
<script src="PATH_TO_SCRIPT/img-lightbox.js"></script>
<script>
customElements.define('img-lightbox', ImgLightbox.default);
</script>
The loading icon SVG file is normally not necessary but since I change my mind all the time about it you might want to copy it along anyway.
The no-shadow DOM version also requires extra styles to work. See src/no-shadow/index.pug
.
I started the project with the intention to not use the shadow DOM but the styles are a little bit too crazy so I made another version with shadow DOM.
I'm using the (es6-string-html)[https://marketplace.visualstudio.com/items?itemName=Tobermory.es6-string-html] VS Code extension to syntax highlight my templates, which is why there's somethings a /*template*/
comment before string literals in the code.
Static assets
The loading icon is currently inlined as a base64 data URL through using the parcel-plugin-url-loader
Parcel plugin with default options.
I used to keep it as a separate file but then I needed some kind of option to tell the class where the assets root is.
My concern was that if you have many of these components, the data URL string gets copied a lot of times in memory. And I think that's kind of happening since it's cloned in many shadow DOM instances.
Will be something to possibly optimize later.
Using something else than parcel to build
I'm not married to Parcel but I don't have time to fight bundlers right now.
I hear this is a good one for libs: https://github.com/developit/microbundle - Might integrate in the future.
Accessibility
Links seem to respond to both enter and space (differently? But whatever).
Key codes (found in event.keyCode
) are as follows:
const KEYCODE = {
SPACE: 32,
ENTER: 13,
};
In their examples the Chrome team seem to ignore any input that has the Alt key pressed as in:
if (event.altKey)
return;
Note: When using any key press to escape the lightbox modal situation, focus is not restored to what had it previously. I personally like it that way but I'm not using a screen reader so I don't know.
Resources and copyright notices
TODO