`react router ^5.1.2` 在有正在編輯的內容未保存時,發生了路由切換,此時需要給出一些提示,並由用戶控制是否進行跳轉。 在 進行路由管理時,可以使用 組件實現此功能,其中的 屬性可以接受一個函數,返回 的時候就提示,預設為window.confirm進行提示,用戶可以選擇是否跳轉; ...
react-router
版本 ^5.1.2
在有正在編輯的內容未保存時,發生了路由切換,此時需要給出一些提示,並由用戶控制是否進行跳轉。
在react-router
進行路由管理時,可以使用 Prompt
組件實現此功能,其中的message
屬性可以接受一個函數,返回string
的時候就提示,預設為window.confirm進行提示,用戶可以選擇是否跳轉;返回true
的時候就直接路由切換,不進行提示。
可以將Prompt
進行簡單的封裝,如下:
import { Prompt} from "react-router-dom";
export default function RouterPrompt ({message,promptBoolean}) {
// Will be called with the next location and action the user is attempting to navigate to. Return a string to show a prompt to the user or true to allow the transition.
return <Prompt message={
location =>
!promptBoolean
? true
: message || '當前頁面有未保存的內容,是否離開?'
}
/>
}
使用的時候,哪個組件需要在離開時進行提示,引入一下就行,可以放在組件的任意位置。是否需要提示由使用者自己控制。
<div className="hardware">
{/* 這裡是根據輸入框的編輯狀態來設置是否需要提示 */}
<RouterPrompt promptBoolean={EDIT_STATUS}></RouterPrompt>
{/* 其他內容 */}
</div>
提示預設使用的是window.confirm
,但還可以通過getUserConfirmation
進行自定義。
import { HashRouter as Router} from "react-router-dom";
import { Modal} from 'antd';
// message 就是window.confirm的message,通過callback控制是否通過
// 這裡直接使用antd的Modal組件
customConfirm = (message,callback) => {
Modal.confirm({
title:message,
onCancel: () => {
callback(false);
},
onOk: () => {
callback(true);
}
})
}
<Router getUserConfirmation={customConfirm}></Router>
效果如下: