1.0.1 • Published 3 years ago

@ib-hooks/use-prevent-leave v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@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 valueTypeDescription
FunctionsobjectAn object containing functions enablePrevent and disablePrevent, use this functions to enable/disable the leaving prevention.