This guide will cover the following topics:
react-md with the Configuration componentLayout componentuseLayoutNavigation hook and
react-routerIf you couldn't tell already, there are a lot of features and configuration
within react-md that require initializing
React Context Providers.
Since it can be annoying to have to import all of these providers manually and
initialize them, the @react-md/layout package provides a nice Configuration component
that will initialize all of these for you with reasonable defaults that can be
overridden.
The Configuration component should normally be at the root of your app and
will throw an error if you have mounted it multiple times:
12345678910111213141516171819import React from "react";
import { render } from "react-dom";
import { Configuration, ConfigurationProps } from "@react-md/layout";
import App from "./App";
// the ConfigurationProps are just all the props for the providers
// joined together. The only difference is that onResize has been
// renamed to onAppResize for the AppSizeListener
const overrides: ConfigurationProps = {
// your configuration overrides
};
render(
<Configuration {...overrides}>
<App />
</Configuration>,
document.getElementById("root")
);This component will initialize:
Dir - see @react-md/utilsAppSizeListener - see @react-md/utilsNestedDialogContextProvider - see @react-md/dialogUserInteractionModeListener - see @react-md/utilsStatesConfig - see @react-md/utilsHoverModeProvider - see @react-md/utilsIconProvider - see @react-md/iconsFormThemeProvider - see @react-md/formThe three most important Providers that are included are the AppSizeListener,
UserInteractionModeListener, and StatesConfig. The AppSizeListener is in
the @react-md/utils package that helps determine how your app is being viewed based on
media queries. The UserInteractionModeListener also comes from the @react-md/utils
package and helps determine if your app is being interacted by touch, mouse, or
keyboard to customize the styles for that experience. Finally, the
StatesConfig is the general configuration for how different interactable
elements gain different states based on the interaction mode. This also globally
controls the "ripple" effect when elements are clicked so allows for a quick
opt-out if you don't like that effect.
Once you've initialized your base Configuration, the next step is to create
your layout! This package also provides a pretty nice Layout component that
can help with this since it is a combination of the AppBar, Sheet, and
Tree packages with sensible defaults.
The layout will automatically change depending on the current app size and the default behavior can be changed if desired. The default layout is:
<main> element that automatically updates it's position for the
fixed AppBar and the persistent navigation pane when it exists.The Layout component expects a prop named navItems which is an flat object
of all the routes in your app (see @react-md/tree for more details) and also provides a
useLayoutNavigation hook that handles the selection and expansion of tree
items for you. You'll want to structure your navigation tree to have itemId
for each route in your app, text children, optional ListItem props from the
@react-md/list package, and a parentId referencing another nav item or null for it be
be at the root of the navigation tree.
If you use Typescript, this package also exports the
LayoutNavigationItemandLayoutNavigationTreetypes to help strictly type this for you.
12345678910111213141516171819202122232425262728293031import { ReactNode } from "react";
import { LayoutNavigationItem, LayoutNavigationTree } from "@react-md/layout";
import { HomeSVGIcon, TvSVGIcon } from "@react-md/material-icons";
/**
* Note: The `parentId` **must** be defaulted to `null` for the navigation tree
* to render correctly since this uses the @react-md/tree package behind the
* scenes. Each item that has a `parentId` set to `null` will appear at the root
* level of your navigation tree.
*/
function createRoute(
pathname: string,
children: string,
leftAddon: ReactNode | undefined,
parentId: string | null = null
): LayoutNavigationItem {
return {
itemId: pathname,
parentId,
to: pathname,
children,
leftAddon,
};
}
const navItems: LayoutNavigationTree = {
"/": createRoute("/", "Home", <HomeSVGIcon />),
"/route-1": createRoute("/route-1", "Route 1", <TvSVGIcon />),
};
export default navItems;The code above is a simple example for how you can create your navigation tree,
but you can also come up with your own way such as looping over a list of
routes. The only important parts are ensuring each itemId in the tree is the
current pathname for that route (with a leading /). The parentId should
reference another itemId if it should appear as a child of another route or
null if it should appear at the root level.
Now that your tree has been initialized with routes, you'll want to update your
app to use the Layout component along with this navigation tree:
1234567891011121314151617181920212223242526272829303132333435363738 import React from "react";
import { render } from "react-dom";
-import { Configuration, ConfigurationProps } from "@react-md/layout";
+import {
+ Configuration,
+ ConfigurationProps,
+ Layout,
+ useLayoutNavigation,
+} from "@react-md/layout";
+
+import navItems from "./navItems";
import App from "./App";
// the ConfigurationProps are just all the props for the providers
// joined together. The only difference is that onResize has been
// renamed to onAppResize for the AppSizeListener
const overrides: ConfigurationProps = {
// your configuration overrides
};
+const MyLayout = () => (
+ <Layout
+ title="My Title"
+ navHeaderTitle="My Nav Title"
+ treeProps={useLayoutNavigation(navItems, window.location.pathname)}
+ >
+ <App />
+ </Layout>
+);
render(
<Configuration {...overrides}>
- <App />
+ <MyLayout />
</Configuration>,
document.getElementById("root")
);Great! This should now have the general layout with your base navigation.
Now that we've done most of the initial layout setup, it's time to add our routing library into the mix for a true SPA experience. Start by adding react-router to your project:
npm install --save react-router-domOr with yarn:
yarn add react-router-domNext, let's wrap the app in the BrowserRouter and add the Link option to the
useLayoutNavigation hook:
123456789101112131415161718192021222324252627282930313233343536373839404142 import React from "react";
import { render } from "react-dom";
+import { BrowserRouter, Link } from "react-router-dom";
import {
Configuration,
ConfigurationProps,
Layout,
useLayoutNavigation,
} from "@react-md/layout";
import navItems from "./navItems";
import App from "./App";
// the ConfigurationProps are just all the props for the providers
// joined together. The only difference is that onResize has been
// renamed to onAppResize for the AppSizeListener
const overrides: ConfigurationProps = {
// your configuration overrides
};
const MyLayout = () => (
<Layout
title="My Title"
navHeaderTitle="My Nav Title"
- treeProps={useLayoutNavigation(navItems, window.location.pathname)}
+ treeProps={useLayoutNavigation(navItems, window.location.pathname, Link)}
>
<App />
</Layout>
);
render(
- <Configuration {...overrides}>
+ <BrowserRouter>
+ <Configuration {...overrides}>
<MyLayout />
- </Configuration>,
+ </Configuration>
+ </BrowserRouter>,
document.getElementById("root")
);Adding the
Linkcomponent as the third argument touseLayoutNavigationis really just a convenience option that will update any navigation item that has anhref,to, orisLinkto be rendered with that component instead of the default<div>.
We're almost done! You might notice that the navigation pane doesn't update when
a new route has changed. This is because we are using the
window.location.pathname which will not cause a re-render when changed.
Luckily, this can be fixed with the useLocation hook from react-router
itself. Let's start by moving the Layout component into a new file:
src/Layout.tsx:
123456789101112131415161718192021import React, { ReactElement } from "react";
import { Layout, useLayoutNavigation } from "@react-md/layout";
import { useLocation, Link } from "react-router-dom";
import navItems from "./navItems";
import App from "./App";
export default function MyLayout(): ReactElement {
const { pathname } = useLocation();
return (
<Layout
title="My Title"
navHeaderTitle="My Nav Title"
treeProps={useLayoutNavigation(navItems, pathname, Link)}
>
<App />
</Layout>
);
}Finally, update the main src/index.tsx file to use the customized Layout in
your app:
123456789101112131415161718192021222324252627282930313233 import React from "react";
import { render } from "react-dom";
import { BrowserRouter, Link } from "react-router-dom";
+import { Configuration, ConfigurationProps } from "@react-md/layout";
+
+import Layout from "./Layout";
-import {
- Configuration,
- ConfigurationProps,
- Layout,
- useLayoutNavigation,
-} from "@react-md/layout";
-
-import navItems from "./navItems";
-
-import App from "./App";
// the ConfigurationProps are just all the props for the providers
// joined together. The only difference is that onResize has been
// renamed to onAppResize for the AppSizeListener
const overrides: ConfigurationProps = {
// your configuration overrides
};
render(
<BrowserRouter>
<Configuration {...overrides}>
- <MyLayout />
+ <Layout />
</Configuration>
</BrowserRouter>,
document.getElementById("root")
);We're done! Clicking on one of the navigation items should now automatically update to select the current route as well as expand any parent folders as needed.
Something that can help your app flow between routes is to also add a transition
to the main content after a pathname changes. A recommended transition is the
"cross fade" transition from @react-md/transition that is just a simple opacity change
and a slight vertical movement, but any transition can be added if desired. To
keep things simple, let's update the src/Layout.tsx component to apply the
cross fade transition on route changes with the useCrossFade hook.
12345678910111213141516171819202122232425262728293031-import React, { ReactElement } from "react";
+import React, { ReactElement, useRef } from "react";
import { Layout, useLayoutNavigation } from "@react-md/layout";
+import { ENTER, useCrossFade } from "@react-md/transition";
import { useLocation, Link } from "react-router-dom";
import navItems from "./navItems";
import App from "./App";
export default function MyLayout(): ReactElement {
const { pathname } = useLocation();
+ const [_rendered, transitionProps, dispatch] = useCrossFade();
+
+ const prevPathname = useRef(pathname);
+ if (pathname !== prevPathname.current) {
+ prevPathname.current = pathname;
+ dispatch(ENTER);
+ }
return (
<Layout
title="My Title"
navHeaderTitle="My Nav Title"
treeProps={useLayoutNavigation(navItems, pathname, Link)}
+ mainProps={transitionProps}
>
<App />
</Layout>
);
};So how does this work? The useCrossFade hook returns an ordered list containing:
boolean if the content should be renderedref and className to pass to the transitionable
element (transitionProps)dispatch function that can be used to trigger an animationSince the children should always be rendered, the rendered boolean can be
ignored and just provide the transitionProps to the <main> element in the
Layout with the mainProps prop. Next, a ref is created to store the
previous pathname so that it is possible to check for pathname changes.
Finally, if there is a pathname change, the pathname ref is updated to store
the new pathname and then the ENTER stage of the transition is triggered
with the dispatch function.
You might be wondering...
"Why is the
dispatchtriggered during the render phase instead of inuseEffectoruseLayoutEffect?"
There isn't really a big reason other than I prefer handling transitions this
way instead of having a custom useEffect that skips the first callback. If the
first callback for this effect isn't cancelled, the "appear" transition will
still be triggered.
If you prefer using useEffect, here's an example of this pattern instead.
1234567891011121314151617181920212223242526272829303132333435363738394041-import React, { ReactElement, useRef } from "react";
+import React, { ReactElement, useEffect, useRef } from "react";
import { Layout, useLayoutNavigation } from "@react-md/layout";
import { ENTER, useCrossFade } from "@react-md/transition";
import { useLocation, Link } from "react-router-dom";
import navItems from "./navItems";
import App from "./App";
export default function MyLayout(): ReactElement {
const { pathname } = useLocation();
const [_rendered, transitionProps, dispatch] = useCrossFade();
const { ref: mainRef, className: mainClassName } = transitionProps;
- const prevPathname = useRef(pathname);
- if (pathname !== prevPathname.current) {
- prevPathname.current = pathname;
- dispatch(ENTER);
- }
+ const renderedOnce = useRef(false);
+ useEffect(() => {
+ if (!renderedOnce.current) {
+ renderedOnce.current = true;
+ return;
+ }
+
+ dispatch(ENTER);
+ }, [dispatch, pathname])
return (
<Layout
title="My Title"
navHeaderTitle="My Nav Title"
treeProps={useLayoutNavigation(navItems, pathname, Link)}
mainProps={transitionProps}
>
<App />
</Layout>
);
};However this is opinionated, so feel free to handle transitions however you prefer.
You can check out the completed sandbox here: https://codesandbox.io/s/react-md-creating-a-layout-c1g8c