Mobx
Boilerplate
Examples
feature
- Reaction - store发生变化时候触发操作
Application structure
- MobX and Flux vs MobX and MVC, https://github.com/mobxjs/react-particles-experiment
See also [What is your structure when using Mobx with ReactJS? | reddit](https://www.reddit.com/r/reactjs/comments/4fojit/what_is_your_structure_when_using_mobx_with/) |
example 1
as https://stackoverflow.com/a/41066941/4685522
- Stores
- Domain Stores
- View Stores
- Models
- Services - make API calls (HTTP request)
- Components
- Containers
- Components
Unit test
Models
比如TableModel
, TableRowModel
等,是对常用操作(controller?)的封装。从服务器端获取表格数据,通过
const tableData = new TableModel(resObj);
来创建模型实例,然后通过
render() {
return (
<SimpleTable data={tableData.toJS()} />
);
}
将数据通过React渲染到UI上。
- model中数据结构应该尽量和前端UI组件一致,而不是和服务器端获取的数据结构一致。
比如react-mobx-app这个例子。
References
- Best Practices for building large scale maintainable projects
- A real world application xxd3vin/react-mobx-app