UNPKG

7.41 kBTypeScriptView Raw
1import * as React from "react";
2import type { Blocker, BlockerFunction, Location, ParamParseKey, Params, Path, PathMatch, PathPattern, RelativeRoutingType, Router as RemixRouter, RevalidationState, To } from "@remix-run/router";
3import { Action as NavigationType } from "@remix-run/router";
4import type { NavigateOptions, RouteContextObject, RouteMatch, RouteObject } from "./context";
5/**
6 * Returns the full href for the given "to" value. This is useful for building
7 * custom links that are also accessible and preserve right-click behavior.
8 *
9 * @see https://reactrouter.com/hooks/use-href
10 */
11export declare function useHref(to: To, { relative }?: {
12 relative?: RelativeRoutingType;
13}): string;
14/**
15 * Returns true if this component is a descendant of a <Router>.
16 *
17 * @see https://reactrouter.com/hooks/use-in-router-context
18 */
19export declare function useInRouterContext(): boolean;
20/**
21 * Returns the current location object, which represents the current URL in web
22 * browsers.
23 *
24 * Note: If you're using this it may mean you're doing some of your own
25 * "routing" in your app, and we'd like to know what your use case is. We may
26 * be able to provide something higher-level to better suit your needs.
27 *
28 * @see https://reactrouter.com/hooks/use-location
29 */
30export declare function useLocation(): Location;
31/**
32 * Returns the current navigation action which describes how the router came to
33 * the current location, either by a pop, push, or replace on the history stack.
34 *
35 * @see https://reactrouter.com/hooks/use-navigation-type
36 */
37export declare function useNavigationType(): NavigationType;
38/**
39 * Returns a PathMatch object if the given pattern matches the current URL.
40 * This is useful for components that need to know "active" state, e.g.
41 * <NavLink>.
42 *
43 * @see https://reactrouter.com/hooks/use-match
44 */
45export declare function useMatch<ParamKey extends ParamParseKey<Path>, Path extends string>(pattern: PathPattern<Path> | Path): PathMatch<ParamKey> | null;
46/**
47 * The interface for the navigate() function returned from useNavigate().
48 */
49export interface NavigateFunction {
50 (to: To, options?: NavigateOptions): void;
51 (delta: number): void;
52}
53/**
54 * Returns an imperative method for changing the location. Used by <Link>s, but
55 * may also be used by other elements to change the location.
56 *
57 * @see https://reactrouter.com/hooks/use-navigate
58 */
59export declare function useNavigate(): NavigateFunction;
60/**
61 * Returns the context (if provided) for the child route at this level of the route
62 * hierarchy.
63 * @see https://reactrouter.com/hooks/use-outlet-context
64 */
65export declare function useOutletContext<Context = unknown>(): Context;
66/**
67 * Returns the element for the child route at this level of the route
68 * hierarchy. Used internally by <Outlet> to render child routes.
69 *
70 * @see https://reactrouter.com/hooks/use-outlet
71 */
72export declare function useOutlet(context?: unknown): React.ReactElement | null;
73/**
74 * Returns an object of key/value pairs of the dynamic params from the current
75 * URL that were matched by the route path.
76 *
77 * @see https://reactrouter.com/hooks/use-params
78 */
79export declare function useParams<ParamsOrKey extends string | Record<string, string | undefined> = string>(): Readonly<[
80 ParamsOrKey
81] extends [string] ? Params<ParamsOrKey> : Partial<ParamsOrKey>>;
82/**
83 * Resolves the pathname of the given `to` value against the current location.
84 *
85 * @see https://reactrouter.com/hooks/use-resolved-path
86 */
87export declare function useResolvedPath(to: To, { relative }?: {
88 relative?: RelativeRoutingType;
89}): Path;
90/**
91 * Returns the element of the route that matched the current location, prepared
92 * with the correct context to render the remainder of the route tree. Route
93 * elements in the tree must render an <Outlet> to render their child route's
94 * element.
95 *
96 * @see https://reactrouter.com/hooks/use-routes
97 */
98export declare function useRoutes(routes: RouteObject[], locationArg?: Partial<Location> | string): React.ReactElement | null;
99export declare function useRoutesImpl(routes: RouteObject[], locationArg?: Partial<Location> | string, dataRouterState?: RemixRouter["state"]): React.ReactElement | null;
100declare type RenderErrorBoundaryProps = React.PropsWithChildren<{
101 location: Location;
102 revalidation: RevalidationState;
103 error: any;
104 component: React.ReactNode;
105 routeContext: RouteContextObject;
106}>;
107declare type RenderErrorBoundaryState = {
108 location: Location;
109 revalidation: RevalidationState;
110 error: any;
111};
112export declare class RenderErrorBoundary extends React.Component<RenderErrorBoundaryProps, RenderErrorBoundaryState> {
113 constructor(props: RenderErrorBoundaryProps);
114 static getDerivedStateFromError(error: any): {
115 error: any;
116 };
117 static getDerivedStateFromProps(props: RenderErrorBoundaryProps, state: RenderErrorBoundaryState): {
118 error: any;
119 location: Location;
120 revalidation: RevalidationState;
121 };
122 componentDidCatch(error: any, errorInfo: any): void;
123 render(): string | number | boolean | React.ReactFragment | JSX.Element | null | undefined;
124}
125export declare function _renderMatches(matches: RouteMatch[] | null, parentMatches?: RouteMatch[], dataRouterState?: RemixRouter["state"] | null): React.ReactElement | null;
126/**
127 * Returns the ID for the nearest contextual route
128 */
129export declare function useRouteId(): string;
130/**
131 * Returns the current navigation, defaulting to an "idle" navigation when
132 * no navigation is in progress
133 */
134export declare function useNavigation(): import("@remix-run/router").Navigation;
135/**
136 * Returns a revalidate function for manually triggering revalidation, as well
137 * as the current state of any manual revalidations
138 */
139export declare function useRevalidator(): {
140 revalidate: () => void;
141 state: RevalidationState;
142};
143/**
144 * Returns the active route matches, useful for accessing loaderData for
145 * parent/child routes or the route "handle" property
146 */
147export declare function useMatches(): {
148 id: string;
149 pathname: string;
150 params: Params<string>;
151 data: unknown;
152 handle: unknown;
153}[];
154/**
155 * Returns the loader data for the nearest ancestor Route loader
156 */
157export declare function useLoaderData(): unknown;
158/**
159 * Returns the loaderData for the given routeId
160 */
161export declare function useRouteLoaderData(routeId: string): unknown;
162/**
163 * Returns the action data for the nearest ancestor Route action
164 */
165export declare function useActionData(): unknown;
166/**
167 * Returns the nearest ancestor Route error, which could be a loader/action
168 * error or a render error. This is intended to be called from your
169 * ErrorBoundary/errorElement to display a proper error message.
170 */
171export declare function useRouteError(): unknown;
172/**
173 * Returns the happy-path data from the nearest ancestor <Await /> value
174 */
175export declare function useAsyncValue(): unknown;
176/**
177 * Returns the error from the nearest ancestor <Await /> value
178 */
179export declare function useAsyncError(): unknown;
180/**
181 * Allow the application to block navigations within the SPA and present the
182 * user a confirmation dialog to confirm the navigation. Mostly used to avoid
183 * using half-filled form data. This does not handle hard-reloads or
184 * cross-origin navigations.
185 */
186export declare function useBlocker(shouldBlock: boolean | BlockerFunction): Blocker;
187export {};