react-router-dom 6.4.0-pre.0 → 6.4.0-pre.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../dom.ts","../index.tsx"],"sourcesContent":["import type { FormEncType, FormMethod } from \"@remix-run/router\";\n\nexport const defaultMethod = \"get\";\nconst defaultEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n MouseEvent,\n \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n event: LimitedMouseEvent,\n target?: string\n) {\n return (\n event.button === 0 && // Ignore everything but left clicks\n (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n !isModifiedEvent(event) // Ignore clicks with modifier keys\n );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n | string\n | ParamKeyValuePair[]\n | Record<string, string | string[]>\n | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n * let searchParams = new URLSearchParams([\n * ['sort', 'name'],\n * ['sort', 'price']\n * ]);\n *\n * you can do:\n *\n * let searchParams = createSearchParams({\n * sort: ['name', 'price']\n * });\n */\nexport function createSearchParams(\n init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n return new URLSearchParams(\n typeof init === \"string\" ||\n Array.isArray(init) ||\n init instanceof URLSearchParams\n ? init\n : Object.keys(init).reduce((memo, key) => {\n let value = init[key];\n return memo.concat(\n Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n );\n }, [] as ParamKeyValuePair[])\n );\n}\n\nexport function getSearchParamsForLocation(\n locationSearch: string,\n defaultSearchParams: URLSearchParams\n) {\n let searchParams = createSearchParams(locationSearch);\n\n for (let key of defaultSearchParams.keys()) {\n if (!searchParams.has(key)) {\n defaultSearchParams.getAll(key).forEach((value) => {\n searchParams.append(key, value);\n });\n }\n }\n\n return searchParams;\n}\n\nexport interface SubmitOptions {\n /**\n * The HTTP method used to submit the form. Overrides `<form method>`.\n * Defaults to \"GET\".\n */\n method?: FormMethod;\n\n /**\n * The action URL path used to submit the form. Overrides `<form action>`.\n * Defaults to the path of the current route.\n *\n * Note: It is assumed the path is already resolved. If you need to resolve a\n * relative path, use `useFormAction`.\n */\n action?: string;\n\n /**\n * The action URL used to submit the form. Overrides `<form encType>`.\n * Defaults to \"application/x-www-form-urlencoded\".\n */\n encType?: FormEncType;\n\n /**\n * Set `true` to replace the current entry in the browser's history stack\n * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n * to `false`.\n */\n replace?: boolean;\n}\n\nexport function getFormSubmissionInfo(\n target:\n | HTMLFormElement\n | HTMLButtonElement\n | HTMLInputElement\n | FormData\n | URLSearchParams\n | { [name: string]: string }\n | null,\n defaultAction: string,\n options: SubmitOptions\n): {\n url: URL;\n method: string;\n encType: string;\n formData: FormData;\n} {\n let method: string;\n let action: string;\n let encType: string;\n let formData: FormData;\n\n if (isFormElement(target)) {\n let submissionTrigger: HTMLButtonElement | HTMLInputElement = (\n options as any\n ).submissionTrigger;\n\n method = options.method || target.getAttribute(\"method\") || defaultMethod;\n action = options.action || target.getAttribute(\"action\") || defaultAction;\n encType =\n options.encType || target.getAttribute(\"enctype\") || defaultEncType;\n\n formData = new FormData(target);\n\n if (submissionTrigger && submissionTrigger.name) {\n formData.append(submissionTrigger.name, submissionTrigger.value);\n }\n } else if (\n isButtonElement(target) ||\n (isInputElement(target) &&\n (target.type === \"submit\" || target.type === \"image\"))\n ) {\n let form = target.form;\n\n if (form == null) {\n throw new Error(\n `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n );\n }\n\n // <button>/<input type=\"submit\"> may override attributes of <form>\n\n method =\n options.method ||\n target.getAttribute(\"formmethod\") ||\n form.getAttribute(\"method\") ||\n defaultMethod;\n action =\n options.action ||\n target.getAttribute(\"formaction\") ||\n form.getAttribute(\"action\") ||\n defaultAction;\n encType =\n options.encType ||\n target.getAttribute(\"formenctype\") ||\n form.getAttribute(\"enctype\") ||\n defaultEncType;\n\n formData = new FormData(form);\n\n // Include name + value from a <button>\n if (target.name) {\n formData.set(target.name, target.value);\n }\n } else if (isHtmlElement(target)) {\n throw new Error(\n `Cannot submit element that is not <form>, <button>, or ` +\n `<input type=\"submit|image\">`\n );\n } else {\n method = options.method || defaultMethod;\n action = options.action || defaultAction;\n encType = options.encType || defaultEncType;\n\n if (target instanceof FormData) {\n formData = target;\n } else {\n formData = new FormData();\n\n if (target instanceof URLSearchParams) {\n for (let [name, value] of target) {\n formData.append(name, value);\n }\n } else if (target != null) {\n for (let name of Object.keys(target)) {\n formData.append(name, target[name]);\n }\n }\n }\n }\n\n let { protocol, host } = window.location;\n let url = new URL(action, `${protocol}//${host}`);\n\n return { url, method, encType, formData };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport {\n Router,\n createPath,\n useHref,\n useLocation,\n useMatch,\n useNavigate,\n useRenderDataRouter,\n useResolvedPath,\n UNSAFE_RouteContext,\n UNSAFE_DataRouterContext,\n UNSAFE_DataRouterStateContext,\n} from \"react-router\";\nimport type { To } from \"react-router\";\nimport type {\n BrowserHistory,\n Fetcher,\n FormEncType,\n FormMethod,\n HashHistory,\n History,\n HydrationState,\n GetScrollRestorationKeyFunction,\n RouteObject,\n} from \"@remix-run/router\";\nimport {\n createBrowserHistory,\n createHashHistory,\n createBrowserRouter,\n createHashRouter,\n invariant,\n matchPath,\n} from \"@remix-run/router\";\n\nimport type {\n SubmitOptions,\n ParamKeyValuePair,\n URLSearchParamsInit,\n} from \"./dom\";\nimport {\n createSearchParams,\n defaultMethod,\n getFormSubmissionInfo,\n getSearchParamsForLocation,\n shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type { ParamKeyValuePair, URLSearchParamsInit };\nexport { createSearchParams };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n ActionFunction,\n DataMemoryRouterProps,\n DataRouteMatch,\n Fetcher,\n Hash,\n IndexRouteProps,\n JsonFunction,\n LayoutRouteProps,\n LoaderFunction,\n Location,\n MemoryRouterProps,\n NavigateFunction,\n NavigateOptions,\n NavigateProps,\n Navigation,\n Navigator,\n OutletProps,\n Params,\n Path,\n PathMatch,\n Pathname,\n PathPattern,\n PathRouteProps,\n RedirectFunction,\n RouteMatch,\n RouteObject,\n RouteProps,\n RouterProps,\n RoutesProps,\n Search,\n ShouldRevalidateFunction,\n To,\n} from \"react-router\";\nexport {\n DataMemoryRouter,\n MemoryRouter,\n Navigate,\n NavigationType,\n Outlet,\n Route,\n Router,\n Routes,\n createPath,\n createRoutesFromChildren,\n isRouteErrorResponse,\n generatePath,\n json,\n matchPath,\n matchRoutes,\n parsePath,\n redirect,\n renderMatches,\n resolvePath,\n useActionData,\n useHref,\n useInRouterContext,\n useLoaderData,\n useLocation,\n useMatch,\n useMatches,\n useNavigate,\n useNavigation,\n useNavigationType,\n useOutlet,\n useOutletContext,\n useParams,\n useResolvedPath,\n useRevalidator,\n useRouteError,\n useRouteLoaderData,\n useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n UNSAFE_NavigationContext,\n UNSAFE_LocationContext,\n UNSAFE_RouteContext,\n UNSAFE_DataRouterContext,\n UNSAFE_DataRouterStateContext,\n useRenderDataRouter,\n} from \"react-router\";\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\nexport interface DataBrowserRouterProps {\n children?: React.ReactNode;\n hydrationData?: HydrationState;\n fallbackElement?: React.ReactNode;\n routes?: RouteObject[];\n window?: Window;\n}\n\nexport function DataBrowserRouter({\n children,\n fallbackElement,\n hydrationData,\n routes,\n window,\n}: DataBrowserRouterProps): React.ReactElement {\n return useRenderDataRouter({\n children,\n fallbackElement,\n routes,\n createRouter: (routes) =>\n createBrowserRouter({\n routes,\n hydrationData,\n window,\n }),\n });\n}\n\nexport interface DataHashRouterProps {\n children?: React.ReactNode;\n hydrationData?: HydrationState;\n fallbackElement?: React.ReactNode;\n routes?: RouteObject[];\n window?: Window;\n}\n\nexport function DataHashRouter({\n children,\n hydrationData,\n fallbackElement,\n routes,\n window,\n}: DataBrowserRouterProps): React.ReactElement {\n return useRenderDataRouter({\n children,\n fallbackElement,\n routes,\n createRouter: (routes) =>\n createHashRouter({\n routes,\n hydrationData,\n window,\n }),\n });\n}\n\nexport interface BrowserRouterProps {\n basename?: string;\n children?: React.ReactNode;\n window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n basename,\n children,\n window,\n}: BrowserRouterProps) {\n let historyRef = React.useRef<BrowserHistory>();\n if (historyRef.current == null) {\n historyRef.current = createBrowserHistory({ window, v5Compat: true });\n }\n\n let history = historyRef.current;\n let [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n <Router\n basename={basename}\n children={children}\n location={state.location}\n navigationType={state.action}\n navigator={history}\n />\n );\n}\n\nexport interface HashRouterProps {\n basename?: string;\n children?: React.ReactNode;\n window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({ basename, children, window }: HashRouterProps) {\n let historyRef = React.useRef<HashHistory>();\n if (historyRef.current == null) {\n historyRef.current = createHashHistory({ window, v5Compat: true });\n }\n\n let history = historyRef.current;\n let [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n <Router\n basename={basename}\n children={children}\n location={state.location}\n navigationType={state.action}\n navigator={history}\n />\n );\n}\n\nexport interface HistoryRouterProps {\n basename?: string;\n children?: React.ReactNode;\n history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({ basename, children, history }: HistoryRouterProps) {\n const [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n <Router\n basename={basename}\n children={children}\n location={state.location}\n navigationType={state.action}\n navigator={history}\n />\n );\n}\n\nif (__DEV__) {\n HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n reloadDocument?: boolean;\n replace?: boolean;\n state?: any;\n resetScroll?: boolean;\n to: To;\n}\n\n/**\n * The public API for rendering a history-aware <a>.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n function LinkWithRef(\n {\n onClick,\n reloadDocument,\n replace,\n state,\n target,\n to,\n resetScroll,\n ...rest\n },\n ref\n ) {\n let href = useHref(to);\n let internalOnClick = useLinkClickHandler(to, {\n replace,\n state,\n target,\n resetScroll,\n });\n function handleClick(\n event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n ) {\n if (onClick) onClick(event);\n if (!event.defaultPrevented && !reloadDocument) {\n internalOnClick(event);\n }\n }\n\n return (\n // eslint-disable-next-line jsx-a11y/anchor-has-content\n <a\n {...rest}\n href={href}\n onClick={handleClick}\n ref={ref}\n target={target}\n />\n );\n }\n);\n\nif (__DEV__) {\n Link.displayName = \"Link\";\n}\n\nexport interface NavLinkProps\n extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n children?:\n | React.ReactNode\n | ((props: { isActive: boolean; isPending: boolean }) => React.ReactNode);\n caseSensitive?: boolean;\n className?:\n | string\n | ((props: {\n isActive: boolean;\n isPending: boolean;\n }) => string | undefined);\n end?: boolean;\n style?:\n | React.CSSProperties\n | ((props: {\n isActive: boolean;\n isPending: boolean;\n }) => React.CSSProperties | undefined);\n}\n\n/**\n * A <Link> wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n function NavLinkWithRef(\n {\n \"aria-current\": ariaCurrentProp = \"page\",\n caseSensitive = false,\n className: classNameProp = \"\",\n end = false,\n style: styleProp,\n to,\n children,\n ...rest\n },\n ref\n ) {\n let path = useResolvedPath(to);\n let match = useMatch({ path: path.pathname, end, caseSensitive });\n\n let routerState = React.useContext(UNSAFE_DataRouterStateContext);\n let nextLocation = routerState?.navigation.location;\n let nextPath = useResolvedPath(nextLocation || \"\");\n let nextMatch = React.useMemo(\n () =>\n nextLocation\n ? matchPath(\n { path: path.pathname, end, caseSensitive },\n nextPath.pathname\n )\n : null,\n [nextLocation, path.pathname, caseSensitive, end, nextPath.pathname]\n );\n\n let isPending = nextMatch != null;\n let isActive = match != null;\n\n let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n let className: string | undefined;\n if (typeof classNameProp === \"function\") {\n className = classNameProp({ isActive, isPending });\n } else {\n // If the className prop is not a function, we use a default `active`\n // class for <NavLink />s that are active. In v5 `active` was the default\n // value for `activeClassName`, but we are removing that API and can still\n // use the old default behavior for a cleaner upgrade path and keep the\n // simple styling rules working as they currently do.\n className = [\n classNameProp,\n isActive ? \"active\" : null,\n isPending ? \"pending\" : null,\n ]\n .filter(Boolean)\n .join(\" \");\n }\n\n let style =\n typeof styleProp === \"function\"\n ? styleProp({ isActive, isPending })\n : styleProp;\n\n return (\n <Link\n {...rest}\n aria-current={ariaCurrent}\n className={className}\n ref={ref}\n style={style}\n to={to}\n >\n {typeof children === \"function\"\n ? children({ isActive, isPending })\n : children}\n </Link>\n );\n }\n);\n\nif (__DEV__) {\n NavLink.displayName = \"NavLink\";\n}\n\nexport interface FormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n /**\n * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n * \"put\", \"delete\", \"patch\".\n */\n method?: FormMethod;\n\n /**\n * Normal `<form action>` but supports React Router's relative paths.\n */\n action?: string;\n\n /**\n * Replaces the current entry in the browser history stack when the form\n * navigates. Use this if you don't want the user to be able to click \"back\"\n * to the page with the form on it.\n */\n replace?: boolean;\n\n /**\n * A function to call when the form is submitted. If you call\n * `event.preventDefault()` then this form will not do anything.\n */\n onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n (props, ref) => {\n return <FormImpl {...props} ref={ref} />;\n }\n);\n\nif (__DEV__) {\n Form.displayName = \"Form\";\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n SubmitEvent,\n Event,\n HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\ninterface FormImplProps extends FormProps {\n fetcherKey?: string;\n}\n\nconst FormImpl = React.forwardRef<HTMLFormElement, FormImplProps>(\n (\n {\n replace,\n method = defaultMethod,\n action = \".\",\n onSubmit,\n fetcherKey,\n ...props\n },\n forwardedRef\n ) => {\n let submit = useSubmitImpl(fetcherKey);\n let formMethod: FormMethod =\n method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n let formAction = useFormAction(action);\n let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n onSubmit && onSubmit(event);\n if (event.defaultPrevented) return;\n event.preventDefault();\n\n let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n .submitter as HTMLFormSubmitter | null;\n\n submit(submitter || event.currentTarget, { method, replace });\n };\n\n return (\n <form\n ref={forwardedRef}\n method={formMethod}\n action={formAction}\n onSubmit={submitHandler}\n {...props}\n />\n );\n }\n);\n\nif (__DEV__) {\n Form.displayName = \"Form\";\n}\n\ninterface ScrollRestorationProps {\n getKey?: GetScrollRestorationKeyFunction;\n storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n getKey,\n storageKey,\n}: ScrollRestorationProps) {\n useScrollRestoration({ getKey, storageKey });\n return null;\n}\n\nif (__DEV__) {\n ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n to: To,\n {\n target,\n replace: replaceProp,\n state,\n resetScroll,\n }: {\n target?: React.HTMLAttributeAnchorTarget;\n replace?: boolean;\n state?: any;\n resetScroll?: boolean;\n } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n let navigate = useNavigate();\n let location = useLocation();\n let path = useResolvedPath(to);\n\n return React.useCallback(\n (event: React.MouseEvent<E, MouseEvent>) => {\n if (shouldProcessLinkClick(event, target)) {\n event.preventDefault();\n\n // If the URL hasn't changed, a regular <a> will do a replace instead of\n // a push, so do the same here unless the replace prop is explcitly set\n let replace =\n replaceProp !== undefined\n ? replaceProp\n : createPath(location) === createPath(path);\n\n navigate(to, { replace, state, resetScroll });\n }\n },\n [location, navigate, path, replaceProp, state, target, to, resetScroll]\n );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(defaultInit?: URLSearchParamsInit) {\n warning(\n typeof URLSearchParams !== \"undefined\",\n `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n `support the URLSearchParams API. If you need to support Internet ` +\n `Explorer 11, we recommend you load a polyfill such as ` +\n `https://github.com/ungap/url-search-params\\n\\n` +\n `If you're unsure how to load polyfills, we recommend you check out ` +\n `https://polyfill.io/v3/ which provides some recommendations about how ` +\n `to load polyfills only for users that need them, instead of for every ` +\n `user.`\n );\n\n let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n\n let location = useLocation();\n let searchParams = React.useMemo(\n () =>\n getSearchParamsForLocation(\n location.search,\n defaultSearchParamsRef.current\n ),\n [location.search]\n );\n\n let navigate = useNavigate();\n let setSearchParams = React.useCallback(\n (\n nextInit: URLSearchParamsInit,\n navigateOptions?: { replace?: boolean; state?: any }\n ) => {\n navigate(\"?\" + createSearchParams(nextInit), navigateOptions);\n },\n [navigate]\n );\n\n return [searchParams, setSearchParams] as const;\n}\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n (\n /**\n * Specifies the `<form>` to be submitted to the server, a specific\n * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n * arbitrary data to submit.\n *\n * Note: When using a `<button>` its `name` and `value` will also be\n * included in the form data that is submitted.\n */\n target:\n | HTMLFormElement\n | HTMLButtonElement\n | HTMLInputElement\n | FormData\n | URLSearchParams\n | { [name: string]: string }\n | null,\n\n /**\n * Options that override the `<form>`'s own attributes. Required when\n * submitting arbitrary data without a backing `<form>`.\n */\n options?: SubmitOptions\n ): void;\n}\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n return useSubmitImpl();\n}\n\nfunction useSubmitImpl(fetcherKey?: string): SubmitFunction {\n let router = React.useContext(UNSAFE_DataRouterContext);\n let defaultAction = useFormAction();\n\n return React.useCallback(\n (target, options = {}) => {\n invariant(\n router != null,\n \"useSubmit() must be used within a <DataRouter>\"\n );\n\n if (typeof document === \"undefined\") {\n throw new Error(\n \"You are calling submit during the server render. \" +\n \"Try calling submit within a `useEffect` or callback instead.\"\n );\n }\n\n let { method, encType, formData, url } = getFormSubmissionInfo(\n target,\n defaultAction,\n options\n );\n\n let href = url.pathname + url.search;\n let opts = {\n // If replace is not specified, we'll default to false for GET and\n // true otherwise\n replace:\n options.replace != null ? options.replace === true : method !== \"get\",\n formData,\n formMethod: method as FormMethod,\n formEncType: encType as FormEncType,\n };\n if (fetcherKey) {\n router.fetch(fetcherKey, href, opts);\n } else {\n router.navigate(href, opts);\n }\n },\n [defaultAction, router, fetcherKey]\n );\n}\n\nexport function useFormAction(action = \".\"): string {\n let routeContext = React.useContext(UNSAFE_RouteContext);\n invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n let [match] = routeContext.matches.slice(-1);\n let { pathname, search } = useResolvedPath(action);\n\n if (action === \".\" && match.route.index) {\n search = search ? search.replace(/^\\?/, \"?index&\") : \"?index\";\n }\n\n return pathname + search;\n}\n\nfunction createFetcherForm(fetcherKey: string) {\n let FetcherForm = React.forwardRef<HTMLFormElement, FormProps>(\n (props, ref) => {\n return <FormImpl {...props} ref={ref} fetcherKey={fetcherKey} />;\n }\n );\n if (__DEV__) {\n FetcherForm.displayName = \"fetcher.Form\";\n }\n return FetcherForm;\n}\n\nlet fetcherId = 0;\n\ntype FetcherWithComponents<TData> = Fetcher<TData> & {\n Form: ReturnType<typeof createFetcherForm>;\n submit: ReturnType<typeof useSubmitImpl>;\n load: (href: string) => void;\n};\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>(): FetcherWithComponents<TData> {\n let router = React.useContext(UNSAFE_DataRouterContext);\n invariant(router, `useFetcher must be used within a DataRouter`);\n\n let [fetcherKey] = React.useState(() => String(++fetcherId));\n let [Form] = React.useState(() => createFetcherForm(fetcherKey));\n let [load] = React.useState(() => (href: string) => {\n invariant(router, `No router available for fetcher.load()`);\n router.fetch(fetcherKey, href);\n });\n let submit = useSubmitImpl(fetcherKey);\n\n let fetcher = router.getFetcher<TData>(fetcherKey);\n\n let fetcherWithComponents = React.useMemo(\n () => ({\n Form,\n submit,\n load,\n ...fetcher,\n }),\n [fetcher, Form, submit, load]\n );\n\n React.useEffect(() => {\n // Is this busted when the React team gets real weird and calls effects\n // twice on mount? We really just need to garbage collect here when this\n // fetcher is no longer around.\n return () => {\n if (!router) {\n console.warn(\"No fetcher available to clean up from useFetcher()\");\n return;\n }\n router.deleteFetcher(fetcherKey);\n };\n }, [router, fetcherKey]);\n\n return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): Fetcher[] {\n let state = React.useContext(UNSAFE_DataRouterStateContext);\n invariant(state, `useFetchers must be used within a DataRouter`);\n return [...state.fetchers.values()];\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a DataRouter, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n getKey,\n storageKey,\n}: {\n getKey?: GetScrollRestorationKeyFunction;\n storageKey?: string;\n} = {}) {\n let location = useLocation();\n let router = React.useContext(UNSAFE_DataRouterContext);\n let state = React.useContext(UNSAFE_DataRouterStateContext);\n\n invariant(\n router != null && state != null,\n \"useScrollRestoration must be used within a DataRouter\"\n );\n let { restoreScrollPosition, resetScrollPosition } = state;\n\n // Trigger manual scroll restoration while we're active\n React.useEffect(() => {\n window.history.scrollRestoration = \"manual\";\n return () => {\n window.history.scrollRestoration = \"auto\";\n };\n }, []);\n\n // Save positions on unload\n useBeforeUnload(\n React.useCallback(() => {\n if (state?.navigation.state === \"idle\") {\n let key =\n (getKey ? getKey(state.location, state.matches) : null) ||\n state.location.key;\n savedScrollPositions[key] = window.scrollY;\n }\n sessionStorage.setItem(\n storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n JSON.stringify(savedScrollPositions)\n );\n window.history.scrollRestoration = \"auto\";\n }, [\n storageKey,\n getKey,\n state.navigation.state,\n state.location,\n state.matches,\n ])\n );\n\n // Read in any saved scroll locations\n React.useLayoutEffect(() => {\n try {\n let sessionPositions = sessionStorage.getItem(\n storageKey || SCROLL_RESTORATION_STORAGE_KEY\n );\n if (sessionPositions) {\n savedScrollPositions = JSON.parse(sessionPositions);\n }\n } catch (e) {\n // no-op, use default empty object\n }\n }, [storageKey]);\n\n // Enable scroll restoration in the router\n React.useLayoutEffect(() => {\n let disableScrollRestoration = router?.enableScrollRestoration(\n savedScrollPositions,\n () => window.scrollY,\n getKey\n );\n return () => disableScrollRestoration && disableScrollRestoration();\n }, [router, getKey]);\n\n // Restore scrolling when state.restoreScrollPosition changes\n React.useLayoutEffect(() => {\n // Explicit false means don't do anything (used for submissions)\n if (restoreScrollPosition === false) {\n return;\n }\n\n // been here before, scroll to it\n if (typeof restoreScrollPosition === \"number\") {\n window.scrollTo(0, restoreScrollPosition);\n return;\n }\n\n // try to scroll to the hash\n if (location.hash) {\n let el = document.getElementById(location.hash.slice(1));\n if (el) {\n el.scrollIntoView();\n return;\n }\n }\n\n // Opt out of scroll reset if this link requested it\n if (resetScrollPosition === false) {\n return;\n }\n\n // otherwise go to the top on new locations\n window.scrollTo(0, 0);\n }, [location, restoreScrollPosition, resetScrollPosition]);\n}\n\nfunction useBeforeUnload(callback: () => any): void {\n React.useEffect(() => {\n window.addEventListener(\"beforeunload\", callback);\n return () => {\n window.removeEventListener(\"beforeunload\", callback);\n };\n }, [callback]);\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Utils\n////////////////////////////////////////////////////////////////////////////////\n\nfunction warning(cond: boolean, message: string): void {\n if (!cond) {\n // eslint-disable-next-line no-console\n if (typeof console !== \"undefined\") console.warn(message);\n\n try {\n // Welcome to debugging React Router!\n //\n // This error is thrown as a convenience so you can more easily\n // find the source for a warning that appears in the console by\n // enabling \"pause on exceptions\" in your JavaScript debugger.\n throw new Error(message);\n // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n}\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","isButtonElement","toLowerCase","isFormElement","isInputElement","isModifiedEvent","event","metaKey","altKey","ctrlKey","shiftKey","shouldProcessLinkClick","target","button","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","getSearchParamsForLocation","locationSearch","defaultSearchParams","searchParams","has","getAll","forEach","append","getFormSubmissionInfo","defaultAction","options","method","action","encType","formData","submissionTrigger","getAttribute","FormData","name","type","form","Error","set","protocol","host","window","location","url","URL","DataBrowserRouter","children","fallbackElement","hydrationData","routes","useRenderDataRouter","createRouter","createBrowserRouter","DataHashRouter","createHashRouter","BrowserRouter","basename","historyRef","React","useRef","current","createBrowserHistory","v5Compat","history","state","setState","useState","useLayoutEffect","listen","createElement","Router","navigationType","navigator","HashRouter","createHashHistory","HistoryRouter","displayName","Link","forwardRef","LinkWithRef","ref","onClick","reloadDocument","replace","to","resetScroll","rest","href","useHref","internalOnClick","useLinkClickHandler","handleClick","defaultPrevented","NavLink","NavLinkWithRef","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","path","useResolvedPath","match","useMatch","pathname","routerState","useContext","UNSAFE_DataRouterStateContext","nextLocation","navigation","nextPath","nextMatch","useMemo","matchPath","isPending","isActive","ariaCurrent","undefined","filter","Boolean","join","Form","props","FormImpl","forwardedRef","onSubmit","fetcherKey","submit","useSubmitImpl","formMethod","formAction","useFormAction","submitHandler","preventDefault","submitter","nativeEvent","currentTarget","ScrollRestoration","getKey","storageKey","useScrollRestoration","replaceProp","navigate","useNavigate","useLocation","useCallback","createPath","useSearchParams","defaultInit","warning","defaultSearchParamsRef","search","setSearchParams","nextInit","navigateOptions","useSubmit","router","UNSAFE_DataRouterContext","invariant","document","opts","formEncType","fetch","routeContext","UNSAFE_RouteContext","matches","slice","route","index","createFetcherForm","FetcherForm","fetcherId","useFetcher","String","load","fetcher","getFetcher","fetcherWithComponents","useEffect","console","warn","deleteFetcher","useFetchers","fetchers","values","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","restoreScrollPosition","resetScrollPosition","scrollRestoration","useBeforeUnload","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","e","disableScrollRestoration","enableScrollRestoration","scrollTo","hash","el","getElementById","scrollIntoView","callback","addEventListener","removeEventListener","cond","message"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router DOM v6.4.0-pre.0
2
+ * React Router DOM v6.4.0-pre.4
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -13,7 +13,7 @@
13
13
  /* eslint-env node */
