A legjobb reagálási útmutatók

A React egy JavaScript könyvtár a felhasználói felületek felépítéséhez. A Stack Overflow 2017. évi fejlesztői felmérésének „Keretek, könyvtárak és egyéb technológiák” kategóriájában a legkedveltebbnek választották.

A React egy JavaScript könyvtár, és a rá épített React alkalmazások a böngészőben futnak, NEM a szerveren. Az ilyen jellegű alkalmazások csak szükség esetén kommunikálnak a szerverrel, ami nagyon gyorsá teszi azokat a hagyományos webhelyekhez képest, amelyek arra kényszerítik a felhasználót, hogy várja meg a kiszolgálót az egész oldalak újrarendezésére és a böngészőbe történő elküldésre.

A React felhasználói interfészek kiépítésére szolgál - amit a felhasználó lát a képernyőn, és interakcióba lép az Ön webalkalmazásának használatához. Ez a felület összetevőkre van felosztva, ahelyett, hogy egyetlen hatalmas oldala lenne, kisebb darabokra bontja, amelyeket összetevőknek nevezünk. Általánosabban fogalmazva ezt a megközelítést Modularitásnak hívják.

  • Ez deklaratív: A React deklaratív paradigmát használ, amely megkönnyíti az alkalmazásoddal való indoklást.
  • Hatékony: A React kiszámítja a DOM naprakészen tartásához szükséges minimális módosításkészletet.
  • És rugalmas: a React működik a már ismert könyvtárakkal és keretrendszerekkel.

A legjobb oktatóanyagok a React megtanulásához

A freeCodeCamp rendelkezik a YouTube-on egy React oktatóanyaggal, amely mindössze 5 óra alatt megtanítja az összes alapismeretet.

Van egy mélyebb közbenső React oktatóanyagunk is, amely megtanítja, hogyan lehet egy teljes közösségi média React alkalmazást felépíteni a Firebase használatával. 12 óra hosszú, és ha követed, megismered a React rengeteg bonyodalmát.

Miért kell megtanulni a React-et?

A Reakció összetételét jelenti, vagyis sok olyan komponenst, amely a funkciókat egy kapszulázott tartályba csomagolja.

Számos népszerű webhely használja a React-et az MVC építészeti mintájának megvalósításával. A Facebook (Részben), az Instagram (Teljesen), a Khan Akadémia (Részben), a New York Times (Részben), a Yahoo Mail (Teljesen), a Dropbox új fotó- és videogaléria-alkalmazása, a Karusszel (Teljesen) a népszerű webhelyek, amelyekről ismert, hogy a React-et használják.

Hogyan épülnek ezek a nagy alkalmazások a React segítségével? Az egyszerű válasz kis alkalmazások vagy alkatrészek felépítésével történik. Példa:

const Component2 = () => { return ( ); }; const Component3 = () => { return ( ); }; const Component1 = () => { return ( ); }; ReactDOM.render( , document.getElementById("app") );

A React többnyire deklaratív, ami azt jelenti, hogy jobban foglalkozunk azzal, hogy mit kell tennünk, nem pedig azt, hogy hogyan kell elvégezni egy adott feladatot.

A deklaratív programozás egy olyan programozási paradigma, amely a számítás logikáját fejezi ki anélkül, hogy leírná annak vezérlési folyamatát. A deklaratív programozás bizonyos előnyökkel jár, mint például csökkent mellékhatások (akkor fordulnak elő, amikor bármilyen állapotot módosítunk, vagy valamit módosítunk, vagy API-kérést küldünk), minimalizáljuk a mutálhatóságot (mivel sok absztrakt), javul az olvashatóság és kevesebb hiba.

A React egyirányú adatáramlással is rendelkezik. A React felhasználói felület valójában az állapot függvénye. Ez azt jelenti, hogy az állapot frissítésekor az UI is frissül. A felhasználói felületünk tehát az állapot változásával halad.

A React előnyei

