react 使用 mobx_如何使用React和MobX状态树构建基于状态的路由器

react 使用 mobx

by Miles Till

由Miles Till

如何使用React和MobX状态树构建基于状态的路由器 (How to build a state-based router using React and MobX State Tree)

Introducing mobx-state-tree-router

Mobx状态树路由器简介

If you want to skip ahead to the finished example you can check it out at mobx-state-tree-router-demo.

如果您想跳至完成的示例,可以在mobx-state-tree-router-demo上进行检查 。

I wrote a library that makes it easy to configure state-based routing in MobX State Tree powered React apps, and I want to share it with you. To do this I will demonstrate how to build a very simple Todo app.

我写了一个库,使在MobX状态树驱动的React应用程序中配置基于状态的路由变得容易,我想与您共享它。 为此,我将演示如何构建一个非常简单的Todo应用程序。

Michel Weststrate, the creator of MobX, wrote a great article titled How to decouple state and UI (a.k.a. you don’t need componentWillMount). I recommend reading it to understand the philosophy that inspired me to write mobx-state-tree-router. The key idea is that the application UI should be a function of the state.

MobX的创建者Michel Weststrate写了一篇很棒的文章,标题为《 如何使状态与UI分离》(又称您不需要componentWillMount) 。 我建议阅读它以了解启发我编写mobx-state-tree-router的哲学。 关键思想是应用程序UI应该是状态的函数。

“This approach has better decoupling of state and UI. This has a few advantages:
“这种方法可以更好地将状态与UI分离。 这有一些优点:
1. The complete application flow can be tested without ever needing to instantiate a component.
1.无需实例化组件即可测试完整的应用程序流程。
2. More components can be dumb; they don’t have to fetch data or process routing.
2.可以使更多组件变得笨拙; 他们不必获取数据或处理路由。
3. Our stores become more like a state machine, making it easy to follow the transitions of our application.”
3.我们的商店变得更像一台状态机,可以轻松地跟踪我们的应用程序的过渡。”
- Michel Weststrate
-米歇尔·韦斯特斯特

先决条件 (Prerequisites)

These will need to be installed to follow this tutorial:

必须安装这些程序才能遵循本教程:

  • Node.js — used for running the dev server

    Node.js-用于运行开发服务器

  • Yarn — used for package management

    纱线 -用于包装管理

Note: NPM can be used instead of Yarn but some commands may be different.

注意:可以使用NPM代替Yarn,但是某些命令可能有所不同。

创建一个基本的React应用 (Create a basic React app)

使用create-react-app快速入门 (Use create-react-app to get started quickly)

If you haven’t used it before, the easiest way to get started with a React app is to use a scaffolding tool by the developers of React called Create React App. This tool configures Webpack and Babel for you with the most common requirements met.

如果您以前从未使用过它,那么最开始使用React应用程序的最简单方法是使用React开发人员的脚手架工具,称为创建React App 。 该工具为您配置Webpack和Babel ,使其满足最常见的要求。

In your terminal run the following commands:

在您的终端中运行以下命令:

npx create-react-app state-router-democd state-router-demoyarn start

You will now have a fully functioning basic React app to play with.

现在您将拥有一个功能齐全的基本React应用程序。

删除此示例不需要的create-react-app内容 (Remove create-react-app stuff not needed for this example)

For the purposes of this tutorial we don’t need a lot of the stuff that create-react-app generates so go ahead and delete:

就本教程而言,我们不需要大量create-react-app生成的东西,因此请继续删除:

src/App.csssrc/App.test.jssrc/index.csssrc/logo.svgsrc/serviceWorker.js

Note: Feel free to keep the css files and add your own styling.

注意:随时保留css文件并添加自己的样式。

To keep things organised, create a components directory in our src and move src/App.js to src/components/App.js.

为了使事情井井有条,请在src创建一个components目录,然后将src/App.js移至src/components/App.js

Now update the following files to remove references to the files we deleted:

现在更新以下文件,以删除对我们删除的文件的引用:

src/components/App.js

src / components / App.js

src/index.js

src / index.js

If you still have the app running you will notice your browser has updated to show you the following:

