
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
popup-react
Advanced tools
popup-react
is a lightweight collection of React components designed to enhance user experience. Currently, it features the ImageQuickView
component, with more components planned for future releases.
https://popup-react.aburifat.com/
To install the package, run the following command:
npm install popup-react
or using yarn:
yarn add popup-react
ImageQuickView
allows users to quickly view a larger version of an image in a modal popup. It enhances the browsing experience for image-heavy applications such as e-commerce websites or galleries.
import { useState } from 'react'
import sea from './assets/sea.jpg'
import { ImageQuickView } from 'popup-react'
function App() {
const [selectedImage, setSelectedImage] = useState<string | undefined>(undefined);
const closeQuickView = () => {
setSelectedImage(undefined);
}
return (
<div>
<img
src={sea}
onClick={() => setSelectedImage(sea)}
/>
<ImageQuickView
src={selectedImage}
alt={"image alt"}
bgWrapper={true}
wrapperStyle={{
color: '#fff',
opacity: 0.7
}}
isVisible={!!selectedImage}
onClose={closeQuickView}
/>
</div>
)
}
export default App
src
: (string) Required. The URL of the image to be displayed in the quick view.alt
: (string) Optional. The alt text for the image.bgWrapper
: (boolean) Optional. Show or hide background wrapper. (default: true)wrapperStyle
: (object) Optional. Contains the color and opacily property of the background Wrapper.isVisible
: (boolean) Optional. Show or hide the quick view. (default: false)onClose
: (function) Required. Callback function triggered when the modal is closed.const closeQuickView = () => {
setSelectedImage(undefined);
}
<ImageQuickView
src={selectedImage}
alt={"image alt"}
bgWrapper={true}
wrapperStyle={{
color: '#fff',
opacity: 0.7
}}
isVisible={!!selectedImage}
onClose={closeQuickView}
/>
This project is licensed under the MIT License.
FAQs
A collection of beautiful popup components for react.
The npm package popup-react receives a total of 7 weekly downloads. As such, popup-react popularity was classified as not popular.
We found that popup-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.