FWIW, a lot of people tell us Redux's docs are "great", but we've also had people tell us they aren't helpful. Kinda hard to figure out how to make improvements based on that kind of conflicting feedback :)
We are actually looking at revamping the Redux docs in the near future [0]. If you've got any specific concerns or suggestions on how we can improve things, please let me know directly, or comment on that issue.
Also, besides the docs, you may be interested in my suggested resources for learning Redux [1], including my own Redux workshop slides [2].
[0] https://github.com/reduxjs/redux/issues/2590
[1] http://blog.isquaredsoftware.com/2017/12/blogged-answers-lea...
[2] https://blog.isquaredsoftware.com/2018/06/redux-fundamentals...
For me, it took me a while of working on a web app with derived data everywhere (~15 KB raw JSON that gets updated with diffs and recombobulated into different output formats and different intersections of data with live updates), and endless debugging of data transformations by stepping back and forth through the reducer history, before I really "got" it.
On the note of (b), I really like the redux-actions project (https://redux-actions.js.org) for the way its helpers that get rid of most of that. A simple example:
const setValueA = createAction('SET_VALUE_A');
const setValueB = createAction('SET_VALUE_B');
const setValueAB = createAction('SET_VALUE_AB', (a, b) => ({ a, b }));
export const reducer = combineReducers({
valueA: handleActions({
[setValueA]: (state, action) => action.payload
[setValueAB]: (state, action) => action.payload.a
}, null),
valueB: handleActions({
[setValueB]: (state, action) => action.payload
[setValueAB]: (state, action) => action.payload.b
}, null)
});React is best to approach the same way you approach functions: You want to have small components, that do one job, that don't interact with outside state (see below for exception), and are largely ignorant of how your app works. The slight exception is container components, where interacting with outside state should be their sole job, encapsulating the application state interactions and passing the info to the contained components so that they don't have to have that knowledge.
I find a top-down approach works well: Break your page into parts (boxes of content), and then break those down, and so forth. Each box of content will be a component - most will contain others, and the smallest will just have on job.
Move all logic except for simple "show/don't show" into outside functions that you import in to your components - React is the View and you don't want it doing nearly as much as it CAN do. Keep it simple, keep it small.
Remember the key rule: You can pass values DOWN (into contained components) but not UP (into your wrapping components). So if you need to send data "up", you need to pass callbacks down and use those callbacks to pass any data "up". This can feel weird, but it helps keep those contained components ignorant of your larger application, which in turn makes them more reliable overtime, as they aren't impacted by changes outside of themselves.
If you have had limited experience with function best practices, or if you've only worked in deeply OOP systems (that have similar best practices but different concepts for passing data), this can be a bit of a struggle to adjust to, but it's actually a very common pattern, and the reason I use React to teach web dev (after teaching basic vanilla JS) - even after React is obsolete these practices will be useful to follow.
I also recommend learning React BEFORE taking on Redux (or any other application state management lib) - even a simple TODO app (don't copy what is out there, write it without hints, then compare) can help clear up the root concepts, and after that application state management is easier to keep distinct in your mind. I took it all on (React + Flux) at once when I started and it took months to grasp because I wasn't keeping them clear from one another. Redux mapXXXXToProps() functions are in fact quite hard to grasp unless you comfortable with how you use React props in practice, at which point they become straightforward.
And lastly, the switching between class-based components and function-based components can be really confusing. I personally prefer to use almost exclusively function-based components, because React is not expecting you to use an OOP approach to the components. I only use class-based components where I need component state (often only the top-level component for small apps) or if I need to use the lifecycle methods (and I rarely do - many examples use didComponentMount to fire off service calls, but I tend to put those into event handlers, though that gets a lot easier when you are using an application state management lib). but if you prefer class-based components, that's fine - just don't think React is using classes for anything more than providing inheritance of the component methods. No OOP-approach to your components.
Hope this helps!
Here are some examples:
1. Which files do I spend time on and which ones can I ignore? The first time I tried npm I felt like I had to understand all those files that kept popping up.
2. What is a good workflow? None of those documents tell you to open up dev tools and constantly console.log out values, but in a video (I assume) this will come up.
These are two examples but they mostly they show you what you should focus on. There are dozens of little things that you won't pick up from text.
Also, not going to judge a super experienced developer if they just prefer videos for whatever reason.
However, I think there's a lot of validity to the idea that every tutorial should include lessons on how to test it that new topic, and even give examples of how to implement a TDD approach. But those lessons would (IMO) have to come after the initial parts of the tutorial that taught the concept first.
I'm interested in TDD but didn't find a course/guide that would teach how to do it properly... Maybe I didn't search enough...
Can you recommend me anything like that? It doesn't have to be React related.
If its the latter, that's an approach that I've never seen before but its definitely thought provoking.
- I started listening to this yesterday and really like it! Great, short videos!
- Excellent. Thanks for sharing.
- Great work Bob!
- this is great
The same time you can't find other background info about the company except that they collect VC money and the video's you create are MIT licensed.
The accounting for Norwegian companies are public, ours can be found here:
https://www.proff.no/selskap/scrimba-as/oslo/internettdesign...
We're two co-founders, Sindre and I. Our Twitter profiles are here:
https://twitter.com/perborgen https://twitter.com/sindreaars
If you actually spend some time researching, you'll find plenty of information about us and the company.
As for "collecting VC money" we've raised around $250K from angel investors and one Norwegian VC and we've also gotten a loan (which we're partly personally reliable for) from Innovation Norway.
Feel free to ask if you'd like more info.
Giving information on your website about the user do's and don'ts are always appreciated without having to file a request in triplet to the board of directors. Still I highly appreciate the links to the company information.
If anyone's interested in further resources, I'd suggest checking out my suggested resources for learning React [0], my React/Redux links list [1], and the Reactiflux chat channels on Discord [2].
[0] http://blog.isquaredsoftware.com/2017/12/blogged-answers-lea...
Also love the idea of including "Project Ideas for Practicing" as its own module. Two thumbs way up.