如果您仍在运行该应用程序,则会注意到您的浏览器已更新,可以显示以下内容:

创建一个主页组件 (Create a Home page component)

In the components directory, create a file for our Home page component:

components目录中,为我们的主页组件创建一个文件:

src/components/Home.js

src / components / Home.js

Update the App component to render our new Home page component:

更新App组件以呈现我们的新Homepage组件:

src/components/App.js

src / components / App.js

添加MobX状态树模型 (Add MobX State Tree models)

安装MobX和MobX状态树 (Install MobX and MobX State Tree)

MobX is a library for state management, and it works great with React as our renderer. MobX State Tree is a tree shaped state container built on top of MobX.

MobX是用于状态管理的库,与React作为我们的渲染器一起使用时效果很好。 MobX状态树是建立在MobX之上的树状状态容器。

In your terminal run:

在您的终端运行中:

yarn add mobx mobx-react mobx-state-tree

Like our we did for our components, create a models directory to keep our MobX State Tree models organised.

就像我们对组件所做的一样,创建一个models目录以保持我们的MobX状态树模型井井有条。

创建一个RootStore模型 (Create a RootStore model)

In our state tree we’ll have a RootStore which holds our data stores (in this case a TodoStore) and our RouterStore, but we’ll get to that later.

在我们的状态树中,我们将有一个RootStore来保存我们的数据存储(在本例中为TodoStore )和我们的RouterStore ,但是我们稍后RouterStore

src/models/RootStore.js

src / models / RootStore.js

创建TodoStore和Todo模型 (Create TodoStore and Todo models)

Our TodoStore contains Todo objects which are able to be created, removed, and updated. We also need to be able to find a Todo object by its id.

我们的TodoStore包含可以创建,删除和更新的Todo对象。 我们还需要能够通过其id查找Todo对象。

src/models/TodoStore.js

src / models / TodoStore.js

初始化RootStore (Initialize the RootStore)

When our app loads, we want to initialize the RootStore with a known state. For this trivial example we won’t be concerned about persisting our data to storage in any way. We then want to make sure the RootStore is available to be injected into our components, so we use the MobX React component Provider to do this.

应用加载时,我们想用已知状态初始化RootStore 。 对于这个简单的示例,我们将不关心以任何方式将数据持久存储到存储中。 然后,我们要确保可以将RootStore注入到我们的组件中,因此我们使用MobX React组件Provider来执行此操作。

src/index.js

src / index.js

创建一个TodoList页面组件 (Create a TodoList page component)

Now that we have a RootStore for our state tree, we need some components to view and change the data.

现在,我们为状态树提供了一个RootStore ,我们需要一些组件来查看和更改数据。

src/components/TodoList.js

src / components / TodoList.js

Update the App component to display our new TodoList component.

更新App组件以显示我们的新TodoList组件。

src/components/App.js

src / components / App.js

At this point the app should have a list of Todo objects which you can add to and remove from.

此时,该应用程序应具有您可以添加和删除的Todo对象的列表。

创建一个Todo页面组件 (Create a Todo page component)

Now we want to create a new component to display and edit a Todo object. Note that we are using inject to make the RootStore available in the component’s props.

现在,我们要创建一个新组件以显示和编辑Todo对象。 请注意,我们正在使用inject使RootStore在组件的props中可用。

src/components/Todo.js

src / components / Todo.js

Update the App component to display our new Todo component.

更新App组件以显示我们的新Todo组件。

Now our updated app allows us to edit the data of the Todo whose id we pass to the Todo page component in <Todo todoId={0} />.

现在,我们更新的应用程序允许我们编辑Todo的数据,该ID的ID传递到<Todo todoId={0} />中的Todo页面组件。

添加基于状态的路由 (Add state-based routing)

At this point we should have a React app with our data stored in a MobX State Tree container. The data container is then being injected into the components that need access to the data. Now we want to connect together our page components in our app. A common approach would be to use a component based router such as React Router. Often the components become cluttered with route definitions and mount event handlers. This doesn’t suit our state-first philosophy.