14
14
 
15
15
  if (process.env.NODE_ENV === "production") {
16
- module.exports = require("./umd/react-router-dom.production.min.js");
16
+ module.exports = require("./dist/umd/react-router-dom.production.min.js");
17
17
  } else {
18
- module.exports = require("./umd/react-router-dom.development.js");
18
+ module.exports = require("./dist/umd/react-router-dom.development.js");
19
19
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router DOM v6.4.0-pre.0
2
+ * React Router DOM v6.4.0-pre.4
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * @license MIT
10
10
  */
11
- import { useRef, useState, useLayoutEffect, createElement, forwardRef, useCallback, useContext, useMemo, useEffect } from 'react';
11
+ import * as React from 'react';
12
12
  import { useRenderDataRouter, Router, useHref, createPath, useResolvedPath, useMatch, UNSAFE_DataRouterStateContext, useNavigate, useLocation, UNSAFE_DataRouterContext, UNSAFE_RouteContext } from 'react-router';
13
13
  export { DataMemoryRouter, MemoryRouter, Navigate, NavigationType, Outlet, Route, Router, Routes, UNSAFE_DataRouterContext, UNSAFE_DataRouterStateContext, UNSAFE_LocationContext, UNSAFE_NavigationContext, UNSAFE_RouteContext, createPath, createRoutesFromChildren, generatePath, isRouteErrorResponse, json, matchPath, matchRoutes, parsePath, redirect, renderMatches, resolvePath, useActionData, useHref, useInRouterContext, useLoaderData, useLocation, useMatch, useMatches, useNavigate, useNavigation, useNavigationType, useOutlet, useOutletContext, useParams, useRenderDataRouter, useResolvedPath, useRevalidator, useRouteError, useRouteLoaderData, useRoutes } from 'react-router';
14
14
  import { createBrowserRouter, createHashRouter, createBrowserHistory, createHashHistory, matchPath, invariant } from '@remix-run/router';
@@ -140,17 +140,6 @@ function getFormSubmissionInfo(target, defaultAction, options) {
140
140
  host
141
141
  } = window.location;
142
142
  let url = new URL(action, `${protocol}//${host}`);
143
-
144
- if (method.toLowerCase() === "get") {
145
- for (let [name, value] of formData) {
146
- if (typeof value === "string") {
147
- url.searchParams.append(name, value);
148
- } else {
149
- throw new Error(`Cannot submit binary form data using GET`);
150
- }
151
- }
152
- }
153
-
154
143
  return {
155
144
  url,
156
145
  method,
@@ -212,7 +201,7 @@ function BrowserRouter({
212
201
  children,
213
202
  window
214
203
  }) {
215
- let historyRef = useRef();
204
+ let historyRef = React.useRef();
216
205
 
217
206
  if (historyRef.current == null) {
218
207
  historyRef.current = createBrowserHistory({
@@ -222,12 +211,12 @@ function BrowserRouter({
222
211
  }
223
212
 
224
213
  let history = historyRef.current;
225
- let [state, setState] = useState({
214
+ let [state, setState] = React.useState({
226
215
  action: history.action,
227
216
  location: history.location
228
217
  });
229
- useLayoutEffect(() => history.listen(setState), [history]);
230
- return /*#__PURE__*/createElement(Router, {
218
+ React.useLayoutEffect(() => history.listen(setState), [history]);
219
+ return /*#__PURE__*/React.createElement(Router, {
231
220
  basename: basename,
232
221
  children: children,
233
222
  location: state.location,
@@ -245,7 +234,7 @@ function HashRouter({
245
234
  children,
246
235
  window
247
236
  }) {
248
- let historyRef = useRef();
237
+ let historyRef = React.useRef();
249
238
 
250
239
  if (historyRef.current == null) {
251
240
  historyRef.current = createHashHistory({
@@ -255,12 +244,12 @@ function HashRouter({
255
244
  }
256
245
 
257
246
  let history = historyRef.current;
258
- let [state, setState] = useState({
247
+ let [state, setState] = React.useState({
259
248
  action: history.action,
260
249
  location: history.location
261
250
  });
262
- useLayoutEffect(() => history.listen(setState), [history]);
263
- return /*#__PURE__*/createElement(Router, {
251
+ React.useLayoutEffect(() => history.listen(setState), [history]);
252
+ return /*#__PURE__*/React.createElement(Router, {
264
253
  basename: basename,
265
254
  children: children,
266
255
  location: state.location,
@@ -280,12 +269,12 @@ function HistoryRouter({
280
269
  children,
281
270
  history
282
271
  }) {
283
- const [state, setState] = useState({
272
+ const [state, setState] = React.useState({
284
273
  action: history.action,
285
274
  location: history.location
286
275
  });
287
- useLayoutEffect(() => history.listen(setState), [history]);
288
- return /*#__PURE__*/createElement(Router, {
276
+ React.useLayoutEffect(() => history.listen(setState), [history]);
277
+ return /*#__PURE__*/React.createElement(Router, {
289
278
  basename: basename,
290
279
  children: children,
291
280
  location: state.location,
@@ -301,10 +290,10 @@ function HistoryRouter({
301
290
  /**
302
291
  * The public API for rendering a history-aware <a>.
303
292
  */
304
- const Link = /*#__PURE__*/forwardRef(function LinkWithRef({
293
+ const Link = /*#__PURE__*/React.forwardRef(function LinkWithRef({
305
294
  onClick,
306
295
  reloadDocument,
307
- replace = false,
296
+ replace,
308
297
  state,
309
298
  target,
310
299
  to,
@@ -330,7 +319,7 @@ const Link = /*#__PURE__*/forwardRef(function LinkWithRef({
330
319
  return (
331
320
  /*#__PURE__*/
332
321
  // eslint-disable-next-line jsx-a11y/anchor-has-content
333
- createElement("a", Object.assign({}, rest, {
322
+ React.createElement("a", Object.assign({}, rest, {
334
323
  href: href,
335
324
  onClick: handleClick,
336
325
  ref: ref,
@@ -346,7 +335,7 @@ const Link = /*#__PURE__*/forwardRef(function LinkWithRef({
346
335
  /**
347
336
  * A <Link> wrapper that knows if it's "active" or not.
348
337
  */
349
- const NavLink = /*#__PURE__*/forwardRef(function NavLinkWithRef({
338
+ const NavLink = /*#__PURE__*/React.forwardRef(function NavLinkWithRef({
350
339
  "aria-current": ariaCurrentProp = "page",
351
340
  caseSensitive = false,
352
341
  className: classNameProp = "",
@@ -362,10 +351,10 @@ const NavLink = /*#__PURE__*/forwardRef(function NavLinkWithRef({
362
351
  end,
363
352
  caseSensitive
364
353
  });
365
- let routerState = useContext(UNSAFE_DataRouterStateContext);
354
+ let routerState = React.useContext(UNSAFE_DataRouterStateContext);
366
355
  let nextLocation = routerState?.navigation.location;
367
356
  let nextPath = useResolvedPath(nextLocation || "");
368
- let nextMatch = useMemo(() => nextLocation ? matchPath({
357
+ let nextMatch = React.useMemo(() => nextLocation ? matchPath({
369
358
  path: path.pathname,
370
359
  end,
371
360
  caseSensitive
@@ -393,7 +382,7 @@ const NavLink = /*#__PURE__*/forwardRef(function NavLinkWithRef({
393
382
  isActive,
394
383
  isPending
395
384
  }) : styleProp;
396
- return /*#__PURE__*/createElement(Link, Object.assign({}, rest, {
385
+ return /*#__PURE__*/React.createElement(Link, Object.assign({}, rest, {
397
386
  "aria-current": ariaCurrent,
398
387
  className: className,
399
388
  ref: ref,
@@ -415,8 +404,8 @@ const NavLink = /*#__PURE__*/forwardRef(function NavLinkWithRef({
415
404
  * requests, allowing components to add nicer UX to the page as the form is
416
405
  * submitted and returns with data.
417
406
  */
418
- const Form = /*#__PURE__*/forwardRef((props, ref) => {
419
- return /*#__PURE__*/createElement(FormImpl, Object.assign({}, props, {
407
+ const Form = /*#__PURE__*/React.forwardRef((props, ref) => {
408
+ return /*#__PURE__*/React.createElement(FormImpl, Object.assign({}, props, {
420
409
  ref: ref
421
410
  }));
422
411
  });
@@ -425,7 +414,7 @@ const Form = /*#__PURE__*/forwardRef((props, ref) => {
425
414
  Form.displayName = "Form";
426
415
  }
427
416
 
428
- const FormImpl = /*#__PURE__*/forwardRef(({
417
+ const FormImpl = /*#__PURE__*/React.forwardRef(({
429
418
  replace,
430
419
  method: _method = defaultMethod,
431
420
  action: _action = ".",
@@ -448,7 +437,7 @@ const FormImpl = /*#__PURE__*/forwardRef(({
448
437
  });
449
438
  };
450
439
 
451
- return /*#__PURE__*/createElement("form", Object.assign({
440
+ return /*#__PURE__*/React.createElement("form", Object.assign({
452
441
  ref: forwardedRef,
453
442
  method: formMethod,
454
443
  action: formAction,
@@ -498,23 +487,16 @@ function useLinkClickHandler(to, {
498
487
  let navigate = useNavigate();
499
488
  let location = useLocation();
500
489
  let path = useResolvedPath(to);
501
- return useCallback(event => {
490
+ return React.useCallback(event => {
502
491
  if (shouldProcessLinkClick(event, target)) {
503
492
  event.preventDefault(); // If the URL hasn't changed, a regular <a> will do a replace instead of
504
- // a push, so do the same here.
505
-
506
- let replace = !!replaceProp || createPath(location) === createPath(path);
507
- let newState = state;
508
-
509
- if (resetScroll === false) {
510
- newState = { ...state,
511
- __resetScrollPosition: false
512
- };
513
- }
493
+ // a push, so do the same here unless the replace prop is explcitly set
514
494
 
495
+ let replace = replaceProp !== undefined ? replaceProp : createPath(location) === createPath(path);
515
496
  navigate(to, {
516
497
  replace,
517
- state: newState
498
+ state,
499
+ resetScroll
518
500
  });
519
501
  }
520
502
  }, [location, navigate, path, replaceProp, state, target, to, resetScroll]);
@@ -525,12 +507,12 @@ function useLinkClickHandler(to, {
525
507
  */
526
508
 
527
509
  function useSearchParams(defaultInit) {
528
- warning(typeof URLSearchParams !== "undefined", `You cannot use the \`useSearchParams\` hook in a browser that does not ` + `support the URLSearchParams API. If you need to support Internet ` + `Explorer 11, we recommend you load a polyfill such as ` + `https://github.com/ungap/url-search-params\n\n` + `If you're unsure how to load polyfills, we recommend you check out ` + `https://polyfill.io/v3/ which provides some recommendations about how ` + `to load polyfills only for users that need them, instead of for every ` + `user.`) ;
529
- let defaultSearchParamsRef = useRef(createSearchParams(defaultInit));
510
+ warning(typeof URLSearchParams !== "undefined", `You cannot use the \`useSearchParams\` hook in a browser that does not ` + `support the URLSearchParams API. If you need to support Internet ` + `Explorer 11, we recommend you load a polyfill such as ` + `https://github.com/ungap/url-search-params\n\n` + `If you're unsure how to load polyfills, we recommend you check out ` + `https://polyfill.io/v3/ which provides some recommendations about how ` + `to load polyfills only for users that need them, instead of for every ` + `user.`) ;
511
+ let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));
530
512
  let location = useLocation();
531
- let searchParams = useMemo(() => getSearchParamsForLocation(location.search, defaultSearchParamsRef.current), [location.search]);
513
+ let searchParams = React.useMemo(() => getSearchParamsForLocation(location.search, defaultSearchParamsRef.current), [location.search]);
532
514
  let navigate = useNavigate();
533
- let setSearchParams = useCallback((nextInit, navigateOptions) => {
515
+ let setSearchParams = React.useCallback((nextInit, navigateOptions) => {
534
516
  navigate("?" + createSearchParams(nextInit), navigateOptions);
535
517
  }, [navigate]);
536
518
  return [searchParams, setSearchParams];
@@ -548,10 +530,10 @@ function useSubmit() {
548
530
  }
549
531
 
550
532
  function useSubmitImpl(fetcherKey) {
551
- let router = useContext(UNSAFE_DataRouterContext);
533
+ let router = React.useContext(UNSAFE_DataRouterContext);
552
534
  let defaultAction = useFormAction();
553
- return useCallback((target, options = {}) => {
554
- !(router != null) ? invariant(false, "useSubmit() must be used within a <DataRouter>") : void 0;
535
+ return React.useCallback((target, options = {}) => {
536
+ !(router != null) ? invariant(false, "useSubmit() must be used within a <DataRouter>") : void 0;
555
537
 
556
538
  if (typeof document === "undefined") {
557
539
  throw new Error("You are calling submit during the server render. " + "Try calling submit within a `useEffect` or callback instead.");
@@ -582,8 +564,8 @@ function useSubmitImpl(fetcherKey) {
582
564
  }
583
565
 
584
566
  function useFormAction(action = ".") {
585
- let routeContext = useContext(UNSAFE_RouteContext);
586
- !routeContext ? invariant(false, "useLoaderData must be used inside a RouteContext") : void 0;
567
+ let routeContext = React.useContext(UNSAFE_RouteContext);
568
+ !routeContext ? invariant(false, "useFormAction must be used inside a RouteContext") : void 0;
587
569
  let [match] = routeContext.matches.slice(-1);
588
570
  let {
589
571
  pathname,
@@ -598,8 +580,8 @@ function useFormAction(action = ".") {
598
580
  }
599
581
 
600
582
  function createFetcherForm(fetcherKey) {
601
- let FetcherForm = /*#__PURE__*/forwardRef((props, ref) => {
602
- return /*#__PURE__*/createElement(FormImpl, Object.assign({}, props, {
583
+ let FetcherForm = /*#__PURE__*/React.forwardRef((props, ref) => {
584
+ return /*#__PURE__*/React.createElement(FormImpl, Object.assign({}, props, {
603
585
  ref: ref,
604
586
  fetcherKey: fetcherKey
605
587
  }));
@@ -619,23 +601,23 @@ let fetcherId = 0;
619
601
  * for any interaction that stays on the same page.
620
602
  */
621
603
  function useFetcher() {
622
- let router = useContext(UNSAFE_DataRouterContext);
623
- !router ? invariant(false, `useFetcher must be used within a DataRouter`) : void 0;
624
- let [fetcherKey] = useState(() => String(++fetcherId));
625
- let [Form] = useState(() => createFetcherForm(fetcherKey));
626
- let [load] = useState(() => href => {
627
- !router ? invariant(false, `No router available for fetcher.load()`) : void 0;
604
+ let router = React.useContext(UNSAFE_DataRouterContext);
605
+ !router ? invariant(false, `useFetcher must be used within a DataRouter`) : void 0;
606
+ let [fetcherKey] = React.useState(() => String(++fetcherId));
607
+ let [Form] = React.useState(() => createFetcherForm(fetcherKey));
608
+ let [load] = React.useState(() => href => {
609
+ !router ? invariant(false, `No router available for fetcher.load()`) : void 0;
628
610
  router.fetch(fetcherKey, href);
629
611
  });
630
612
  let submit = useSubmitImpl(fetcherKey);
631
613
  let fetcher = router.getFetcher(fetcherKey);
632
- let fetcherWithComponents = useMemo(() => ({
614
+ let fetcherWithComponents = React.useMemo(() => ({
633
615
  Form,
634
616
  submit,
635
617
  load,
636
618
  ...fetcher
637
619
  }), [fetcher, Form, submit, load]);
638
- useEffect(() => {
620
+ React.useEffect(() => {
639
621
  // Is this busted when the React team gets real weird and calls effects
640
622
  // twice on mount? We really just need to garbage collect here when this
641
623
  // fetcher is no longer around.
@@ -656,8 +638,8 @@ function useFetcher() {
656
638
  */
657
639
 
658
640
  function useFetchers() {
659
- let state = useContext(UNSAFE_DataRouterStateContext);
660
- !state ? invariant(false, `useFetchers must be used within a DataRouter`) : void 0;
641
+ let state = React.useContext(UNSAFE_DataRouterStateContext);
642
+ !state ? invariant(false, `useFetchers must be used within a DataRouter`) : void 0;
661
643
  return [...state.fetchers.values()];
662
644
  }
663
645
  const SCROLL_RESTORATION_STORAGE_KEY = "react-router-scroll-positions";
@@ -671,22 +653,22 @@ function useScrollRestoration({
671
653
  storageKey
672
654
  } = {}) {
673
655
  let location = useLocation();
674
- let router = useContext(UNSAFE_DataRouterContext);
675
- let state = useContext(UNSAFE_DataRouterStateContext);
676
- !(router != null && state != null) ? invariant(false, "useScrollRestoration must be used within a DataRouter") : void 0;
656
+ let router = React.useContext(UNSAFE_DataRouterContext);
657
+ let state = React.useContext(UNSAFE_DataRouterStateContext);
658
+ !(router != null && state != null) ? invariant(false, "useScrollRestoration must be used within a DataRouter") : void 0;
677
659
  let {
678
660
  restoreScrollPosition,
679
661
  resetScrollPosition
680
662
  } = state; // Trigger manual scroll restoration while we're active
681
663
 
682
- useEffect(() => {
664
+ React.useEffect(() => {
683
665
  window.history.scrollRestoration = "manual";
684
666
  return () => {
685
667
  window.history.scrollRestoration = "auto";
686
668
  };
687
669
  }, []); // Save positions on unload
688
670
 
689
- useBeforeUnload(useCallback(() => {
671
+ useBeforeUnload(React.useCallback(() => {
690
672
  if (state?.navigation.state === "idle") {
691
673
  let key = (getKey ? getKey(state.location, state.matches) : null) || state.location.key;
692
674
  savedScrollPositions[key] = window.scrollY;
@@ -696,7 +678,7 @@ function useScrollRestoration({
696
678
  window.history.scrollRestoration = "auto";
697
679
  }, [storageKey, getKey, state.navigation.state, state.location, state.matches])); // Read in any saved scroll locations
698
680
 
699
- useLayoutEffect(() => {
681
+ React.useLayoutEffect(() => {
700
682
  try {
701
683
  let sessionPositions = sessionStorage.getItem(storageKey || SCROLL_RESTORATION_STORAGE_KEY);
702
684
 
@@ -707,12 +689,12 @@ function useScrollRestoration({
707
689
  }
708
690
  }, [storageKey]); // Enable scroll restoration in the router
709
691
 
710
- useLayoutEffect(() => {
692
+ React.useLayoutEffect(() => {
711
693
  let disableScrollRestoration = router?.enableScrollRestoration(savedScrollPositions, () => window.scrollY, getKey);
712
694
  return () => disableScrollRestoration && disableScrollRestoration();
713
695
  }, [router, getKey]); // Restore scrolling when state.restoreScrollPosition changes
714
696
 
715
- useLayoutEffect(() => {
697
+ React.useLayoutEffect(() => {
716
698
  // Explicit false means don't do anything (used for submissions)
717
699
  if (restoreScrollPosition === false) {
718
700
  return;
@@ -745,7 +727,7 @@ function useScrollRestoration({
745
727
  }
746
728
 
747
729
  function useBeforeUnload(callback) {
748
- useEffect(() => {
730
+ React.useEffect(() => {
749
731
  window.addEventListener("beforeunload", callback);
750
732
  return () => {
751
733
  window.removeEventListener("beforeunload", callback);