@ib-hooks/use-prevent-leave

1.0.1 • Public • Published

@ib-hooks/use-prevent-leave

React Hook to prompt the user for confirmation before leaving the page.

Installation

yarn

yarn add @ib-hooks/use-prevent-leave

npm

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

Usage

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

Package Sidebar

Install

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

Weekly Downloads

9

Version

1.0.1

License

MIT

Unpacked Size

2.15 kB

Total Files

4

Last publish

Collaborators

  • inwookie