此时,我们应该有一个React应用,其数据存储在MobX状态树容器中。 然后将数据容器注入需要访问数据的组件中。 现在,我们要将应用程序中的页面组件连接在一起。 一种常见的方法是使用基于组件的路由器,例如React Router 。 通常,组件会因路由定义和安装事件处理程序而变得混乱不堪。 这不符合我们的国家优先理念。

I will now show you how to add mobx-state-tree-router to your app.

现在,我将向您展示如何向您的应用添加mobx-state-tree-router。

安装mobx-state-tree-router (Install mobx-state-tree-router)

In your terminal run:

在您的终端运行中:

yarn add mobx-state-tree-router

将路由器添加到RootStore (Add the router to the RootStore)

src/models/RootStore.js

src / models / RootStore.js

创建视图 (Create views)

The router needs to be configured with a map of view models which define the route paths to match against and the page components to display. Hooks into the page change cycle can be defined on a view to perform data fetching, route change cancelling, redirection, and other tasks. These hooks can be synchronous or asynchronous.

路由器需要配置一个视图模型图,以定义要匹配的路由路径以及要显示的页面组件。 可以在视图上定义页面更改周期的挂钩,以执行数据获取,路由更改取消,重定向和其他任务。 这些挂钩可以是同步的或异步的。

These hooks are:

这些挂钩是:

  • beforeExit(self, params)

    beforeExit(self, params)

  • beforeEnter(self, params)

    beforeEnter(self, params)

  • onExit(self, params)

    onExit(self, params)

  • onEnter(self, params)

    onEnter(self, params)

If either of the before hooks return false the route change will be cancelled.

如果任何一个前钩返回false则路由更改将被取消。

Create a views file:

创建一个views文件:

src/views.js

src / views.js

启动我们的应用程序时初始化路由器 (Initialize the router when our app starts)

The router can be started by calling startRouter(router). This function connects the router to the browser’s history and configures the routing based on router’s views.

可以通过调用startRouter(router)来启动startRouter(router) 。 此功能将路由器连接到浏览器的历史记录,并根据路由器的视图配置路由。

src/index.js

src / index.js

渲染StateRouter (Render the StateRouter)

Update the App component to include the StateRouter component, which renders the appropriate component for the router’s current view.

更新App组件以包括StateRouter组件,该组件将为路由器的当前视图呈现适当的组件。

src/components/App.js

src / components / App.js

Now our app will respond to changes in the url path, for example /todos will show our TodoList component and /todos/0 will show our Todo component as configured in views.js.

现在,我们的应用程序将响应url路径中的更改,例如/todos将显示我们的TodoList组件, /todos/0将显示我们的Todo组件,它们在views.js配置。

Currently our app doesn’t have any way to navigate around other than changing the url directly. This doesn’t work particularly well in this simple example as the data in our RootStore will get reset to the initial state as defined in index.js every time the page loads.

目前,除了直接更改网址外,我们的应用程序没有其他导航方式。 在这个简单的示例中,这并不是特别有效,因为每次页面加载时, RootStore的数据都会重置为index.js定义的初始状态。

There are 2 other ways to change the route using mobx-state-tree-router:

还有另外两种使用mobx-state-tree-router更改路由的方法:

  • Link components

    Link组件

  • Calling router.setView(view, params) directly

    直接调用router.setView(view, params)

I recommend using Link components where possible, but in some cases (like redirects) setting the view directly may be unavoidable. Let’s update our App and TodoList components to add some navigation links using both methods:

我建议尽可能使用Link组件,但是在某些情况下(例如重定向),直接设置视图可能是不可避免的。 让我们更新AppTodoList组件,以使用这两种方法添加一些导航链接:

src/components/App.js

src / components / App.js

src/components/TodoList.js

src / components / TodoList.js

You will now be able to add a Todo item on the todos view, then click the open button to go the todo view for the new item:

现在,您就可以添加一个Todo的项目todos视图,然后单击打开按钮去todo视图新项目:

结论 (Conclusion)

I created mobx-state-tree-router because I found that there was a gap in the landscape for a state-based routing library to use with MobX State Tree. I have found it to be useful for me, so I hope it can also be useful to the wider community.

