1.1.0 • Published 4 years ago

@sook/use-prevent-leave v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

@sook/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 @sook/use-prevent-leave

npm

npm i @sook/use-prevent-leave

Usage

import React from "react";
import usePreventLeave from "@sook/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