@curi/react-native
About
The @curi/react-native
package provides components to use Curi routing in a React Native application.
For more information on using Curi with React Native, please check out the React Native guide.
Installation
API
createRouterComponent
A higher-order component that returns a Router
component.
Arguments
router
A Curi router.
Return Value
A component that sets routing context data. Any component that relies on routing data must be a descendant of the Router
.
children
The Router
takes any valid React node (elements, strings, etc.) as its children
.
Link
A Link
is used for navigating within your application. By default, this will render a TouchableHighlight
. When the rendered element is pressed, it will use the router to navigate.
With the Link
, instead of providing a URI to navigate to, you specify the name of the route that you want to link to. Then, the pathname of the URI you want the component to link to will be automatically generated for you.
Props
name
The name of the route that the Link
should navigate to when it is pressed.
To navigate within the same location, the name
can be skipped. This is useful for linking to hashes within the current page.
params
If the named route (or any of its parents) include path parameters, they must be provided using the params
prop.
hash, query & state
The query
, hash
, and state
values for the location to navigate to.
children
A valid React Node (e.g. a React element, a string, or null
).
anchor
A Link
renders a TouchableHighlight
element by default, but this can be changed using the anchor
prop. This can be useful for using styled components.
rest
Any additional props attached to the Link
will be attached to the element rendered by the Link
.
AsyncLink
An AsyncLink
is similar to a Link
, but uses a render-invoked function as its children
component.
Props
name
See Link name
params
See Link params
hash, query & state
children
A render-invoked children
function that is called with the AsyncLink
's navigation state. The navigation state is false
to start, true
when the AsyncLink
is clicked, and false
when the the navigation finishes/is cancelled.
anchor
See Link anchor
rest
See Link rest
useResponse
The useResponse
hook reads the current response
and navigation
values from React's context. This will be called every time a new response is emitted.
useRouter
The useRouter
hook returns the router
object.
useActive
The useActive
hook determines if a route is active by comparing a route name (and possibly params) to a response
object.
Options
useActive
takes a single argument, an options object.
name
The name of the route to compare against the response object.
params
An object containing route parameters. These will be compared against the route params of the response object.
partial
Allows ancestor routes to be considered active when true. Defaults to false.
components
The base active check only checks that the route (i.e. pathname) is active. components
allows you to check if other components of the location are also active.
useConfirm
The useConfirm
hook adds and removes a navigation confirmation.
Arguments
fn
When passed a function, the function will be called when the user navigates and give them the option to confirm or prevent the navigation.
When called with no argument, the existing navigation confirmation will be removed.
useNavigating
The useNavigating
hook is used to determine if the application is currently navigating. It pairs up with router.cancel
to enable cancelling asynchronous navigation.
This is only useful for asynchronous routes because with synchronous routes, navigation happens immediately.
useURL
The useURL
hook creates a URL string.
Options
name
The name of the route to generate the location's pathname from. If this is not provided, the generated location's pathname will be an empty string (""
);
params
An object of params for the named route.
hash
A hash string for the location.
query
The location's query value.
By default, this is expected to be a string, but if you configure your history object with the query
option, this may be something else.
ResponseConsumer
A context consumer component for injecting response values into components. Its primary use case is in class components.
Props
children
A render-invoked function that returns a React element. This function will receive an object with response
and navigation
properties.
RouterConsumer
A context consumer component for injecting the router into components. Its primary use case is in class components.
Props
children
A render-invoked function that returns a React element. This function will receive the application's router
.