admin管理员组文章数量:1340297
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
2 Answers
Reset to default 5You 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.
本文标签: javascriptConfirmation Box on closing browser in ReactStack Overflow
版权声明:本文标题:javascript - Confirmation Box on closing browser in React - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743631061a2513116.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论