Néhány ok a React használatára:

  1. Gyors. A React alkalmazásban készült alkalmazások képesek kezelni az összetett frissítéseket, és így is gyorsan és reagálóként működnek.
  2. Moduláris. Nagy, sűrű kódfájlok írása helyett sok kisebb, újrafelhasználható fájlt írhat. A React modularitása gyönyörű megoldás lehet a JavaScript karbantarthatósági problémáira.
  3. Skálázható. A React a legjobban teljesít olyan nagy programok között, amelyek sok változó adatot jelenítenek meg.
  4. Rugalmas. A React érdekes projektekhez használható, amelyeknek semmi köze a webalkalmazás készítéséhez. Az emberek még mindig kitalálják a React lehetőségeit. Van hely felfedezésre.

Virtuális DOM

A React varázsa a DOM értelmezéséből és a felhasználói felület létrehozásának stratégiájából fakad.

A React a virtuális DOM-ot használja egy HTML-fa megjelenítéséhez. Ezután, valahányszor megváltozik egy állapot, és kapunk egy új HTML fát, amelyet el kell vinni a böngésző DOM-be, az egész új fa megírása helyett a React csak az új fa és az előző fa közötti különbséget írja (mivel a React mindkettő fák az emlékezetben). Ez a folyamat faegyeztetés néven ismert.

Egyeztetés

A React rendelkezik egy intelligens diffing algoritmussal, amelyet arra használ, hogy DOM csomópontjában csak azt regenerálja, amit valójában regenerálni kell, miközben minden mást a jelenlegi állapotában tart. Ez a differenciálási folyamat a React virtuális DOM miatt lehetséges.

A virtuális DOM használatával a React megőrzi a memóriában az utolsó DOM verziót. Ha egy új DOM verziót kell a böngészőbe vinni, akkor az új DOM verzió is a memóriában lesz, így a React kiszámíthatja az új és a régi verzió közötti különbséget.

A React ekkor utasítja a böngészőt, hogy csak a kiszámított diff-et frissítse, és ne a teljes DOM-csomópontot. Nem számít, hányszor regeneráljuk a felületünket, a React csak az új „részleges” frissítéseket viszi a böngészőbe.

Reagáljon a Scratch-ból

Szeretné elkezdenie megtanulni a reakció alapjait anélkül, hogy elakadna egy fejlesztői környezet megteremtésében? Valószínű, hogy ha még nem ismeri a webfejlesztést, akkor egy fejlesztői környezet létrehozása kissé megfélemlítheti Önt, amikor éppen a Reactet akarja megtanulni.

Ebben a cikkben meg fogjuk vizsgálni, hogyan kezdhetjük el a React-et csak szövegszerkesztő és böngésző használatával, és semmi mást.

1 - Állítsa be a kazán lemezkódját az Emmet-mel

Kezdjük az 1. lépéssel. Kezdjük a böngészőnk egyik fájljával, az „index.html” elnevezéssel. Kezdjük a kazánlap HTML kódjával. A gyors kezdéshez ajánlom az Emmet használatát bármilyen szövegszerkesztővel. Az első sorba írja be, html:5majd nyomja meg a shift billentyűt az alábbi kód megszerzéséhez. Vagy folytathatja, és alulról bemásolhatja és beillesztheti a kódot.

html:5

Ez a következő kódot eredményezi:

      Document    

Kitölthetjük az „Ideje reagálni!” Címet.

Ez a tartalom nem jelenik meg a weboldalán. A HTML-fájl fejrészében minden olyan metaadat lesz, amelyet böngészőnk felhasználni fog a kódunk értelmezéséhez a törzs szakaszban. Ez a cím fog megjelenni az oldalunk fülén, valójában nem az oldalon.

2 - Szerezzen szkriptcímkéket a reakció és a Bábel könyvtárak erejének kihasználására

Ok, item one is checked off of our list. Let’s look at item two. We are going to set up our developer environment by using script tags to bring in React and Babel.

This is not a real life developer environment. That would be quite an elaborate setup. It would also leave us with a lot of boiler plate code and libraries that would take us off subject of learning React basics. The goal of this series is to go over the basic syntax of React and get right into coding. We are going to use tags to bring in the React Library, the React DOM library (why), and the Babel library.

 ...       ... Time to React! 

