1.0.1 • Published 5 years ago

@nooks/use-prevent-leave v1.0.1

Weekly downloads
23
License
MIT
Repository
github
Last release
5 years ago

@nooks/use-prevent-leave

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

Installation

yarn

yarn add @nooks/use-prevent-leave

npm

npm i @nooks/use-prevent-leave

Usage

import React from "react";
import usePreventLeave from "@nooks/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 valueTypeDescription
FunctionsObjectA object containing functions enablePrevent and disablePrevent, use this functions to enable/disable the leaving prevention