Organize your Cycle.js Application into the Model-View-Intent Pattern

André Staltz
InstructorAndré Staltz
Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 5 years ago

We built the BMI calculator all inside one function: main(). As apps scale, we don't want main() to grow. We need an organized pattern where each function focuses on doing one thing. This lesson shows how we can easily refactor the main() function into three parts: Intent, Model, and View.

[00:00] If we continue to build our apps in the same manner we built the BMI calculator, we will see the main function growing. It's already quite big. I prefer usually small functions that do only one thing. How do we refactor this? Notice we have three distinct parts.

[00:16] We have the re-defect state management, and the right effect, and also everything is just a const declaration. We can extract each of these parts and put them in functions. We can make part1 function to keep these change streams, and then we can return both of them under an object here.

[00:38] ChangeWeight stream and changeHeight stream, and then part2 will return the state stream. We can call this function part2, and it will just return the stream. Then part3 finally will contain the virtualdom stream, and we return that as well. As you can see these functions probably need parameters.

[01:14] It uses sources.DOM here in part1. Let's give that as domSource, and that's what we use here for defining those streams. Then the state management part will need these two streams. Let's call them actions. That's an action object from which we can get the changeWeight$ and the changeHeight$ from actions parameter.

[01:47] The third part here needs the state stream obviously. I think those three functions now have all of their arguments. Now we just need to call these functions from the main. First I'm going to call the part1 given sources.DOM, and that should return to us the object that has those two streams.

[02:09] I'm just going to call that actions just like we had as argument for part2, and then we just call part2 giving those actions, and we know we get out the state stream. Once we have the state stream we call part3 a state stream, and we get out the vdom stream, and then we pass that here.

[02:33] So we refactor our app, and it still works exactly as before. That's good, but then again part1, part2, and part3 are not good names. They're not descriptive. Let's give better names for them. Let's start from the easy part. This function takes state and basically renders it.

[02:54] That's usually the case for a view. That's what view does in other frameworks in other languages. State management will usually take the name of the model. That's what a model usually does. It represents our internal app state. So then what is part1?

[03:15] You can think of it as basically interpreting what the user wants to do, and representing that as a convenient stream for the model to use. I'm going to call this intent, like that. The main will use intent model and view, and this is actually what we call the Model-View-Intent pattern, which is meant to organize this type of sandwich interaction.

[03:44] Now our main function does just one thing. It converts sources to syncs, and it does that by calling these three functions in succession.

egghead
egghead
~ 16 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today