diff --git a/content/blog/2019-08-15-new-react-devtools.md b/content/blog/2019-08-15-new-react-devtools.md index 1841a51de..8e52dfae3 100644 --- a/content/blog/2019-08-15-new-react-devtools.md +++ b/content/blog/2019-08-15-new-react-devtools.md @@ -60,6 +60,9 @@ git clone https://github.com/facebook/react-devtools cd react-devtools +# Checkout the previous release branch +git checkout v3 + # Install dependencies and build the unpacked extension yarn install yarn build:extension diff --git a/content/community/conferences.md b/content/community/conferences.md index 5c5ca4156..068dae73d 100644 --- a/content/community/conferences.md +++ b/content/community/conferences.md @@ -80,7 +80,12 @@ February 27 & 28, 2020 in Sydney, Australia ### Render-Atlanta 2020 {#render-atlanta-2020} May 4-6, 2020. Atlanta, GA, USA. -[Website](https://renderatl.com) +[Website](https://renderatl.com) - [Twitter](https://twitter.com/renderATL) - [Instagram](https://www.instagram.com/renderatl/) - [Facebook](https://www.facebook.com/renderatl/) + +### React Finland 2020 {#react-finland-2020} +May 26-29 in Helsinki, Finland + +[Website](https://react-finland.fi/) - [Twitter](https://twitter.com/ReactFinland) ### React Next 2020 {#react-next-2020} June 15, 2020. Tel Aviv, Israel. diff --git a/content/community/courses.md b/content/community/courses.md index 322ec05dc..3fdfe368d 100644 --- a/content/community/courses.md +++ b/content/community/courses.md @@ -8,6 +8,8 @@ permalink: community/courses.html ## Cursos gratuitos {#free-courses} +- [Glitch: React Starter Kit](https://glitch.com/culture/react-starter-kit/) - Un curso en video gratuito en 5 partes con ejemplos de código interactivos que te ayudarán a aprender React. + - [Codecademy: React 101](https://www.codecademy.com/learn/react-101) - El curso introductorio a React de Codeacademy. - [Egghead.io: Start Learning React](https://egghead.io/courses/start-learning-react) - Esta serie explora los fundamentos básicos de React para que empieces. diff --git a/content/docs/codebase-overview.md b/content/docs/codebase-overview.md index 065572932..11b45bc83 100644 --- a/content/docs/codebase-overview.md +++ b/content/docs/codebase-overview.md @@ -217,7 +217,7 @@ Su código fuente está ubicado en [`packages/react-reconciler`](https://github. ### Sistema de Eventos {#event-system} -React implementa un sistema de eventos sintético que es agnóstico de los renderizadores y funciona con React DOM y React Native. Su código fuente está localizado en [`packages/events`](https://github.com/facebook/react/tree/master/packages/events). +React implementa un sistema de eventos sintético que es agnóstico de los renderizadores y funciona con React DOM y React Native. Su código fuente está localizado en [`packages/events`](https://github.com/facebook/react/tree/master/packages/react-events). Aquí hay un [video con una muestra en profundidad del código](https://www.youtube.com/watch?v=dRo_egw7tBc) (66 mins). diff --git a/content/docs/render-props.md b/content/docs/render-props.md index cd998e998..43bd49fe5 100644 --- a/content/docs/render-props.md +++ b/content/docs/render-props.md @@ -14,7 +14,7 @@ Un componente con una `render prop` toma una función que devuelve un elemento d )}/> ``` -Algunas bibliotecas que utilizan `render props` son [React Router](https://reacttraining.com/react-router/web/api/Route/render-func) y [Downshift](https://github.com/paypal/downshift). +Algunas bibliotecas que utilizan `render props` son [React Router](https://reacttraining.com/react-router/web/api/Route/render-func), [Downshift](https://github.com/paypal/downshift) y [Formik](https://github.com/jaredpalmer/formik). En este documento, discutiremos por qué las `render props` son útiles y cómo escribir las tuyas. diff --git a/content/docs/testing-recipes.md b/content/docs/testing-recipes.md index 609d3d74a..dd7efa5b4 100644 --- a/content/docs/testing-recipes.md +++ b/content/docs/testing-recipes.md @@ -14,8 +14,9 @@ Common testing patterns for React components. On this page, we will primarily use function components. However, these testing strategies don't depend on implementation details, and work just as well for class components too. -- [Setup/Teardown ](#setup--teardown) +- [Setup/Teardown](#setup--teardown) - [`act()`](#act) +- [Rendering](#rendering) - [Data Fetching](#data-fetching) - [Mocking Modules](#mocking-modules) - [Events](#events) diff --git a/content/docs/testing.md b/content/docs/testing.md index 57cf76db5..25d2ffed2 100644 --- a/content/docs/testing.md +++ b/content/docs/testing.md @@ -1,6 +1,6 @@ --- id: testing -title: Visión general de Pruebas +title: Visión general de pruebas permalink: docs/testing.html redirect_from: - "community/testing.html" @@ -28,7 +28,7 @@ Diferentes respuestas pueden funcionar para diferentes equipos y diferentes prod ### Herramientas recomendadas {#tools} -**[Jest](https://facebook.github.io/jest/)** Es una biblioteca de JavaScript para ejecución de pruebas que permite acceder al DOM mediante [`jsdom`](/docs/testing-environments.html#mocking-a-rendering-surface). Aunque JSDOM solo se aproxima a como realmente los navegadores web trabajan, usualmente es suficiente para probar los componentes React. Jest brinda una gran velocidad de iteración combinada con potentes funcionalidades como simular [módulos](/docs/testing-environments.html#mocking-modules) y [temporizadores](/docs/testing-environments.html#mocking-timers) esto permite tener mayor control sobre como se ejecuta el código. +**[Jest](https://facebook.github.io/jest/)** Es una biblioteca de JavaScript para ejecución de pruebas que permite acceder al DOM mediante [`jsdom`](/docs/testing-environments.html#mocking-a-rendering-surface). Aunque jsdom solo se aproxima a como realmente los navegadores web trabajan, usualmente es suficiente para probar componentes de React. Jest brinda una gran velocidad de iteración combinada con potentes funcionalidades como simular [módulos](/docs/testing-environments.html#mocking-modules) y [temporizadores](/docs/testing-environments.html#mocking-timers), esto permite tener mayor control sobre como se ejecuta el código. **[Biblioteca de Pruebas para React](https://testing-library.com/react)** es una biblioteca de utilidades que te ayudan a probar componentes React sin depender de los detalles de su implementación. Este enfoque simplifica la refactorización y también lo empuja hacia las mejores prácticas de accesibilidad, aunque no proporciona una forma de renderizar "superficialmente" un componente sin sus hijos, Jest te permite hacerlo gracias a su funcionalidad para [simular](/docs/testing-recipes.html#mocking-modules). diff --git a/content/languages.yml b/content/languages.yml index c053239fd..f93d43da2 100644 --- a/content/languages.yml +++ b/content/languages.yml @@ -59,6 +59,10 @@ translated_name: हिन्दी code: hi status: 0 +- name: Húngaro + translated_name: magyar + code: hu + status: 0 - name: Armenio translated_name: Հայերեն code: hy @@ -174,7 +178,7 @@ - name: Vietnamita translated_name: Tiếng Việt code: vi - status: 0 + status: 1 - name: Chino simplificado translated_name: 简体中文 code: zh-hans