Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links from redux official docs #89

Merged
merged 1 commit into from
Mar 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix broken links from redux official docs
  • Loading branch information
resool committed Mar 6, 2018
commit 4bc13a2c836a6133332e39c117be191bc7a85282
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ If you are new to React, try reading these articles in order.
Excellent description of what immutability is, how to use use these concepts with React, and pros and cons of managing data immutably. While the title refers to React, most of the writing just deals with plain Javascript concepts.
- [Javascript and Immutability](http://t4d.io/javascript-and-immutability/)
A description of how to properly immutably update objects and arrays using functions like assign and slice
- [Redux Docs: Structuring Reducers - Immutable Update Patterns](http://redux.js.org/docs/recipes/reducers/ImmutableUpdatePatterns.html)
- [Redux Docs: Structuring Reducers - Immutable Update Patterns](https://redux.js.org/recipes/structuring-reducers/immutable-update-patterns)
Useful examples for doing proper immutable updates, including common mistakes, proper updates of nested data, updates for arrays, and more. (Helpful for Redux, but not Redux-specific.)

### Functional Programming
Expand All @@ -234,7 +234,7 @@ If you are new to React, try reading these articles in order.
## Redux

### Getting Started
- [Redux Docs](http://redux.js.org/index.html)
- [Redux Docs](https://redux.js.org/)
The official Redux documentation. Contains an excellent tutorial that walks you through “here’s what you want to do, and how we came up with this”, as well as recipes for more advanced topics. Be sure to read through the FAQ for answers to common questions and links to further information.
- [Getting Started with Redux - Video Series](https://egghead.io/series/getting-started-with-redux)
[Getting Started with Redux - Course Notes](https://github.com/tayiorbeii/egghead.io_redux_course_notes)
Expand Down Expand Up @@ -271,7 +271,7 @@ If you are new to React, try reading these articles in order.
Examples of configuring a Redux store to use the DevTools enhancers, and using both the DevTools components and the browser extension for debugging.

### Writing Reducers
- [Redux Docs: Structuring Reducers](http://redux.js.org/docs/recipes/StructuringReducers.html)
- [Redux Docs: Structuring Reducers](https://redux.js.org/recipes/structuring-reducers)
Comprehensive information on writing reducers and structuring data, covering reducer composition, use of `combineReducers`, normalizing data, proper immutable updating, and more.
- [Taking Advantage of `combineReducers`](http://randycoulman.com/blog/2016/11/22/taking-advantage-of-combinereducers/)
Examples of using `combineReducers` multiple times to produce a state tree, and some thoughts on tradeoffs in various approaches to reducer logic.
Expand Down
2 changes: 1 addition & 1 deletion immutable-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
An overview of how to accomplish add/remove/replace operations on JS arrays, comparing mutable vs immutable approaches to each.

- **Redux Docs: Immutable Update Patterns**
http://redux.js.org/docs/recipes/reducers/ImmutableUpdatePatterns.html
https://redux.js.org/recipes/structuring-reducers/immutable-update-patterns
Some useful examples for correctly updating data immutably, including nested objects, inserting and removing items in arrays, and updating items in arrays, as well as some common mistakes that occur. Important to know when using Redux, but the info is not Redux-specific.

- **Immutably setting a value in a JS array (or how an array is also an object)**
Expand Down
2 changes: 1 addition & 1 deletion redux-reducers-selectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#### Reducers

- **Redux Docs: Structuring Reducers**
http://redux.js.org/docs/recipes/StructuringReducers.html
https://redux.js.org/recipes/structuring-reducers
Comprehensive information on writing reducers and structuring data, covering reducer composition, use of `combineReducers`, normalizing data, proper immutable updating, and more.

- **"Reducer composition without slicing state"**
Expand Down
2 changes: 1 addition & 1 deletion redux-tutorials.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#### Basic Introductions
- **Redux Docs**
http://redux.js.org/index.html
https://redux.js.org/
The official Redux documentation. FANTASTIC writing - not just "here's the API", but "here's what you want to do and how we came up with this"

- **Getting Started with Redux - Video Series**
Expand Down