You are free to use more updated versions of these libraries as they come out. They should not create any breaking changes for the content we are covering.

What are we doing here? The HTML element is used to embed or reference an executable script. The “src” attribute points to the external script files for the React library, ReactDOM library and Babel library.

This is like if you have an electric razor. It is literally no good to you no matter how fancy the electric razor unless you can plug it into the wall and gain access to electricity. Our React code we will write will be no good to us if our browser can’t plug into these libraries to understand and interpret what we are going.

This is how our application is going to gain the power of React, it is going to be how we insert React into the Dom. We have React and ReactDOM as two different libraries because there are use cases such as React Native where rendering to the DOM isn’t needed for mobile development so the library was split so people could decide what they needed depending on the project they were working on.

Because we will need our React to make it to the DOM we’ll use both scripts. Babel is how we take advantage of ECMA script beyond ES5 and deal with something called JSX (JavaScript as XML) that we will use in React. We’ll take a deeper look at the magic of Babel in an upcoming section :)

Alright, we have completed steps 1 and 2. We have set up our boiler plate code and set up our developer environment.

3 - Render React to the DOM

Our next two steps will be to choose our location within the DOM that we want to render our React content. And we'll use another script tag for our React content within the body. Generally, as a good separations of concerns practice, this would be in its own file then linked to this html document. We’ll do that later in upcoming sections. For now, we’ll let this dwell within the body of the html document we are currently in.

Now we are going to look at how simple it is to choose a place on the DOM to render our React content. We’ll go within the body. And best practice isn’t just to throw React into the body tag to be displayed but to create a separate element, often a div, that you can treat as a root element to insert your React content.

 React has not rendered yet 

We’ll create a simple element and give it an id of “app”. We are going to be able to target this location to insert our React content much the same way you might use CSS to target an id for styling of your choice. Any react content will be rendered within the div tags with the id of app. In the meantime we’ll leave some text saying that “React has not rendered yet”. If we see this when we preview our page it means that somewhere we missed rendering React.

Now, let’s go ahead and create a script tag within our body where we will create with React for the first time. The syntax we are going to need for our script tag is to add an attribute of “type”. This specifies the media type of the script. Above in our head we used an src attribute that pointed to the external script files for the React library, ReactDOM library and Babel library.

 React has not rendered yet 

The “type” of script that we are using will be wrapped in quotes and set to "text/babel". We’ll need the ability to use babel right away as we work with JSX.

First, we are going to render React to the DOM. We will use the ReactDOM.render() method to do this. This will be a method, and remember a method is just a function attached to an object. This method will take two arguments.

 React has not rendered yet ReactDOM.render(React What, React Where);  

The first argument is the “what” of React. The second argument is the “where” of the location you want it to be placed in the DOM. Let’s start by calling our ReactDOM.render() method. Our first argument is going to be our JSX.

 React has not rendered yet ReactDOM.render( 

Hello World

, React Where );

The official react docs state: “This funny tag syntax is neither a string nor HTML. It is called JSX, and it is a syntax extension to JavaScript. We recommend using it with React to describe what the UI should look like. JSX may remind you of a template language, but it comes with the full power of JavaScript. JSX produces React “elements.”

Often times, JSX freaks people out who have been developers for a while because it looks like HTML. At a very early age developers are taught separation of concerns. HTML has its place, CSS has its place and JavaScript has its place. JSX seems to blur the lines. You are using what looks like HTML but as Facebook says it comes with the full power of JavaScript.

This can freak out veterans, so many React tutorials start without JSX which can be quite complex. We won’t do that. Because this article is directed towards those who are very young in their careers you may not bring those red flags when you see this syntax.

And JSX is just really intuitive. You can probably quite easily read this code and see that this is going to be the largest header tag displaying the text “Hello World”. No mystery and pretty straightforward. Now, let’s look at what our second argument would be.

 React has not rendered yet ReactDOM.render( 

Hello World

, document.getElementById("app") );

This is where we want our React content rendered to the DOM. You’ve probably done this quite a few times in the past. We’ll just type in document.getElementById(). And we’ll pass into the argument of the id of app. And that is it. We will now target the div with the id of app to insert our React content.

