Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Angular Design Patterns

You're reading from   Angular Design Patterns Implement the Gang of Four patterns in your apps with Angular

Arrow left icon
Product type Paperback
Published in Jul 2018
Publisher Packt
ISBN-13 9781786461728
Length 178 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (2):
Arrow left icon
Mathieu Nayrolles Mathieu Nayrolles
Author Profile Icon Mathieu Nayrolles
Mathieu Nayrolles
Nayrolles Mathieu (USD) Nayrolles Mathieu (USD)
Author Profile Icon Nayrolles Mathieu (USD)
Nayrolles Mathieu (USD)
Arrow right icon
View More author details
Toc

Memento

The memento pattern is a really useful pattern in the context of Angular. In Angular-powered applications, we use and overuse two ways binding between domain models such as User or Movie.

Let's consider two components, one named Dashboard and the other one named EditMovie. On the Dashboard component, you have a list of movies displayed in the context of our IMDb-like application. The view of such a dashboard could look like this:


<div *ngFor="let movie of model.movies">
<p>{{movie.title}}</p>
<p>{{movie.year}}</p>
</div>

This simple view owns a ngFor directive that iterates over the list of movies contained in a model. Then, for each movie, it displays two p elements containing the title and the release year, respectively.

Now, the EditMovie components access one of the movies on the model.movies array and allow...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime