Página de Detalles - Rutas y Enlaces - Crea tu propia React App Parte 4

in #hive-1542262 years ago

▶️ Watch on 3Speak


¡Hola a todos y bienvenidos al episodio final de "Creando una App de Países usando React"! El día de hoy elaboraremos la página de detalles de cada país. Una vez que accedemos al inicio podremos visualizar las banderas de todos los países del mundo, pero queremos que al darle clic a uno de ellos podamos ver detalles como su nombre oficial, idiomas que utilizan, moneda, y países adyacentes.

Para ellos utilizaremos el módulo de react-router-dom, que nos permitirá crear diferentes rutas

Si siguieron los pasos anteriores, primero creamos nuestra App básica de React utilizando el comando de consolta.

npx create-react-app countries-app
cd countries-app

Creamos componentes para el Buscador, el menú desplegable (Select box), uno para el encabezado (Header), uno para las tarjetas (Cards) y dentro de cada tarjeta un componente Country.

Para crear un componente, creabamos una función y le pasamos como argumentos, las propiedades de dicho componente. Por ejemplo:

const Details = (props) => {

}

React tiene la ventaja de ser declarativo, en donde no le tienes que indicar explícitamente los pasos a seguir, esto simplifica mucho el desarrollo de interfaces de usuario.

A la página de detalles le pasamos el componente y las propiedades del país seleccionado y un parámetro llamado isFetch que indica si los datos fueron cargados correctamente.

Posteriormente, creamos la estructura del componente (la cual se puede simplificar mucho más) utilizando HTML común unido a otros componentes que ya hemos creado. Recuerden que en los videos anteriores creamos la hoja de estilo (CSS) en donde definimos todas las clases que harán que la página se vea mucho más atractiva y ordenada.

Para instalar el enrutador, de la biblioteca react-router-dom, tendrémos que escribir el siguiente comando:
npm install react-router-dom
o si usas el gestor de paquetes yarn:
yarn add react-router-dom

Para usar el enrutador, tendremos que importarlo en nuestro código:

import { 
Link, 
Route, 
Switch, 
BrowserRouter as Router, 
useParams 
} from "react-router-dom"; 

En esta línea traemos los principales componentes que haran funcionar nuestro sistema de ruta:

  1. Link: Muy similar a los enlaces que vemos en las páginas con la etiqueta a, así que todos los compontentes y etiquetas que coloquemos dentro de él adoptarán el comportamiento de un enlace.
  2. BrowserRouter: Este será nuestro contenedor principal, dentro de el Router colocaremos el componante Switch, colocaremos los demás componentes de la App. Este componente usa la API del Historial para renderizar los componentes.
  3. Route: Representa a las rutas que tendrá nuestra aplicación, por ejemplo /about o /users, entre otros, este componente tiene el atributo path="" en donde colocamos el nombre de la ruta que crearemos.
  4. Switch: Se utiliza para intercambiar entre las rutas, por los que los componentes se ubican dentro de él. Este componente funciona de la siguiente manera, recorre a través de sus hijos y busca el primer componente que hace coincidencia con la URL actual. Si la URL es /users, renderiza el componente o la página de usuarios.

Por lo tanto, para utilizar el enrutador de React-Router-Dom, se utiliza una estructura como la siguiente:

import React from "react";
import {
  BrowserRouter as Router,
  Switch,
  Route,
  Link
} from "react-router-dom";

export default function App() {
  return (
      <Router>
      <div>
        <nav>
          <ul>
            <li>
              <Link to="/">Inicio</Link>
            </li>
            <li>
              <Link to="/about">Acerca de</Link>
            </li>
            <li>
              <Link to="/products">Productos</Link>
            </li>
          </ul>
        </nav>

         <Switch>
          <Route path="/about">
            <About />
          </Route>
          <Route path="/products">
            <Users />
          </Route>
            
          <Route path="/">
            <Home />
          </Route>
        </Switch>
      </div>
     </Router>
  );
}

function Home() {
  return <h2>Página de Inicio</h2>;
}

function About() {
  return (
     <div>
        <h2>Página de "Acerca de"</h2>
        </div>
    );
}

function Products() {
  return (
     <div>
        <h2>Página de Productos</h2>
        </div>
    );
}

El código anterior, muestra tres componentes, Home, About y Products(), que representan nuestras páginas y arriba tenemos la App principal, dentro de la función de la App colocamos el componentes Router, luego colocamos el resto de nuestros componentes. En este caso, la barra de navegación usando la etiqueta

.

Más abajo, tenemos el componente y dentro de este componente se encuentras las rutas , los elementos en cualquier parte de la App colocan en la URL, lo que escribamos en el atributo Path de la Ruta.

En el video aprenderás como crear una página de detalles que muestre la bandera del país seleccionado y sus detalles, y abajo tendremos varios botones (Links), que nos permitirán ir a otros países.

¿Que te ha parecido este tutorial? ¿Vieron los videos anteriores y elaboraron su propia App que consume una API REST de países? Déjamelo saber en los comentarios.

¡Saludos y espero verlos pronto!

English:

Hello everyone and welcome to the final episode of "Creating a Country App using React"! Today we will elaborate the detail page for each country. Once we access the home page we will be able to see the flags of all the countries in the world, but we want that when we click on one of them we can see details such as its official name, languages they use, currency, and adjacent countries.

For them we will use the react-router-dom module, which will allow us to create different routes.

If you followed the steps above, we first create our basic React App using the consolta command.

npx create-react-app countries-app
cd countries-app

We created components for the Finder, the drop-down menu (Select box), one for the Header, one for the Cards and inside each card a Country component.

To create a component, we created a function and passed as arguments, the properties of that component. For example:

const Details = (props) => {

}

React has the advantage of being declarative, where you don't have to explicitly indicate the steps to follow, this simplifies a lot the development of user interfaces.

To the detail page we pass the component and the properties of the selected country and a parameter called isFetch that indicates if the data was loaded correctly.

Afterwards, we create the component structure (which can be simplified much more) using common HTML linked to other components that we have already created. Remember that in the previous videos we created the style sheet (CSS) where we defined all the classes that will make the page look much more attractive and orderly.

To install the router, from the react-router-dom library, we will have to type the following command:
npm install react-router-dom
or if you use the yarn package manager:
yarn add react-router-dom.

To use the router, we will have to import it into our code:

import { 
Link, 
Route, 
Switch, 
BrowserRouter as Router, 
useParams 
} from "react-router-dom"; 

In this line we bring the main components that will make our route system work:

  1. Link: Very similar to the links that we see in the pages with the anchor tag, so all the components and tags that we place inside it will adopt the behavior of a link.
  2. BrowserRouter: This will be our main container, inside the Router we will place the Switch component, we will place the other components of the App. This component uses the History API to render the components.
  3. Route: Represents the routes that our application will have, for example /about or /users, among others, this component has the path="" attribute where we place the name of the route that we will create.
  4. Switch: Used to switch between routes, so components are placed inside it. This component works as follows, it loops through its children and finds the first component that matches the current URL. If the URL is /users, render the user page or component.

Therefore, to use the React-Router-Dom router, a structure like the following is used:

import React from "react";
import {
  BrowserRouter as Router,
  Switch,
  routes,
  link
} from "react-router-dom";

export default function App() {
  return (
    **<Router>**
      <div>
        <nav>
          <ul>
            <li>
              <Link to="/">Home</Link>
            </li>
            <li>
              <Link to="/about">About</Link>
            </li>
            <li>
              <Link to="/products">Products</Link>
            </li>
          </ul>
        </nav>

        **<Switch>**
          <Routepath="/about">
            <About />
          </Route>
          <Routepath="/products">
            <User />
          </Route>

          <Routepath="/">
            <Home />
          </Route>
        **</Switch>**
      </div>
    **</Router>**
  );
}

function Home() {
  return <h2>Home Page</h2>;
}

function About() {
  return (
<div>
<h2>"About" page</h2>
</div>
);
}

function Products() {
  return (
<div>
<h2>Products Page</h2>
</div>
);
}

The above code shows three components, Home, About and Products(), which represent our pages and above we have the main App, inside the App function we place the Router components, then we place the rest of our components . In this case, the navigation bar using the nav tag.

Further down, we have the component and within this component you will find the routes , the elements anywhere in the App put in the URL, whatever we write in the Path attribute of the Route.

In the video you will learn how to create a details page that shows the flag of the selected country and its details, and below we will have several buttons (Links), which will allow us to go to other countries.

What did you think of this tutorial? Have you seen the previous videos and developed your own App that consumes a REST API of countries? Let me know in the comments.

Bye and I hope to see you soon!


▶️ 3Speak

Sort:  


The rewards earned on this comment will go directly to the people sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.

Muy bueno esto ahora que ando aprendiendo a usar React, gracias por compartirlo en la comunidad

Muchas gracias, me alegra que te haya gustado el video 😄🤩

Congratulations @luis96xd! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s):

You published more than 40 posts.
Your next target is to reach 50 posts.

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

To support your work, I also upvoted your post!

Check out the last post from @hivebuzz:

Hive Power Up Month Challenge 2022-07 - Winners List
The 8th edition of the Hive Power Up Month starts today!
Hive Power Up Day - August 1st 2022
Support the HiveBuzz project. Vote for our proposal!