New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@makabay/customizedmodal

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@makabay/customizedmodal

Hello, this is a modal component who can be customized. I will show you an example of use comented.

0.1.1
Source
npm
Version published
Maintainers
1
Created
Source

Hello, this is a modal component who can be customized. I will show you an example of use comented.

(You will have a style already apply on the component.)

// We will need to share the parent state to our "CustomizedModal" component
import { useState } from "react";

// Components
import CustomizedModal from './modal/CustomizedModal';


// This App component can the component where you want placed the modal
export default function App () {
    // Here we defined a booleen state hook
    const [modal, setModal] = useState(false);

    // This is the function who will open the modal
    function change () {
        setModal(!modal);
    }

    // For CustomizedModal (props) component, it will be your custom text button or message
    const closeButtonTextData = {
        closeButtonTextValue: 'Close',
        textNotificationValue: 'Notification message',
        confirmationTextValue: 'Understood'
    };

    return (
        <>
            {/* Trigger example for open modal */}
            <button onClick={change}>
                Open modal {modal ? 'true': 'false'}
            </button>

            {/* 
            - This is the component -
            He's in absolute position, better if it placed in top of the other components
            */}
            <CustomizedModal
                closeButtonText={closeButtonTextData.closeButtonTextValue} 
                textNotification={closeButtonTextData.textNotificationValue} 
                confirmationText={closeButtonTextData.confirmationTextValue} 
                modalState={modal}
                changeModalState={setModal}
            />
        </>
    );
}

FAQs

Package last updated on 17 Feb 2024

Did you know?

Socket

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.

Install

Related posts