我创建了mobx-state-tree-router,是因为发现在景观中存在一个空白状态,无法将基于状态的路由库与MobX状态树一起使用。 我发现它对我有用,因此我希望它对更广泛的社区也有用。

If you haven’t already please read Michel Weststrate’s article for some background on state-based routing.

如果您还没有,请阅读Michel Weststrate的文章,以获取有关基于状态的路由的一些背景知识。

If you have any issues to raise or contributions to make, please head over to mobx-state-tree-router on Github.

如果您有任何问题需要筹集或作出贡献,请前往Github上的mobx-state-tree-router 。

翻译自: https://www.freecodecamp.org/news/how-to-build-a-state-based-router-using-react-and-mobx-state-tree-e91b2b8e8d79/

react 使用 mobx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391842.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

docker在Centos上的安装

Centos6安装docker 系统&#xff1a;centos6.5 内核&#xff1a;3.10.107-1(已升级)&#xff0c;docker对RHEL/Centos的最低内核支持是2.6.32-431&#xff0c;epel源的docker版本推荐内核为3.10版本。 内核升级可参考&#xff1a;https://www.jslink.org/linux/centos-kernel-u…

Lambda表达式的前世今生

Lambda 表达式 早在 C# 1.0 时&#xff0c;C#中就引入了委托&#xff08;delegate&#xff09;类型的概念。通过使用这个类型&#xff0c;我们可以将函数作为参数进行传递。在某种意义上&#xff0c;委托可理解为一种托管的强类型的函数指针。 通常情况下&#xff0c;使用委托来…

matplotlib柱状图、面积图、直方图、散点图、极坐标图、箱型图

一、柱状图 1.通过obj.plot() 柱状图用bar表示&#xff0c;可通过obj.plot(kindbar)或者obj.plot.bar()生成&#xff1b;在柱状图中添加参数stackedTrue&#xff0c;会形成堆叠图。 fig,axes plt.subplots(2,2,figsize(10,6)) s pd.Series(np.random.randint(0,10,15),index …

微信支付商业版 结算周期_了解商业周期

微信支付商业版 结算周期Economics is an inexact science, finance and investing even more so (some would call them art). But if there’s one thing in economics that you can consistently count on over the long run, it’s the tendency of things to mean revert …

leetcode 448. 找到所有数组中消失的数字

给定一个范围在 1 ≤ a[i] ≤ n ( n 数组大小 ) 的 整型数组&#xff0c;数组中的元素一些出现了两次&#xff0c;另一些只出现一次。 找到所有在 [1, n] 范围之间没有出现在数组中的数字。 您能在不使用额外空间且时间复杂度为O(n)的情况下完成这个任务吗? 你可以假定返回…

前端初学者开发学习视频_初学者学习前端开发的实用指南

前端初学者开发学习视频by Nikita Rudenko通过尼基塔鲁登科(Nikita Rudenko) 初学者学习前端开发的实用指南 (A practical guide to learning front end development for beginners) I started my coding journey in spring 2018, a bit less than one year ago. I earned som…

weblogic启动失败案例(root启动引起的权限问题)

weblogic的一个domain启动失败&#xff0c;在日志中有如下信息提示&#xff1a; **************************************************** To start WebLogic Server, use a username and ** password assigned to an admin-level user. For ** server administration, us…

HTTP请求示例

HTTP请求格式当浏览器向Web服务器发出请求时&#xff0c;它向服务器传递了一个数据块&#xff0c;也就是请求信息&#xff0c;HTTP请求信息由3部分组成&#xff1a;l 请求方法URI协议/版本l 请求头(Request Header)l 请求正文下面是一个HTTP请求的例子&#xff1a;GET/sa…

Bootstrap——可拖动模态框(Model)

还是上一个小项目&#xff0c;o(╥﹏╥)o&#xff0c;要实现点击一个div或者button或者一个东西然后可以弹出一个浮在最上面的弹框。网上找了找&#xff0c;发现Bootstrap的Model弹出框可以实现该功能&#xff0c;因此学习了一下&#xff0c;实现了基本弹框功能&#xff08;可拖…

mfcc中的fft操作_简化音频数据:FFT,STFT和MFCC

