主分支
分支
main (6.23.1)dev
版本
6.23.1v4/5.xv3.x
unstable_usePrompt

unstable_usePrompt

类型声明
declare function unstable_usePrompt({
  when,
  message,
}: {
  when: boolean | BlockerFunction;
  message: string;
}) {

type BlockerFunction = (args: {
  currentLocation: Location;
  nextLocation: Location;
  historyAction: HistoryAction;
}) => boolean;

interface Location<State = any> extends Path {
  state: State;
  key: string;
}

interface Path {
  pathname: string;
  search: string;
  hash: string;
}

enum HistoryAction {
  Pop = "POP",
  Push = "PUSH",
  Replace = "REPLACE",
}

unstable_usePrompt 钩子允许您在离开当前位置之前,通过 window.confirm 提示用户确认。

这仅适用于 React Router 应用程序中的客户端导航,不会阻止文档请求。要阻止文档导航,您需要添加自己的 `beforeunload` 事件处理程序。 阻止用户导航是一种反模式,因此请仔细考虑此钩子的任何用法,并谨慎使用。在阻止用户离开半填充表单的实际用例中,您可能考虑将未保存的状态持久化到 `sessionStorage`,并在他们返回时自动重新填充它,而不是阻止他们离开。 我们不打算从此钩子中删除 `unstable_` 前缀,因为当提示打开时,跨浏览器的行为是不确定的,因此 React Router 无法保证在所有情况下都能正常工作。为了避免这种不确定性,我们建议使用 `useBlocker`,它还可以让您控制确认 UX。
function ImportantForm() {
  let [value, setValue] = React.useState("");

  // Block navigating elsewhere when data has been entered into the input
  unstable_usePrompt({
    message: "Are you sure?",
    when: ({ currentLocation, nextLocation }) =>
      value !== "" &&
      currentLocation.pathname !== nextLocation.pathname,
  });

  return (
    <Form method="post">
      <label>
        Enter some important data:
        <input
          name="data"
          value={value}
          onChange={(e) => setValue(e.target.value)}
        />
      </label>
      <button type="submit">Save</button>
    </Form>
  );
}
文档和示例 CC 4.0