Component Architecture
The Container/Presentational Component architecture pattern separates the world into components that either "do things" or "look like things". We'll look at how this pattern leads to code that's very easy to test, and use it to implement several features in our app that involve state and concurrency.
-
Component ArchitectureContainer & Presentational Components
We'll take a close look at the container and presentational component architectural pattern where components can either do things or look like things, but never both. It'll be easy to see first-hand that this results in code that's easier to write, maintain, test and reuse.
-
Component ArchitectureCreate Chat Message
We'll put our newfound Ember Octane knowledge to the test, and implement the "create a message" feature of our app
-
Component ArchitectureDelete a Chat Message
We'll put our newfound Ember Octane knowledge to the test, and implement the "delete a message" feature of our app
-
Component ArchitectureNotification Center
We'll put our newfound Ember Octane knowledge to the test, and implement the "notification center" feature of our app