最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Confirmation Box on closing browser in React - Stack Overflow

programmeradmin0浏览0评论

I have a use case where i want to render a confirmation box when user ties close a browser tab in my react application.

I have a queue which contains the requests to be made to the backend server. I want to render confirmation dialog with some custom message if queue is not empty and user closes browser tab.

Are there any remended libraries or workflow hwich I should follow to achieve this??

I have a use case where i want to render a confirmation box when user ties close a browser tab in my react application.

I have a queue which contains the requests to be made to the backend server. I want to render confirmation dialog with some custom message if queue is not empty and user closes browser tab.

Are there any remended libraries or workflow hwich I should follow to achieve this??

Share Improve this question asked Nov 24, 2017 at 14:24 Deepanshu AroraDeepanshu Arora 4351 gold badge6 silver badges22 bronze badges 1
  • Try this library: github./igorprado/react-notification-system – Albert Olivé Corbella Commented Nov 24, 2017 at 14:57
Add a ment  | 

2 Answers 2

Reset to default 5

You can use window.onbeforeunload function, to show a popup before closing the browser window.

Eg: Inside the ponentDidMount of your ponent, write the following code:

window.onbeforeunload = function(e) {
  if( //queue not empty ) {
    return;
  }
  var dialogText = 'Dialog text here';
  e.returnValue = dialogText;
  return dialogText;
};

This is not in anyway related to React, but just a function provided by the window object. Also check browser patibility

import { useEffect, useState } from 'react';


/**
 * Confirm browser exit.
 *
 * @param defaultEnabled Start as enabled?
 * @param message Custom message (old browsers only).
 * @see https://developer.mozilla/en-US/docs/Web/API/Window/beforeunload_event
 */
export const useConfirmBrowserExit = (
  defaultEnabled = true,
  message = 'Confirm leave page'
) => {
  const [msg, setMsg] = useState<string>(message);
  const [enabled, setEnabled] = useState<boolean>(defaultEnabled);

  useEffect(() => {
    function listener(e: BeforeUnloadEvent) {
      if (enabled) {
        e.preventDefault();
        e.returnValue = msg;
        return msg;
      }
    }

    window.addEventListener('beforeunload', listener);

    return () => {
      window.removeEventListener('beforeunload', listener);
    };
  }, [msg, enabled]);

  return {
    enable(): void {
      setEnabled(true);
    },
    disable(): void {
      setEnabled(false);
    },
    setMessage(newMessage: string): void {
      setMsg(newMessage);
    },
    getMessage(): string {
      return msg;
    },
    setEnabled(status: boolean): void {
      setEnabled(status);
    },
    getEnabled(): boolean {
      return enabled;
    },
  };
};

Note

From https://developer.mozilla/en-US/docs/Web/Events/beforeunload

The support for custom messages have been removed.

发布评论

评论列表(0)

  1. 暂无评论