Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
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

Redux

Redux is a pattern that allows you to manage your event and application states in a safe way. It allows you to make sure that your application-wide states, resulting from navigation events or not, are managed in a single, non-accessible place.

Usually, the states of your application are stored in a TypeScript interface. Following the example we used in the previous section, we will implement login/logout functionalities for a user using a custom APIService that consumes JSON. In our case, the application has only one state: logged. Consequently, the interface would look like this:

export interface IAppState { 
    logged: boolean; 
} 

This interface only contains a single logged boolean. It might seem like overkill to have an interface for such a common variable, but you'll find it handy when your applications start to grow. The state of our application can only be...

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 $19.99/month. Cancel anytime