status-modal

0.1.57 • Public • Published

Made in Nigeria issues forks stars PRs Welcome license tweet

status-modal

A react component that you can use to render current error or success messages from a particular API endpoint

Basic usage

You can use this package by installing it with the command below

npm install status-modal

When you're done with the above step, simply import the component in your project. The snippet below shows a basic usage without some of the props

import React from "react";
import { Status } from "status-modal/dist";

export default function Home() {
  const message = "Hello status modal";

  return (
    <React.Fragment>
      <Status message={message} />
    </React.Fragment>
  );
}

By default the UI of the modal has a touch of green, which indicates a successful status message.

But, if you want to alter the style of the modal to fit the case of an error message, all you need to do is, add the status prop, and set its value to "error"

<Status message={message} status="error" />

Using status-modal with Next.js

When you install status-modal in a Next.js app and try to use it, Next.js throws an error "ReferenceError: document is not defined" this happens because the document object is not available on the server when the page is built.

You can fix this with Next.js dynamic imports, while taking note of the ssr flag.

import React from "react";
import dynamic from "next/dynamic";

// import the package with dynmaic imports
const Status = dynamic(() => import("status-modal").then((mod) => mod.Status), {
  ssr: false,
});

export default function Component() {
  const greetings = "Hello world";

  return <Status message={greetings} />;
}

Showing user authentication status.

Say you're working on a sign-in page of a web app and you need a way to let your users know the current state of their request whether it is successful or not.

You can make use of status-modal to display the error or success message you get from the API response. To do that in react, you'll probably need some state variables declared already with the useState() hook.

An example of such state variables could be the email and password of the user. Most importantly, the error and success state variables too.

import React from "react";
import axios from "axios";
import { Status } from "status-modal/dist";

export default function SignIn() {
  const [email, setEmail] = React.useState("");
  const [password, setPassword] = React.useState("");
  const [signInSuccess, setSignInSuccess] = React.useState();
  const [signInError, setSignInError] = React.useState();

  return (
    <React.Fragment>
      <form onSubmit={handleSignIn}>
        <p>sign in</p>
        ...rest of the form layout
      </form>
    </React.Fragment>
  );
}

With your form layout in place, you can start working on the handler function that signs the user in. An example looks like what you'd see in the snippet below.

const handleSignIn = async (e) => {
  e.preventDefault();

  try {
    const response = await axios({
      method: "POST",
      url: authEndpoints.login,
      data: {
        email,
        password,
      },
      headers: {
        "Content-Type": "application/json",
      },
    });
    // get the status of the request from the backend and pass it into the
    // success state variable.
    // repeat the same thing for the error message in the catch block.
    setSignInSuccess(response.data.message);
    setSignInError("");
  } catch (error) {
    setSignInError(error.response.data.msg);
    setSignInSuccess("");
  }
};

With the handler successfully in place. Next step would be to conditionally render the modals. Take a look at how below.

export default function SignIn() {
  const [email, setEmail] = React.useState("");
  const [password, setPassword] = React.useState("");
  const [signInSuccess, setSignInSuccess] = React.useState();
  const [signInError, setSignInError] = React.useState();

  return (
    <React.Fragment>
      {signInError ? <Status message={signInError} status="error" /> : null}
      {signInSuccess ? <Status message={signInSuccess} /> : null}
      <form onSubmit={handleSignIn}>
        <p>sign in</p>
        ...rest of the form layout
      </form>
    </React.Fragment>
  );
}

Want to contribute?

Checkout the contributing guide on how to go about that.

Package Sidebar

Install

npm i status-modal

Weekly Downloads

1

Version

0.1.57

License

MIT

Unpacked Size

28.1 kB

Total Files

6

Last publish

Collaborators

  • sevens_