Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
MobX Quick Start Guide

You're reading from  MobX Quick Start Guide

Product type Book
Published in Jul 2018
Publisher Packt
ISBN-13 9781789344837
Pages 236 pages
Edition 1st Edition
Languages
Authors (2):
Pavan Podila Pavan Podila
Profile icon Pavan Podila
Michel Weststrate Michel Weststrate
Profile icon Michel Weststrate
View More author details
Toc

A few other APIs


There are some miscellaneous APIs that are provided by MobX that are not that frequently used. It is still worth mentioning them here for the sake of completeness. 

Querying the reactive system

When dealing with the various abstractions in MobX (observables, actions, reactions), it is sometimes useful to know if a certain object, function, or value is of a certain kind. MobX has a set of isXXX APIs that help you to determine the type of the value:

  • isObservableObject(thing), isObservableArray(thing), isObservableMap(thing): Tells you whether the passed in value is an observable object, array, or map
  • isObservable(thing) and isObservableProp(thing, property?): Similar to the preceding point but more generalized check for an observable value
  • isBoxedObservable(thing): Whether the value is a boxed observable
  • isAction(func): Returns true if the function is wrapped by an action
  • isComputed(thing) and isComputedProp(thing, property?): Checks whether the value is a computed property

Probing...

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