-
I'm currently really busy with other endeavors and can't devote as much time to open source as I'd like. I'm not abandoning this project by any means, but I can't address some issues and new features …
-
# Redux
## 原理
**1. 单一数据源**
`all states => Store`
- 随着组件的复杂度上升(包括交互逻辑和业务逻辑),数据来源逐渐混乱,导致组件内部数据调用十分复杂,会产生数据冗余或者混用等情况。
- Store 的基本思想是将所有的数据集中管理,数据通过 Store 分类处理更新,不再在组件内放养式生长。
**2. 单向数据流**
`dispatch(ac…
-
![screen shot 2019-02-12 at 1 05 05 pm](https://user-images.githubusercontent.com/29596/52667855-d98fe800-2ec6-11e9-83f4-d1700df5bdb6.png)
I think this is an overflow of the message queue between t…
-
### ARc is the result of a failure
Don't get me wrong. I'll speak more deeply about it in the near future, in a blog post. In short, ARc exists because I failed on another project: I had a 3 months…
-
**Describe the bug**
In code.pybricks.com I want to save all sources in a zip, so press the `Backup all files`
Results in
```
Error: Failed to execute 'showSaveFilePicker' on 'Window': Must be …
-
-
## The devDependency [husky](https://github.com/typicode/husky) was updated from `3.0.1` to `3.0.2`.
🚨 [View failing branch](https://github.com/di-ng/redux-saga-debounced-channel/compare/master...di…
-
chrome
v59.0.3071.104
node
v8.0.0
webpack
v3.0.0
webpack-dev-middleware
v1.10.2
webpack-hot-middleware
v2.18.0
![image](https://user-images.githubusercontent.com/14831261/27373687-…
-
In the example, a post can have many editors.
```graphql
type Post
@model
{
id: ID!
title: String!
content: String
editors: [PostEditor] @connection(name: "PostEditors")
}
ty…
-
**Is your feature request related to a problem? Please describe.**
Hi, I'm a Redux maintainer. I'd like to offer a couple suggestions.
The current Redux example implementation shows use of reducer…