PatternFly Elements - Home PatternFly Elements

React

Using PatternFly Elements in your React app

To get web components to work with React it’s pretty easy and straightforward. If you’d like to follow along, go ahead and create a new React CodeSandbox on codesandbox.io. The React sandbox uses create-react-app to scaffold an app and you can view your changes in real-time right in the web app. With CodeSandbox, you can also add any npm dependency with just a few button clicks. If you want to run this app locally, you can clone the repository on GitHub.

“Using PatternFly Elements in your React App” is broken down into four sections:

Each section will show you exactly what you need to do with code snippets and an accompanying CodeSandbox that you can edit or fork.

Initial setup

Import React and ReactDOM at the top of the index.js file in the /src/ directory.

import React from 'react';
import ReactDOM from 'react-dom';

Adding PatternFly Elements

With the setup complete, let’s add a couple of PatternFly Elements web components to our application to make sure everything is hooked up properly. We’re going to add a card (pfe-card) and a call-to-action button (pfe-cta). Later, we’ll add an accordion (pfe-accordion) and some CSS to help with our layout (pfe-layouts).

Once again, if we were building this app locally, we’d install our dependencies from npm using yarn.

yarn add @patternfly/pfe-card @patternfly/pfe-cta

But if you’re using CodeSandbox, just search for "@patternfly/pfe-card" and "@patternfly/pfe-cta".

In our index.js file in the /src/ directory, let’s add the import statements for our components to the top of the file.

import React from "react";
import ReactDOM from "react-dom";
import "@patternfly/pfe-card";
import "@patternfly/pfe-cta";
import "./styles.css";

Let’s add some simple markup in the App function in the index.js file to see that our pfe-card and pfe-cta are working.

function App() {
return (
<div className="App">
<h1>PatternFly Elements with React</h1>
<pfe-card color-palette="lightest">
<img
alt="From https://picsum.photos/"
overflow="left right top"
src="https://picsum.photos/id/1019/300/200"
/>
<p>This is the light pfe-card and <a href="#">a link</a>.</p>
<p>
Leverage agile frameworks to provide a robust synopsis for high level
overviews. Iterative approaches to corporate strategy foster collaborative
thinking to further the overall value proposition.
</p>
<p>
Organically grow the holistic world view of disruptive innovation via
workplace diversity and empowerment.
</p>
<pfe-cta slot="footer">
<a href="#">Learn more</a>
</pfe-cta>
</pfe-card>
</div>
);
}

Below is the accompanying CodeSandbox to see that our initial setup is correct and that we’ve successfully added our web components to our app.

Now that we have a card and a call-to-action, let’s add an accordion (pfe-accordion) to our app to spice things up a bit. If we were building this app locally, we’d install our dependencies from npm using yarn.

yarn add @patternfly/pfe-accordion

If you’re using CodeSandbox, just search for “@patternfly/pfe-accordion”.

After installing pfe-accordion, add the markup to the App function in the index.js file.

<pfe-accordion>
<pfe-accordion-header>
<h3>Why do wizards need money if they could just create it?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
There is legislation that decides what you can conjure and what you can
not. Because things that you conjure out of thin air will not last, it
is illegal in the wizarding world.
</p>
</pfe-accordion-panel>
<pfe-accordion-header>
<h3>Why doesn't Harry have a portrait of his parents?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
<a href="#">The characters in the portraits</a> are not actually ghosts.
They mainly are there just to repeat common phrases or serve as a
general
<a href="foobarbaz.com">representation of the individual</a> they
depict. A portrait of his parents would not be of much help to Harry.
</p>
</pfe-accordion-panel>
<pfe-accordion-header>
<h3>Why is Harry considered a half-blood if both of his parents could use magic?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
Because Harry's grandparents were not able to do magic. This is
generally frowned upon by those who consider themselves pure, such as
the Malfoy's or other antagonists.
</p>
</pfe-accordion-panel>
<pfe-accordion-header>
<h3>Is Hogwarts the only wizarding school?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
No! It has been revealed that there are actually 11 long established and
prestigious schools around the globe. These include Castelobruxo in the
rainforest of Brazil, Durmstrang Institute (whereas nobody is certain of
it’s whereabouts), and Ilvermorny, right here in the United States.
</p>
</pfe-accordion-panel>
<pfe-accordion-header>
<h3>Where do the main characters work as adults?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
Harry and Hermione are at the Ministry: he ends up leading the Auror
department. Ron helps George at the joke shop and does very well. Ginny
becomes a professional Quidditch player and then sportswriter for the
Daily Prophet.
</p>
<p>
<a
href="https://www.pottermore.com/collection/characters"
target="blank"
>
Read more about the characters</a
>

</p>
</pfe-accordion-panel>
</pfe-accordion>

And we have to import pfe-accordion in index.js.

import React from "react";
import ReactDOM from "react-dom";

import "@patternfly/pfe-card";
import "@patternfly/pfe-cta";
import "@patternfly/pfe-accordion";

import "./styles.css";

Below is the accompanying CodeSandbox for adding pfe-accordion to our app.

Interacting with our web components API

After adding our accordion, let’s say that we’d like to have the first panel of the accordion open up after the page loads. To work with the accordion, there are a few things that we need to hook up.

👉 Note: React 18@experimental provides support for HTML, so the useEffect/useRef workaround is no longer needed for property setting and event listeners

First, let’s import useRef and useEffect.

import React, { useRef, useEffect } from "react";

Now let’s create a React Ref so we can work with the pfe-accordion DOM API. To learn more about Refs and the DOM in React, check out their documentation. We’ll start by creating a new ref inside our App function.

const accordion = useRef();

We'll add a useEffect callback and call the toggle method on the ref's current element (our <pfe-accordion>), so we can open the first panel of the accordion when the page loads.

useEffect(() => {
accordion.current.toggle(0);
});

Next, let’s add all of our markup from the App function we had previously to our return method. We’ll also want to add a ref attribute to the opening tag of pfe-accordion and set it equal to {accordion}.

function App() {
const accordion = useRef();

useEffect(() => {
accordion.current.toggle(0);
});

return (
<div className="App">
<h1>PatternFly Elements with React</h1>
<section>
<pfe-card color-palette="lightest" border>
<img
alt="From https://picsum.photos/"
overflow="left right top"
src="https://picsum.photos/id/1019/300/200"
/>
<p>
This is the light pfe-card and <a href="#">a link</a>.
</p>
<p>
Leverage agile frameworks to provide a robust synopsis for high
level overviews. Iterative approaches to corporate strategy foster
collaborative thinking to further the overall value proposition.
</p>
<p>
Organically grow the holistic world view of disruptive innovation
via workplace diversity and empowerment.
</p>
<pfe-cta slot="footer">
<a href="#">Learn more</a>
</pfe-cta>
</pfe-card>
</section>
<section>
<pfe-accordion ref={accordion}>
<pfe-accordion-header>
<h3>Why do wizards need money if they could just create it?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
There is legislation that decides what you can conjure and what
you can not. Because things that you conjure out of thin air
will not last, it is illegal in the wizarding world.
</p>
</pfe-accordion-panel>
<pfe-accordion-header>
<h3>Why doesn't Harry have a portrait of his parents?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
<a href="#">The characters in the portraits</a> are not actually
ghosts. They mainly are there just to repeat common phrases or
serve as a general
<a href="foobarbaz.com">
representation of the individual
</a>{" "}
they depict. A portrait of his parents would not be of much help
to Harry.
</p>
</pfe-accordion-panel>
<pfe-accordion-header>
<h3>
Why is Harry considered a half-blood if both of his parents
could use magic?
</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
Because Harry's grandparents were not able to do magic. This is
generally frowned upon by those who consider themselves pure,
such as the Malfoy's or other antagonists.
</p>
</pfe-accordion-panel>
<pfe-accordion-header>
<h3>Is Hogwarts the only wizarding school?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
No! It has been revealed that there are actually 11 long
established and prestigious schools around the globe. These
include Castelobruxo in the rainforest of Brazil, Durmstrang
Institute (whereas nobody is certain of it’s whereabouts), and
Ilvermorny, right here in the United States.
</p>
</pfe-accordion-panel>
<pfe-accordion-header>
<h3>Where do the main characters work as adults?</h3>
</pfe-accordion-header>
<pfe-accordion-panel>
<p>
Harry and Hermione are at the Ministry: he ends up leading the
Auror department. Ron helps George at the joke shop and does
very well. Ginny becomes a professional Quidditch player and
then sportswriter for the Daily Prophet.
</p>
<p>
<a
href="https://www.pottermore.com/collection/characters"
target="blank"
>
Read more about the characters
</a>
</p>
</pfe-accordion-panel>
</pfe-accordion>
</section>
</div>
);
}

Now, when the page loads, the accordion will have the first panel opened. Below is the accompanying CodeSandbox.

Adding icing on the cake

Right now our app has a single card (pfe-card) with a call-to-action (pfe-cta) link inside it. Beneath that, we have an accordion (pfe-accordion) with the first panel opening after the page loads. Let’s make things look a bit nicer by adding in a few more cards and a grid for layout (pfe-layouts).

We’ll start by installing pfe-styles, which contains pfe-layouts, into our app. If we were building this app locally, we’d install our dependencies from npm using yarn.

yarn add @patternfly/pfe-styles

If you’re using CodeSandbox, search for “@patternfly/pfe-styles”.

Next, in index.js, let’s import the pfe-layouts stylesheet.

import React, { Component } from "react";
import ReactDOM from "react-dom";

import "@patternfly/pfe-card";
import "@patternfly/pfe-accordion";
import "@patternfly/pfe-cta";

import "@patternfly/pfe-styles/pfe-layouts.min.css";
import "./styles.css";

Finally, we’ll add the classes we need in our section of cards in the index.js file so we have three cards across on screens wider than or equal to 992px, two cards across on screens wider than or equal to 576px, and one card across on smaller screens.

<div className="pfe-l-grid pfe-m-gutters pfe-m-all-12-col-on-xs pfe-m-all-6-col-on-sm pfe-m-all-4-col-on-lg">
... cards are in here
</div>

If all of the classes above look confusing and don’t make any sense, don’t worry about it. We’ll write a post that explains how to use pfe-layouts. If you’re still curious check out pfe-layouts to getter a better understanding of the classes above.

The end result of adding pfe-layouts and a grid is in the CodeSandbox below.

I realize that may have been a lot. So let’s recap what we did.

  1. Initial Setup: Added the web component polyfills
  2. Adding PatternFly Elements (web components): Added the following web components as dependencies in our app: pfe-card, pfe-cta, and pfe-accordion
  3. Adding PatternFly Elements (web components): Imported the web components into our index.js file
  4. Adding PatternFly Elements (web components): Added the markup for our components in index.js
  5. Interacting with our web components API: Created a reference to the accordion so we could open the first panel after the page loads
  6. Adding icing on the cake: Added pfe-layouts to create a grid for our cards

Wrap up

So there you have it. We’ve added web components to our React app and gained the benefits of using portable, pre-made components that can also be used in other frameworks like Angular and Vue. If your app is written in Angular or Vue, check out our other two posts: “Using PatternFly Elements in your Angular App” and “Using PatternFly Elements in your Vue App.”