@bro95-hooks/use-prevent-leave

1.0.0 • Public • Published

@kimbro95-hooks/leave

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

Installation

npm

npm i @kimbro95-hooks/leave

Usage

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

Package Sidebar

Install

npm i @bro95-hooks/use-prevent-leave

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

2.28 kB

Total Files

4

Last publish

Collaborators

  • kimbro95