Readings: Routing
Review, Research, and Discussion
- Do child components have direct access to props/state from the parent?
- No.
- When a component “wraps” another component, how does the child component’s output get rendered?
- When adding them as children.
- Can a component, such as
<Content />
, which is a child also be used as a standalone component elsewhere in the application?- Yes it can.
- What trick can a parent use to share all props with it’s children?
- By passing a function to it’s children.
Vocabulary
- props.children
- The children, in React, refer to the generic box whose contents are unknown until they’re passed from the parent component.
- It simply means that the component will display whatever is included in between the opening and closing tags while invoking the component. The component would usually be invoked from App component.
-
For further information clicks =>here
- composition
- React Composition is a development pattern based on React’s original component model where we build components from other components using explicit defined props or the implicit children prop.
-
For further information clicks =>here
Preparation
- The Router
-
When starting a new project, you need to determine which type of router to use. For browser based projects, there are
<BrowserRouter>
and<HashRouter>
components. The<BrowserRouter>
should be used when you have a server that will handle dynamic requests (knows how to respond to any possible URI), while the<HashRouter>
should be used for static websites (where the server can only respond to requests for files that it knows about). -
Usually it is preferable to use a
<BrowserRouter>
, but if your website will be hosted on a server that only serves static files, then the<HashRouter>
is a good solution. -
Router components only expect to receive a single child element. To work within this limitation, it is useful to create an
<App>
component that renders the rest of your application. Separating your application from the router is also useful for server rendering because you can re-use the<App>
on the server while switching the router to a<MemoryRouter>
.
-
- Routes
- The
<Route>
component is the main building block of React Router. Anywhere that you want to only render content based on the location’s pathname, you should use a<Route>
element.
- The
- Path
- A
<Route>
expects a path prop, which is a string that describes the pathname that the route matches — for example,<Route path='/roster'/>
should match a pathname that begins with/roster 2
. When the current location’s pathname is matched by the path, the route will render a React element. When the path does not match, the route will not render anything .
- A
- What does the
<Route>
render?-
Routes have three props that can be used to define what should be rendered when the route’s path matches. Only one should be provided to a
<Route>
element.- **component** — A React component. When a route with a component prop matches, the route will return a new element whose type is the provided React component (created using React.createElement). - **render** — A function that returns a React element 5. It will be called when the path matches. This is similar to component, but is useful for inline rendering and passing extra props to the element. - **children** — A function that returns a React element. Unlike the prior two props, this will always be rendered, regardless of whether the route’s path matches the current location.
-
For further information clicks =>here
-