mfcc中的fft操作What we should know about sound. Sound is produced when there’s an object that vibrates and those vibrations determine the oscillation of air molecules which creates an alternation of air pressure and this high pressure alternated with low …

leetcode 765. 情侣牵手(并查集)

N 对情侣坐在连续排列的 2N 个座位上&#xff0c;想要牵到对方的手。 计算最少交换座位的次数&#xff0c;以便每对情侣可以并肩坐在一起。 一次交换可选择任意两人&#xff0c;让他们站起来交换座位。 人和座位用 0 到 2N-1 的整数表示&#xff0c;情侣们按顺序编号&#xff…

ariel字体_播客第58集:软件开发人员和freeCodeCamp超级巨星Ariel Leslie

ariel字体On this weeks episode of the freeCodeCamp.org podcast, Abbey interviews Ariel Leslie, a software developer and avid contributor to the freeCodeCamp community.在本周的freeCodeCamp.org播客节目中&#xff0c;Abbey采访了Ariel Leslie&#xff0c;他是free…

PHP绘制3D图形

PEAR提供了Image_3D Package来创建3D图像。图像或光线在3D空间中按照X、Y 、Z 坐标定位。生成的图像将呈现在2D空间中&#xff0c;可以存储为 PNG、SVG 格式&#xff0c;或输出到Shell。通过Image_3D可以很方便生成一些简单的3D对象&#xff0c;例如立方体、锥体、球体、文本和…

清除日志的sql

SET NOCOUNT ONDECLARE LogicalFileName sysname,MaxMinutes INT,NewSize INTUSE cms -- 要操作的数据库名SELECT LogicalFileName cms_log, -- 日志文件名MaxMinutes 10, -- Limit on time allowed to wrap log.NewSize 100 -- 你想设定的日志文件的大小(M)-- Setup / init…

r语言怎么以第二列绘制线图_用卫星图像绘制世界海岸线图-第二部分

r语言怎么以第二列绘制线图Part I of this blog series is here.本博客系列的第一部分 在这里 。 At the UKHO we are interested in the oceans, the seabed and the coastline — not to mention everything in and on them! In our previous blog, we (the UKHO Data Scien…

javascript创建类_如何在10分钟内使用JavaScript创建费用管理器

javascript创建类by Per Harald Borgen通过Per Harald Borgen 如何在10分钟内使用JavaScript创建费用管理器 (How to create an expense organizer with JavaScript in 10 minutes) 让我们使用ES6和Dropbox API来防止收据变得混乱。 (Let’s use ES6 and the Dropbox API to k…

豆瓣API

Api V2 索引 图书Api V2 电影Api V2 音乐Api V2 同城Api V2 广播Api V2 用户Api V2 日记Api V2 相册Api V2 线上活动Api V2 论坛Api V2 回复Api V2 我去Api V2 https://developers.douban.com/wiki/?titleapi_v2 搜索图书 GET https://api.douban.com/v2/book/search参数意义…

leetcode 485. 最大连续1的个数

给定一个二进制数组&#xff0c; 计算其中最大连续1的个数。 示例 1: 输入: [1,1,0,1,1,1] 输出: 3 解释: 开头的两位和最后的三位都是连续1&#xff0c;所以最大连续1的个数是 3. 解题思路 遇到0时&#xff0c;将连续1的长度归零。遇到1时&#xff0c;累加进长度 代码 c…

HDU Today

经过锦囊相助&#xff0c;海东集团终于度过了危机&#xff0c;从此&#xff0c;HDU的发展就一直顺风顺水&#xff0c;到了2050年&#xff0c;集团已经相当规模了&#xff0c;据说进入了钱江肉丝经济开发区500强。这时候&#xff0c;XHD夫妇也退居了二线&#xff0c;并在风景秀美…

JSP基础--动作标签

JSP基础--动作标签 JSP动作标签 1 JSP动作标签概述 动作标签的作用是用来简化Java脚本的&#xff01; JSP动作标签是JavaWeb内置的动作标签&#xff0c;它们是已经定义好的动作标签&#xff0c;我们可以拿来直接使用。 如果JSP动作标签不够用时&#xff0c;还可以使用自定义标…