Skip to content

Commit 3404114

Browse files
markeriksonAlok Kattangoori
authored and
Alok Kattangoori
committed
Create the Redux Essentials page, take 2 (reduxjs#3740)
* Port admonition and code block CSS from RTK site * Restructure sidebars to add "Tutorials" section * Add empty "Quick Start" tutorial page * Bump Docusaurus to alpha.48 * Fix text color in admonitions * Add blockquote styling for other pages * Add DetailedExplanation component * Initial Quick Start intro content * Quick Start: add "What is Redux" and "Terms" sections * Quick Start: add "play with app" content * Quick Start: create nested folder and rename file * Store setup * Quick Start: add slice, reducer, immutability, and thunk sections * Quick start: Add React-Redux section * Quick start: emphasize immutability, highlight JSX * Tweak "know more?" and explanation styles * Fix typo and add thunk usage mention * Bump Docusaurus to alpha.50 * Temporarily rename files to .md to work around DS bug See facebook/docusaurus#2551 * Add border color for highlight lines * Add code block titles and test line highlights * Initial project setup section * Add reducer and data flow explanations * Tweak wording * Link example repo and sandbox * Update Docusaurus * Fill out "Basic Data Flow" page * Add additional phrasing * Add intro and summary content for part 3 * Shrink code block file header padding * Finish writing Part 3 * Link to Immer docs * Add initial Part 4 content * Finish Quick Start part 4 * Remove unnecessary uses of "just" * Add Part 5 outline * Update page titles * Half of part 5 * Finish Quick Start content. Yay!!!!!! * Clean up tutorial part 1 based on review feedback - Reworded several explanations - Added "Immutability" section under "concepts" - Added data flow diagram - Removed leftover example code block * Add "What You've Learned" to part 1 * Rename part 5 -> 6 * Rename part 4 -> 5 * Rename part 3 -> 4 * Rename part 2 -> 3 * Add new Part 2 * Fix up TODO comments and broken links * Swap to new dataflow diagram * Assorted edits and link fixes * Rename "Quick Start" to "Redux Essentials" * Fix links and rename images * Update example app repo/sandbox links * Clarify random seed behavior * Rework introduction content - Redid "Getting Started" page by moving RTK first and removing most of the external tutorial links, - Added RTK to "Installation" page - Added description and "Best Practices" phrase to style guide - Added external links to prereq concepts - Fixed one-way data flow image - Added "Tutorial" link to header/footer, pointing to Essentials * Remove unwanted colors from pagination buttons * Emphasize recommended tutorial * Clean up README * Fix PR preview redirect * Clarify "smallest amount" wording * Try to fix redirects
1 parent 6b26472 commit 3404114

33 files changed

+4505
-219
lines changed

README.md

+29-137
Large diffs are not rendered by default.
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React from 'react'
2+
3+
export const DetailedExplanation = ({
4+
children,
5+
title = 'Detailed Explanation'
6+
}) => {
7+
return (
8+
<details className="detailed-explanation">
9+
<summary>
10+
<h4>{title}</h4>
11+
</summary>
12+
{children}
13+
</details>
14+
)
15+
}

docs/introduction/GettingStarted.md

+41-52
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: getting-started
33
title: Getting Started with Redux
4-
description: 'Introduction : Getting Started: Resources to get started learning and using Redux'
4+
description: 'Introduction > Getting Started: Resources to get started learning and using Redux'
55
hide_title: true
66
---
77

@@ -15,25 +15,9 @@ You can use Redux together with [React](https://reactjs.org), or with any other
1515

1616
## Installation
1717

18-
Redux is available as a package on NPM for use with a module bundler or in a Node application:
18+
### Redux Toolkit
1919

20-
```bash
21-
# NPM
22-
npm install redux
23-
24-
# Yarn
25-
yarn add redux
26-
```
27-
28-
It is also available as a precompiled UMD package that defines a `window.Redux` global variable. The UMD package can be used as a [`<script>` tag](https://unpkg.com/redux/dist/redux.js) directly.
29-
30-
For more details, see the [Installation](Installation.md) page.
31-
32-
## Redux Toolkit
33-
34-
Redux itself is small and unopinionated. We also have a separate addon package called **[Redux Toolkit](https://redux-toolkit.js.org/)**,
35-
which includes some opinionated defaults that help you use Redux more effectively. It's our official recommended approach
36-
for writing Redux logic.
20+
[**Redux Toolkit**](https://redux-toolkit.js.org) is our official recommended approach for writing Redux logic. It wraps around the Redux core, and contains packages and functions that we think are essential for building a Redux app. Redux Toolkit builds in our suggested best practices, simplifies most Redux tasks, prevents common mistakes, and makes it easier to write Redux applications.
3721

3822
RTK includes utilities that help simplify many common use cases, including [store setup](https://redux-toolkit.js.org/api/configureStore),
3923
[creating reducers and writing immutable update logic](https://redux-toolkit.js.org/api/createreducer),
@@ -43,14 +27,40 @@ Whether you're a brand new Redux user setting up your first project, or an exper
4327
simplify an existing application, **[Redux Toolkit](https://redux-toolkit.js.org/)** can help you
4428
make your Redux code better.
4529

46-
## Create a React Redux App
30+
Redux Toolkit is available as a package on NPM for use with a module bundler or in a Node application:
31+
32+
```bash
33+
# NPM
34+
npm install @reduxjs/toolkit
35+
36+
# Yarn
37+
yarn add @reduxjs/toolkit
38+
```
39+
40+
### Create a React Redux App
4741

4842
The recommended way to start new apps with React and Redux is by using the [official Redux+JS template](https://github.com/reduxjs/cra-template-redux) for [Create React App](https://github.com/facebook/create-react-app), which takes advantage of **[Redux Toolkit](https://redux-toolkit.js.org/)** and React Redux's integration with React components.
4943

5044
```sh
5145
npx create-react-app my-app --template redux
5246
```
5347

48+
### Redux Core
49+
50+
The Redux core library is available as a package on NPM for use with a module bundler or in a Node application:
51+
52+
```bash
53+
# NPM
54+
npm install redux
55+
56+
# Yarn
57+
yarn add redux
58+
```
59+
60+
It is also available as a precompiled UMD package that defines a `window.Redux` global variable. The UMD package can be used as a [`<script>` tag](https://unpkg.com/redux/dist/redux.js) directly.
61+
62+
For more details, see the [Installation](Installation.md) page.
63+
5464
## Basic Example
5565

5666
The whole state of your app is stored in an object tree inside a single _store_.
@@ -111,49 +121,28 @@ In a typical Redux app, there is just a single store with a single root reducing
111121

112122
This architecture might seem like an overkill for a counter app, but the beauty of this pattern is how well it scales to large and complex apps. It also enables very powerful developer tools, because it is possible to trace every mutation to the action that caused it. You can record user sessions and reproduce them just by replaying every action.
113123

114-
## Example Projects
115-
116-
The Redux repository contains several example projects demonstrating various aspects of how to use Redux. Almost all examples have a corresponding CodeSandbox sandbox. This is an interactive version of the code that you can play with online.
117-
118-
See the complete list of examples in the **[Examples page](./Examples.md)**.
119-
120124
## Learn Redux
121125

122-
We have a variety of resources available to help you learn Redux, no matter what your background or learning style is.
123-
124-
### Just the Basics
125-
126-
If you're brand new to Redux and want to understand the basic concepts, see:
127-
128-
- The **[Motivation](./Motivation.md)** behind building Redux, the **[Core Concepts](./CoreConcepts.md)**, and the **[Three Principles](./ThreePrinciples.md)**.
129-
- The **[basic tutorial in the Redux docs](../basics/README.md)**
130-
- Redux creator Dan Abramov's **free ["Getting Started with Redux" video series](https://egghead.io/series/getting-started-with-redux)** on Egghead.io
131-
- Redux co-maintainer Mark Erikson's **["Redux Fundamentals" slideshow](http://blog.isquaredsoftware.com/2018/03/presentation-reactathon-redux-fundamentals/)** and **[list of suggested resources for learning Redux](http://blog.isquaredsoftware.com/2017/12/blogged-answers-learn-redux/)**
132-
- If you learn best by looking at code and playing with it, check out our list of **[Redux example applications](./Examples.md)**, available as separate projects in the Redux repo, and also as interactive online examples on CodeSandbox.
133-
- The **[Redux Tutorials](https://github.com/markerikson/react-redux-links/blob/master/redux-tutorials.md)** section of the **[React/Redux links list](https://github.com/markerikson/react-redux-links)**. Here's a top list of our recommended tutorials:
134-
- Dave Ceddia's posts [What Does Redux Do? (and when should you use it?)](https://daveceddia.com/what-does-redux-do/) and [How Redux Works: A Counter-Example](https://daveceddia.com/how-does-redux-work/) are a great intro to the basics of Redux and how to use it with React, as is this post on [React and Redux: An Introduction](http://jakesidsmith.com/blog/post/2017-11-18-redux-and-react-an-introduction/).
135-
- Valentino Gagliardi's post [React Redux Tutorial for Beginners: Learning Redux in 2018](https://www.valentinog.com/blog/react-redux-tutorial-beginners/) is an excellent extended introduction to many aspects of using Redux.
136-
- The CSS Tricks article [Leveling Up with React: Redux](https://css-tricks.com/learning-react-redux/) covers the Redux basics well.
137-
- This [DevGuides: Introduction to Redux](http://devguides.io/redux/) tutorial covers several aspects of Redux, including actions, reducers, usage with React, and middleware.
126+
We have a variety of resources available to help you learn Redux.
138127

139-
### Intermediate Concepts
128+
### Redux Essentials Tutorial
140129

141-
Once you've picked up the basics of working with actions, reducers, and the store, you may have questions about topics like working with asynchronous logic and AJAX requests, connecting a UI framework like React to your Redux store, and setting up an application to use Redux:
130+
The [**Redux Essentials tutorial**](../tutorials/essentials/part-1-overview-concepts.md) is a "top-down" tutorial that teaches how to use Redux the right way, using our latest recommended APIs and best practices. We recommend starting there.
142131

143-
- The **["Advanced" docs section](../advanced/README.md)** covers working with async logic, middleware, routing.
144-
- The Redux docs **["Learning Resources"](./LearningResources.md)** page points to recommended articles on a variety of Redux-related topics.
145-
- Sophie DeBenedetto's 8-part **[Building a Simple CRUD App with React + Redux](http://www.thegreatcodeadventure.com/building-a-simple-crud-app-with-react-redux-part-1/)** series shows how to put together a basic CRUD app from scratch.
132+
### Additional Tutorials
146133

147-
### Real-World Usage
134+
- The Redux docs [**Basic tutorial**](../basics/README.md) and [**Advanced tutorial**](../advanced/README.md) are a "bottom-up" tutorial that teaches how Redux works, starting from first principles.
135+
- The Redux repository contains several example projects demonstrating various aspects of how to use Redux. Almost all examples have a corresponding CodeSandbox sandbox. This is an interactive version of the code that you can play with online. See the complete list of examples in the **[Examples page](./Examples.md)**.
136+
- Redux creator Dan Abramov's **free ["Getting Started with Redux" video series](https://egghead.io/series/getting-started-with-redux)** and **[Building React Applications with Idiomatic Redux](https://egghead.io/courses/building-react-applications-with-idiomatic-redux)** video courses on Egghead.io
137+
- Redux maintainer Mark Erikson's **["Redux Fundamentals" conference talk](http://blog.isquaredsoftware.com/2018/03/presentation-reactathon-redux-fundamentals/)** and [**"Redux Fundamentals" workshop slides**](https://blog.isquaredsoftware.com/2018/06/redux-fundamentals-workshop-slides/)
138+
- Dave Ceddia's post [**A Complete React Redux Tutorial for Beginners**](https://daveceddia.com/redux-tutorial/)
148139

149-
Going from a TodoMVC app to a real production application can be a big jump, but we've got plenty of resources to help:
140+
### Other Resources
150141

151-
- Redux creator Dan Abramov's **[free "Building React Applications with Idiomatic Redux" video series](https://egghead.io/courses/building-react-applications-with-idiomatic-redux)** builds on his first video series and covers topics like middleware, routing, and persistence.
152142
- The **[Redux FAQ](../FAQ.md)** answers many common questions about how to use Redux, and the **["Recipes" docs section](../recipes/README.md)** has information on handling derived data, testing, structuring reducer logic, and reducing boilerplate.
153-
- Redux co-maintainer Mark Erikson's **["Practical Redux" tutorial series](http://blog.isquaredsoftware.com/series/practical-redux/)** demonstrates real-world intermediate and advanced techniques for working with React and Redux (also available as **[an interactive course on Educative.io](https://www.educative.io/collection/5687753853370368/5707702298738688)**).
143+
- Redux maintainer Mark Erikson's **["Practical Redux" tutorial series](http://blog.isquaredsoftware.com/series/practical-redux/)** demonstrates real-world intermediate and advanced techniques for working with React and Redux (also available as **[an interactive course on Educative.io](https://www.educative.io/collection/5687753853370368/5707702298738688)**).
154144
- The **[React/Redux links list](https://github.com/markerikson/react-redux-links)** has categorized articles on working with [reducers and selectors](https://github.com/markerikson/react-redux-links/blob/master/redux-reducers-selectors.md), [managing side effects](https://github.com/markerikson/react-redux-links/blob/master/redux-side-effects.md), [Redux architecture and best practices](https://github.com/markerikson/react-redux-links/blob/master/redux-architecture.md), and more.
155145
- Our community has created thousands of Redux-related libraries, addons, and tools. The **["Ecosystem" docs page](./Ecosystem.md)** lists our recommendations, and there's a complete listing available in the **[Redux addons catalog](https://github.com/markerikson/redux-ecosystem-links)**.
156-
- If you're looking to learn from actual application codebases, the addons catalog also has a list of **[purpose-built examples and real-world applications](https://github.com/markerikson/redux-ecosystem-links/blob/master/apps-and-examples.md)**.
157146

158147
## Help and Discussion
159148

docs/introduction/Installation.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,33 @@ hide_title: true
77

88
# Installation
99

10+
## Redux Toolkit
11+
12+
Redux Toolkit includes the Redux core, as well as other key packages we feel are essential for building Redux applications (such as Redux Thunk and Reselect).
13+
14+
It's available as a package on NPM for use with a module bundler or in a Node application:
15+
16+
```bash
17+
# NPM
18+
npm install @reduxjs/toolkit
19+
20+
# Yarn
21+
yarn add @reduxjs/toolkit
22+
```
23+
24+
It's also available as a UMD build, which can be loaded from [the `dist` folder on unpkg](https://unpkg.com/@reduxjs/toolkit/dist/). The UMD builds make Redux Toolkit available as a `window.RTK` global variable.
25+
26+
## Redux Core
27+
1028
To install the stable version:
1129

1230
```bash
31+
# NPM
1332
npm install redux
14-
```
1533

16-
This assumes you are using [npm](https://www.npmjs.com/) as your package manager.
34+
# Yarn
35+
yarn add redux
36+
```
1737

1838
If you're not, you can [access these files on unpkg](https://unpkg.com/redux/), download them, or point your package manager to them.
1939

docs/style-guide/style-guide.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ id: style-guide
33
title: Style Guide
44
description: 'Redux Style Guide: recommended patterns and best practices for using Redux'
55
hide_title: true
6+
sidebar_label: 'Style Guide: Best Practices'
67
---
78

89
<div class="style-guide">

0 commit comments

Comments
 (0)