0.1.7 • Published 2 years ago

codexarama-modal v0.1.7

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Codexarama Modal

A fully customizable Modal component for React apps

using React Portal, the Modal is mounted on its own node as a distinct child of App body

Features

☑️ useModal

custom hook to mount / unmount Modal container

☑️ VARIOUS ITEMS

🔘 close button (img)
🔘 Modal container illustration (img)
🔘 title
🔘 message line 1
🔘 message line 2
🔘 button 1
🔘 button 2

☑️ THAT YOU CAN

🔘 EDIT ---- (string type)
🔘 HIDE ---- (exept required)
🔘 DISABLE - (button type)
🔘 STYLE --- (css files)
    ✔ separated color variables
    ✔ clear and logical items attributes

Select Modal items you need Customize as you want

Getting started guide

Source codexarama-modal

Install

With npm run the following command

npm i codexarama-modal

With yarn run the following command

yarn add codexarama-modal

Props

NameTypeDescriptionStatus
modalBooleanmount Modal or nullrequired
closeFunctionon click : close modalrequired
xStringclose image sourcerequired
iconStringmodal container image sourceoptional
hideIconBooleanmount item or nulloptional
titleStringanyoptional
hideTitleBooleanmount item or nulloptional
msgL1Stringanyrequired
msgL2Stringanyoptional
hideMsgL2Booleanmount item or nulloptional
btn1Stringanyoptional
disableBtn1Booleanadd or remove 'disabled' attributeoptional
hideBtn1Booleanmount item or nulloptional
btn2Stringanyoptional
disableBtn2Booleanadd or remove 'disabled' attributeoptional
hideBtn2Booleanmount item or nulloptional
redirectFunctionon click : redirect to chosen urloptional
hideHeaderBooleanmount item or nulloptional
hideFooterBooleanmount item or nulloptional

Custom Modal using _props_

Accessibility

- only semantic html tags,
- required ARIA attributes,
- custom focus handlers,

to improve the user experience while keyboard navigation.

ARIA attributes

 <section
    tabIndex={-1}
    role="dialog"
    aria-modal="true"
    id="modal-component"
    aria-label="pop up message"
    aria-labelledby="dialogTitle"
    aria-describedby="dialogDescription"
    className="modal-container"
  >
  {/* code */}
  </section>

Focus handling

🔘 Auto focus on modal when open
🔘 Focus on each element by "Tab" (or "shift" + "Tab") key press
🔘 So that content can be read by screen readers
🔘 Escape key press to close modal

Custom focus to fit with your App design

Custom Modal using _props_

Use

Import the plugin & its hook in your React component

import { Modal, useModal } from 'codexarama-modal';

Import UseNavigate hook if you need to implement redirect function

import { useNavigate } from 'react-router-dom'; // !!! IN ROUTING CONTEXT

Use the default assets to beautify your modal (like exemple)

      <Modal
        x={close}
        icon={thumbUp}
        // or icon={validate}
      />

& CREATE YOURS !

Here is a fully exemple with helpfull comments

import { Modal, useModal } from 'codexarama-modal';
import { useEffect } from 'react';
// import { useNavigate } from 'react-router-dom'; // !!! IN ROUTING CONTEXT

export default function Exemple() {
  const { isOpen, toggle, escToClose } = useModal();

  // detects when escape key pressed to close the modal
  // and stops event propagation when occured
  useEffect(() => {
    window.addEventListener('keydown', escToClose);
    return () => window.removeEventListener('keydown', escToClose);
  });

  // // !!! NEEDS APP ROUTING
  // const redirectTo = useNavigate();
  // function goTo() {
  //   redirectTo('url'); // replace 'url' by yours
  // }

  return (
    <>
      <button className="open-modal-btn" onClick={toggle}>
        Open Modal
      </button>

      <Modal
        // MINIMAL (required)
        modal={isOpen}                  // useModal hook
        close={toggle}                  // useModal hook
        x={close}                       // replace with the name of your import

        // ADDITIONAL (optional)
        icon={thumbUp}                  // replace with the name of your import
        title="Confirmation"            // replace with any string
        msgL1="Modal plugin"            // replace with any string
        msgL2="successfully installed"  // replace with any string
        btn1="Back"                     // replace with any string
        btn2="Redirect"                 // replace with any string
        // redirect={goTo}              // !!! NEEDS APP ROUTING

        // DISABLE (optional)
        // disableBtn1={true}           // decomment to disable btn1
        disableBtn2={true}              // comment to enable btn2

        // HIDE (optional)
        // hideIcon={true}              // decomment to hide icon
        // hideTitle={true}             // decomment to hide title
        // hideMsgL2 ={true}            // decomment to hide msgL2
        // hideBtn1 ={true}             // decomment to hide btn1
        // hideBtn2 ={true}             // decomment to hide btn2
        // hideHeader={true}            // decomment to hide header
        // hideFooter={true}            // decomment to hide footer
      />
    </>
  );
}

Custom Modal using _props_

copy and past the CSS to personalize it if needed

Style sheets are included with the package, so the modal is already customized like the exemple.
If you want to customize then to fit with your will, here are the links to get them :

Download modal.css

Download exemple.css