@lchooks/use-preventleave

1.0.1 • Public • Published

@lchooks/use-prevent-leave

React Hook to prompt the user for confirmation before leaving the page. Useful when changes haven't been saved.

노마드코더 수업을 들으면서 클론코딩했습니다. Thank you nomadcoders!! https://academy.nomadcoders.co/p/introduction-to-react-hooks

Installation

yarn

yarn add @lchooks/use-prevent-leave

npm

npm i @lchooks/use-prevent-leave

Usage

import React from "react";
import usePreventLeave from "@lchooks/use-prevent-leave";

function App() {
  const { enablePrevent, disablePrevent } = usePreventLeave();
  const saveChanges = async () => {
    enablePrevent();
    await sendToApi();
    disablePrevent();
  };
  return <button onClick={saveChanges}>Save changes</button>;
}

Return

Return value Type Description
Functions Object A object containing functions enablePrevent and disablePrevent, use this functions to enable/disable the leaving prevention

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @lchooks/use-preventleave

      Weekly Downloads

      0

      Version

      1.0.1

      License

      MIT

      Unpacked Size

      2.39 kB

      Total Files

      4

      Last publish

      Collaborators

      • nnagman