![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@astrocoders/react-modal-image
Advanced tools
A lightweight React component providing modal image Lightbox.
You need to bring your own Set
polyfill if you use old Internet Explorers.
import ModalImage from 'react-modal-image'
<ModalImage
small={urlToTinyImageFile}
large={urlToHugeImageFile}
alt="Hello World!"
/>
Prop | Type | Description |
---|---|---|
className | String | Optional. class for the small preview image. |
alt | String | Optional. alt for the small image and the heading text in Lightbox. |
small | URL | src for the small preview image. |
smallSrcSet | String | Optional. srcSet for the small preview image. |
medium | URL | Optional if large is defined. Image shown when zoomed out in Lightbox. |
large | URL | Optional if medium is defined. Image shown when zoomed in Lightbox. Downloadable. |
hasDownloadButton | Boolean | Optional. Show download button in LightBox if set true |
You can also choose to import only the Lightbox.
To use the Lightbox only, you'll need to handle the open state by yourself:
import { Lightbox } from 'react-modal-image'
// ...
const closeLightbox = () => {
this.state.open = true
}
// ...
{
this.state.open && (
<Lightbox medium={urlToLargeImageFile} large={urlToHugeImageFile} alt="Hello World!" onClose={this.closeLightbox} />
)
}
Prop | Type | Description |
---|---|---|
onClose | function | Will be invoked when the Lightbox requests to be closed |
FAQs
Lightweight Lightbox React Component
The npm package @astrocoders/react-modal-image receives a total of 1 weekly downloads. As such, @astrocoders/react-modal-image popularity was classified as not popular.
We found that @astrocoders/react-modal-image demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.