npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

modal-component-openclassrooms

v1.0.9

Published

This versatile React modal component is perfect for confirming actions like employee deletion or any other action requiring user confirmation. Easily integrate it into your app and customize the styling to match your design.

Downloads

646

Readme

Modal Component

This versatile React modal component is perfect for confirming actions like employee deletion or any other action requiring user confirmation. Easily integrate it into your app and customize the styling to match your design.

Installation

To install the modal component, you need to have React and ReactDOM installed in your project. If they aren't already, you can install them via npm:

npm install react react-dom

Then, you can install the modal-component via npm:

npm install modal-component-openclassrooms

Or, if you use Yarn:

yarn add modal-component-openclassrooms

Usage

Here's a basic example of how to use the Modal component in your project:

import React, { useState } from 'react';
import Modal from 'modal-component-ocr-finalproject';
import closeButtonImage from "./closeButtonImage"

const App = () => {
  const [isModalOpen, setIsModalOpen] = useState(true);

  return (
    <div>
      <button onClick={handleOpen}>Open Modal</button>
      {isModalOpen &&
        <Modal
        setIsModalOpen={setIsModalOpen}
        message="You're account has been created!"
        closeButtonImage={closeButtonImage}
        style={{
          overlayModal: {
            backgroundColor: "#333333d3",
          }
          modalContainer:{
            width: "100vw",
            height: "100vh",
            overflowY: "hidden",
            zIndex: "10",
          }
          modalCloseButton: {
            width: "30px",
            height: "30px",
            cursor: "pointer",
          }
          modal:{
            backgroundColor: "white",
            borderRadius: "10px 0 10px 10px",
          }
        }}
      />
      }
    </div>
  );
};

export default App;

Props

| Prop | Type | Description | Required | Default | | -------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ------------------------ | | message | string | The message or content inside the modal. | Yes | N/A | | setIsModalOpen | func | The set function from a useState hook that will turn your current state at false(either by clicking outside the modal or the close button or pressing the escape key). | Yes | N/A | | closeButtonImage | string | Link to the image you want for your close button. | false | N/A | | style | object | Custom global styles for the compoenent modal, passed as an object of CSS properties. | No | {} | | style.overlayModal | object | Custom styles for the modal overlay, passed as an object of CSS properties. | No | { position: "absolute", height: "100%", width: "100%", backgroundColor: "#333333d3",} | | style.modalContainer | object | Custom styles for the container of the modal, passed as an object of CSS properties. | No | { position: "fixed", top: "0", width: "100vw", height: "100vh", overflowY: "hidden", zIndex: "10",} | | style.modalCloseButton | object | Custom styles for the close button modal, passed as an object of CSS properties. | No | { position: "absolute", top: "-10px", right: "-10px", width: "30px", height: "30px", cursor: "pointer", transition: "transform 0.5s", transform: "scale(1)",} | | style.modal | object | Custom styles for the modal, passed as an object of CSS properties. | No | { position: "fixed", top: "50%", left: "50%", transform: "translate(-50%, -50%)", backgroundColor: "white", borderRadius: "10px 0 10px 10px", border: "1px solid black", width: "70%", display: "flex", alignItems: "center", padding: "15px", zIndex: "10",} |

Key Features

  • Customizable: Easily adjust colors, text, and styles via the style prop.
  • Keyboard Support: Close the modal by pressing the Escape key.
  • Responsive: Adjusts well to different screen sizes.
  • User-friendly: Closes on clicking outside the modal.