1.1.7 • Published 10 months ago

modalite_react v1.1.7

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

Modalite React Package

The Modalite package is a simple and reusable React component that provides a customizable modal popup functionality for your React applications. This package allows you to display informative messages or content in a visually appealing and user-friendly manner, using a modal dialog.

Features

  • Create a modal popup with a given message.
  • Control the display of the modal using the isOpen state.
  • Automatically open the modal when a new message prop is received.
  • Close the modal on the click of a "Fermer" (Close) button.

Installation

You can install the Modalite package from npm using the following command:

npm install modalite

or using yarn:

yarn add modalite

Usage

To use the Modalite component in your React application, follow these steps:

  1. Import the Modal component from the modalite package:
import Modal from "modalite_react";
  1. Implement the Modal component in your application, providing it with the necessary props:
import React, { useState } from "react";
import Modal from "modalite";

const MyComponent = () => {
  const [showModal, setShowModal] = useState(false);
  const [message, setMessage] = useState("");

  const handleShowModal = (msg) => {
    setMessage(msg);
    setShowModal(true);
  };

  const handleCloseModal = () => {
    setShowModal(false);
  };

  return (
    <div>
      {/* Your application content */}
      <button onClick={() => handleShowModal("Hello from Modalite!")}>
        Show Modal
      </button>

      {showModal && <Modal message={message} setSent={handleCloseModal} />}
    </div>
  );
};

export default MyComponent;

Props

The Modal component accepts the following props:

  • message (string, required): The message to be displayed in the modal popup.
  • setSent (function, required): A callback function to handle the closing of the modal. It should be used to update the state that controls the visibility of the modal.

Contributions

Contributions to the Modalite package are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request on the GitHub repository https://github.com/Mehdony/modalite_react.

Credits

The Modalite package is created and maintained by MazutBismuth.

1.1.7

10 months ago

1.1.6

10 months ago

1.1.5

10 months ago

1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

10 months ago

1.1.1

10 months ago

1.1.0

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago