Mi az a mesekönyv, és hogyan használhatom egy komponens könyvtár létrehozására a React-ben?

Az olyan keretrendszerek, mint a React, a Vue és az Angular, mind segítenek a fejlesztőknek moduláris rendszerek létrehozásában komponensek felhasználásával, de ez általában nem tartalmaz jó módot arra, hogy mindet magasabb szempontból szemléljék.

Tehát hogyan használhatjuk a Storybookot olyan könyvtárak felépítésére és olyan rendszerek tervezésére, amelyek öndokumentálják őket építés közben?

  • Mi a mesekönyv?
  • Mit fogunk építeni?
  • 0. lépés: Alkalmazás indítása
  • 1. lépés: A Storybook telepítése
  • 2. lépés: Új gomb létrehozása
  • 3. lépés: Az új Button komponensünk használata
  • Ismételés: Új fejléc komponens létrehozása
  • További mesekönyv funkciók

Mi a mesekönyv?

A Storybook egy olyan JavaScript eszköz, amely lehetővé teszi a fejlesztők számára, hogy szervezett felhasználói felületeket hozzanak létre, így mind az építési folyamat, mind a dokumentáció hatékonyabbá és könnyebben használhatóvá válik.

Miután létrehozott egy összetevőt, a Storybook segítségével létrehozhat egy "történet" fájlt, ahol importálhatja az összetevőt, és különféle felhasználási példákat hozhat létre egy iFramed homokozóban az adott összetevő használatával.

Ez szervezett és koncentrált környezetet biztosít az új alkatrészek felépítéséhez és a meglévőkön való munkához.

Mit fogunk építeni?

Új React JS alkalmazást indítunk a Create React App használatával.

Az alkalmazáson belül telepítjük a Storybookot, és létrehozunk néhány új komponenst, amelyek segítenek megtanulni, hogyan hozhatunk létre új összetevőket, amelyeken dolgozhatunk egy történetben, majd felhasználhatjuk a React alkalmazásban.

0. lépés: Alkalmazás indítása

Első lépésként a nulláról indulunk a Create React App alkalmazással. Ez segít nekünk arra koncentrálni, hogy produktívabbá váljunk a Storybookban, ahelyett, hogy végigvinnénk a jelenlegi alkalmazásba történő integrálást.

Ez azt jelenti, hogy ha már olyan alkalmazással dolgozik, amelyet a Create React App használatával hoztak létre, és amelyet nem dobtak ki, akkor továbbra is képesnek kell lennie arra, hogy folytassa az 1. részt és azon túl is!

Tehát kezdjük azzal, hogy navigálunk arra a helyre, ahol új alkalmazást szeretnénk létrehozni, és futtassuk a React App létrehozása parancsot:

npx create-react-app my-storybook 

Megjegyzés: nyugodtan cserélje my-storybookki az Ön által választott könyvtárnévre.

A futtatás befejezése után navigálhat a könyvtárba:

cd my-storybook 

És készen állunk az indulásra!

1. lépés: A Storybook telepítése

A mesekönyv szerencsére nagyon megkönnyíti az első lépéseket a React standard telepítésével. Különösen a Create React App alkalmazással a Storybook automatikusan észleli, hogy egy CRA használatával létrehozott alkalmazást használunk, és telepíti a függőségeket, és mindent felállít nekünk.

Mesekönyv inicializálása

A Storybook telepítésének megkezdéséhez futtassa:

npx -p @storybook/cli sb init 

Ha nem a Create React App alkalmazást használja, vagy az nem működött, megnézheti a rendelkezésre álló útmutatókat a dokumentumaikban.

Miután ez befejeződött, minden Storybook-függőséget telepíteni kell.

A Mesekönyv indítása

Tehát most készen állunk a mozgásra! Végül futtassa:

yarn storybook # or npm run storybook 

Amint minden befejeződik, a Storybook új fület nyit meg a böngészőben, és most üdvözlő üzenetet kell látnia az új Storybook irányítópulton belül!

Kövesse az elkötelezettséggel együtt!

2. lépés: Új gomb létrehozása

Ha tartott egy másodpercet az irányítópult körül, akkor észrevehette, hogy előre be van töltve egy demóval elérhető gombbal.

Azt is észre kell vennie, hogy ha rákattint a gombra, akkor az alul látható Műveletek fül belsejében nyomtat egy műveletet. Ez azt az eseményt mutatja, amelyet a gomb kattintásával rögzítettek.

It's simple, but this is great to get a nice feel about what to expect in storybook. The only issue is, this is meant purely for demonstration purposes, so let's build our own button to replace it.

Creating a new Button component

To get started, let's first create a few directories:

  • Under src, create a new folder called components
  • Under components, create a new folder called Button

Once you create those folders, create a new file called index.js inside of your src/components/Button folder and inside add:

// Inside src/components/Button/index.js export { default } from './Button'; 

This will import the next file we created called Button.js which will allow us to more easily import our files with src/components/Button instead of /src/components/Button/Button.

Next, let's create Button.js right next to our index.js file with the following content:

// Inside src/components/Button/Button.js import React from 'react'; const Button = ({ children, ...rest }) => { return (  { children }  ) } export default Button; 

Here, we're creating a new component called Button that adds a class of button to the element and passes through the children. We're a additionally destructuring the rest of the props into the rest variable and spreading that value into the element.

If you've followed along, your files should now look like this:

Using our new Button component

So now that we have our Button component, let's use it!

Open up the file src/stories/1-Button.stories.js and replace the line that's importing Button with:

And once you hit save, you can open back up your browser tab with your Storybook dashboard, and you can now see a button that looks mostly similar, but it uses the browser's default styles for the element. You'll even notice that if you click it, the event will still be logged under the Actions tab.

Styling our Button component

Finally, we probably don't want to use the browser default styles, so let's make it look nice.

In our src/components/Button directory, add a new file Button.css and add the following content:

/* Inside src/components/Button/Button.css */ .button { color: white; font-weight: bold; background-color: blueviolet; border: none; padding: .8em 1em; border-radius: .2rem; } 

This applies a few styles to our .button class like adding a background color and changing the font color to white.

But if you open Storybook, you'll notice it didn't do anything. To use it, we need to import it into our component.

Inside src/components/Button/Button.js add the following at the top under the React import:

import './Button.css'; 

And once you save that and open up your browser, you should now see our new button with our updated styles!

Follow along with the commit!

Step 3: Using our new Button component

The ultimate goal of our component is to use it right? So let's add it to our app.

Switching over to the React app

First we'll need to either start our React app in a new terminal tab or kill the Storybook process and start the React process there. To start the React app using Create React App, run:

yarn start # or npm run start 

Once that loads, we should have our standard Create React App if you're following along with me:

Importing and using the new button

Next, inside of src/App.js, let's import our new Button at the top of the page:

import Button from './components/Button'; 

With Button imported, we can use it. Here, we can simply add it anywhere we want in the page. I'm going to replace the Learn React link with:

Hello, Storybook!

And if we save and reload the page, we should now see our Button on the page!

Follow along with the commit

Repeat: Creating a new Header component

The great thing about Storybook and React (or any of the supported frameworks) is that this process scales to as many components as you want.

So let's build another component!

Creating our Header component

Similar to our Button, let's start off by creating the set of directories and files that give us our component.

Since we already did this once, I'm going to provide the code without walking through what's going on.

Let's start off by spinning back up our Storybook server with:

yarn storybook # or npm run storybook 

Create a Header directory inside the src/components directory.

Create an index.js file inside of src/components/Header with the following content:

// In src/components/Header/index.js export { default } from './Header'; 

Create a Header.js file inside of src/components/Header with the following content:

// In src/components/Header/Header.js import React from 'react'; import './Header.css'; const Header = ({ children }) => { return ( 

{ children }

) } export default Header;

Create a Header.css file inside of src/components/Header with the following content:

/* In src/components/Header/Header.css */ .header { font-family: sans-serif; font-size: 2.5em; color: blueviolet; border-bottom: solid 5px aqua; padding-bottom: .2em; box-shadow: 0 5px 0 blueviolet; } 

Now if you notice, if you try to open up Storybook, again, nothing will happen. This time we need to create a new story file.

Creating a new Story file

Inside src/stories, add a new file called 2-Header.stories.js:

// Inside src/stories/2-Header.stories.js import React from 'react'; import Header from '../components/Header'; export default { title: 'Header', component: Header, }; export const Text = () => Hello Header; 

Here's a breakdown of our story file:

  • First, we import our component – this is pretty standard any time we want to use it
  • The first thing we export is a default object. With Storybook, it expects the default export to be the configuration of our story, so here we provide it with a title and we pass in the component that we're using for this story
  • The second and last thing we export is the Text constant. With Storybook, any non-default export will be considered a variation that will get nested under the title that you provide in the default export

And if you save this file and open up your Storybook dashboard in the browser, you should now see the new header!

Using the Header component

Using our component is just the same as our Button component, so inside of src/App.js, let's add our Header.

After starting your React server, first import our new Header:

// In src/App.js import Header from './components/Header'; 

Then add it to the top of the page:

// In src/App.js My App 

And if you open the page, we'll see our new Header!

Follow along with the commit!

Adding more components

As you've noticed with our second Repeat step – adding a new component is pretty much the same process for any type of component we want to add. Once we have it in our library, we can develop it in a focused environment and then import it to our app to use.

You can now use this to manage your library of components and better maintain an entire system for your project!

More Storybook features

Storybook doesn't stop with just adding components, it provides the ability to configure Addons that enhance the core capabilities opening up a lot of possibilities.

Here are some of my favorites...

Story Source

When building a component system, the hope is that people can easily use these components. But if you don't have documentation, someone would have to open up the file or try to find another use example.

Instead, Story Source shows the code source of the story file you created allowing someone browsing your Storybook dashboard to get an example right along with the component output!

Storyshots

If you're a fan of automated testing, you might have heard of using Jest or another tool for adding snapshot testing to your app.

StoryShots is a way to easily add Jest snapshot testing to your component system. It creates snapshots based off of the stories you create so you can make sure that your components aren't fundamentally changing (or breaking) during development.

What's your favorite part of Storybook?

Share with me on Twitter!

Continue the conversation!

.@storybookjs is an awseome tool to manage a library of components for your project’s design system ?

It makes it fun to create and update components in a focused env ?‍?

Végigsétálok, mi is a Storybook, és hogyan kezdjem el? #Webdev # 100DaysOfCode // t.co / 4TLFlmp4Df

- Colby Fayock (@colbyfayock) 2020. június 9

Kövessen engem további Javascript, UX és egyéb érdekességekért!

  • ? Kövess a Twitteren
  • ? ️ Iratkozzon fel a Youtube-ra
  • ✉️ Iratkozzon fel a hírlevelemre