We want to make sure our content is saved. Go ahead and open this up in the browser and you should see “Hello World”. As you can probably guess, using React is not the quickest or best way to create a Hello World app. We aren’t quite seeing the benefits of it yet. But now, we know that everything is working.

Go ahead and open up the console and look at the “elements”. You can do that on a Mac with command + shift + j or on Windows and Linux: Ctrl + Shift + J

If you click on the head tag, we can see our script libraries we included. Then we can go down to the body of our document. Let’s click on our div with the id of “app”. And when we do we see our

tag with the content “Hello World”.

View Entire Code Here.

Recap

So let’s do a quick recap. In our head tag we grabbed the script tags for React, ReactDOM and Babel. These are the tools our browser needs in its meta data to read our React code and JSX in specific.

We then located the position within the DOM that we wanted to insert our React by creating an element div with the id of “app”.

Next, we created a script tag to input our React code. We used the ReactDOM.render() method that takes two arguments. The “what” of the React content, in this case our JSX, and the second argument is the “where” that you want to insert the React content into the DOM. In this case it is the location with the id of “app”.

As an alternative to JSX, you can use ES6 and Javascript’s compiler like Babel. //babeljs.io/

Installing React

Creating a new React project

You could just embed the React library in your webpage like so2:

Smart programmers want to take the more practical and productive way: Create React App

npm install -g create-react-app create-react-app my-app cd my-app npm start

This will set up your development environment so that you can use the latest JavaScript features, provide a nice developer experience, and optimize your app for production.

npm start will start up a development server which allows live reloading3.

After you finish your project and are ready to deploy your App to production, you can just use npm run build to create an optimized build of your app in the build folder.

Your first React App

Installation

As specified in the previous section (Installation), run the Create React App tool. After everything has finished, cd into the folder of your application and run npm start. This will start a development server and you are all set to start developing your app!

npm install -g react-create-app create-react-app my-first-app cd my-first-app npm start

Editing the code

Start up your editor or IDE of choice and edit the App.js file in the src folder. When created with the react-create-app tool, there will already be some code in this file.

The code will consist of these parts:

imports

import React, { Component } from 'react'; import logo from './logo.svg'; import './App.css';

This is used by webpack to import all required modules so that your code can use them. This code imports 3 modules:

  1. React and Component, which allow us to use React as it should be used. (With components)
  2. logo, which allows us to use logo.svg in this file.
  3. ./App.css, which imports the stylesheet for this file.

classes/components

class App extends Component { render() { return ( 

Welcome to React

To get started, edit src/App.js and save to reload.

); } }

React is a library that makes use of Components, which let you split up your UI into independent, reusable pieces, and think about each piece in isolation. There is already 1 component created, the App component. If you used the create-react-app tool, this component is the main component in the project and you should build around this central class.

We will look at components in more detail shortly.

exports

When creating a class in React, you should export them after declaration, which allows you to use the component in another file by using the import keyword. You can use default after the export keyword to tell React that this is the main class of this file.

export default App;

View the results!

When you’ve started the development server by issuing the npm start command, you can view the changes you add to your project live in your browser. After issuing the command, npm should open a browser automatically displaying your app.

React - Components

Components are reusable in React. You can inject value into props as given below:

function Welcome(props) { return 

Hello, {props.name}

; } const element = ; ReactDOM.render( element, document.getElementById('root') );

name="Faisal Arkan" will give value into {props.name} from the  function Welcome(props) and will return the component that has given value by name="Faisal Arkan". After that react will render the element into HTML.

Other ways to declare components

There are many ways to declare components when using React. There are two kinds of components, stateless components and stateful components.

Stateful

Class Type Components

class Cat extends React.Component { constructor(props) { super(props); this.state = { humor: 'happy' } } render() { return( 

{this.props.name}

{this.props.color}

); } }

Stateless Components

Functional Components (Arrow Function from ES6)

const Cat = props => { return ( 

{props.name}

{props.color}

; ); };

Implicit Return Components

const Cat = props =>

{props.name}

{props.color}

;