All Projects → mobxjs → Mobx Angular

mobxjs / Mobx Angular

Licence: mit
MobX connector to Angular

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Mobx Angular

Angular Tree Component
A simple yet powerful tree component for Angular (>=2)
Stars: ✭ 1,031 (+138.66%)
Mutual labels:  frontend, angular2
Curriculum
Dive into our 7-month web development program covering HTML, CSS, Javascript, Node, and React!
Stars: ✭ 453 (+4.86%)
Mutual labels:  frontend, mobx
Eshoponcontainersddd
Fork of dotnet-architecture/eShopOnContainers in full DDD/CQRS design using my own patterns
Stars: ✭ 126 (-70.83%)
Mutual labels:  frontend, mobx
Angular Springboot Rest Jwt
Springboot, Angular and JWT security - Example Project based on Northwind Order Processing
Stars: ✭ 603 (+39.58%)
Mutual labels:  frontend, angular2
Angular2 Flask
Simple angular2 app with python-flask backend ( Learning Angular2 )
Stars: ✭ 152 (-64.81%)
Mutual labels:  frontend, angular2
Starcabinet
🎉 开源的跨平台Github Stars管理分析工具
Stars: ✭ 399 (-7.64%)
Mutual labels:  mobx
Bangumi
💫 An unofficial bgm.tv app client for Android and iOS, built with React Native. 类似专门做ACG的豆瓣, 已适配 iOS/Android, mobile/Pad, light/dark theme, 并加入了很多独有的增强功能
Stars: ✭ 409 (-5.32%)
Mutual labels:  mobx
Frontend Playbook
The Frontend Playbook
Stars: ✭ 395 (-8.56%)
Mutual labels:  frontend
Create React App Typescript
DEPRECATED: Create React apps using typescript with no build configuration.
Stars: ✭ 3,759 (+770.14%)
Mutual labels:  frontend
Rfx Stack
RFX Stack - Universal App
Stars: ✭ 427 (-1.16%)
Mutual labels:  mobx
Client
The Hypothesis web-based annotation client.
Stars: ✭ 416 (-3.7%)
Mutual labels:  frontend
Chart Race React
📊 Seamless bar chart race component for React.
Stars: ✭ 406 (-6.02%)
Mutual labels:  frontend
Mobx Vue
🐉 Vue bindings for MobX
Stars: ✭ 401 (-7.18%)
Mutual labels:  mobx
Cc
一个基于angular5.0.0+ng-bootstrap1.0.0-beta.8+bootstrap4.0.0-beta.2+scss的后台管理系统界面(没基础的同学请先自学基础,谢谢!)
Stars: ✭ 416 (-3.7%)
Mutual labels:  angular2
Front End Handbook 2019
[Book] 2019 edition of our front-end development handbook
Stars: ✭ 3,964 (+817.59%)
Mutual labels:  frontend
Annotated Webpack Config
This is the companion github repo for the "An Annotated webpack 4 Config for Frontend Web Development" article.
Stars: ✭ 425 (-1.62%)
Mutual labels:  frontend
Iceworks
Visual Intelligent Development Pack(可视化智能开发套件)
Stars: ✭ 390 (-9.72%)
Mutual labels:  frontend
Udash Core
Scala framework for building beautiful and maintainable web applications.
Stars: ✭ 405 (-6.25%)
Mutual labels:  frontend
React Blur
React component to blur image backgrounds using canvas.
Stars: ✭ 416 (-3.7%)
Mutual labels:  frontend
Ngx Charts
📊 Declarative Charting Framework for Angular
Stars: ✭ 4,057 (+839.12%)
Mutual labels:  angular2

Build Status npm version

mobx-angular

MobX connector for Angular (versions 2-9)

If you're looking for the Angular 1 version version, it's here

Why MobX?

Angular's change detection is great, but it updates the entire UI on every change, and doesn't have any knowledge of how our components use our services.
MobX automatically knows what properties your components use from the stores and listens to changes. It allows you to automatically react to changes and update only the parts of the UI that need to be updated, making your app performant.
With MobX you manage your app's state using mutable objects and classes. It also helps you create computed values and side-effects.

Learn more about MobX

This library

  1. Automatically observe all the observables that your component uses
  2. Automatically runs change detection - works great with OnPush strategy
  3. Disposes of all the observers when the component is destroyed

Usage

Install:

$ npm install --save mobx-angular mobx

Import the MobxAngularModule:

import { MobxAngularModule } from 'mobx-angular';

@NgModule({
            imports: [..., MobxAngularModule]
})
export class MyModule {}

autorun

Use *mobxAutorun directive in your template:

import { Component, ChangeDetectionStrategy } from '@angular/core';
import { store } from './store/counter';

@Component({
             changeDetection: ChangeDetectionStrategy.OnPush,
             template: `
    <div *mobxAutorun>
      {{ store.value }} - {{ store.computedValue }}
      <button (click)="store.action">Action</button>
    </div>
  `
           })
export class AppComponent {
  store = store;
}

The directive will do the following:

  • Observe all the observables / computed values that your component uses
  • Automatically run the detectChanges method whenever there's a relevant change

Under the hood, this magic happens by running autorun(() => view.detectChanges())

Why directive and not decorator?

In order to inject the change detector, and implement lifecycle hooks like ngOnDestroy, this library uses a directive, which is the most elegant solution in Angular. It also has the benefit of allowing you to easily have multiple observed sections of your component's template, in case it is required.

detach

You can improve your component's performance by detaching it from CD (Change Detection), by supplying *mobxAutorun="{ detach: true }".

This might cause things to stop updating. You have 3 options to manage that:

  • Define local component properties as observables or computed values
  • Surround with *mobxAutorun only the parts that actually use observable / computed values from the store
  • Instead of detaching, use OnPush CD strategy on the component

reaction

Aside from autorun, MobX allows you to react to specific data changes.

Usage:

import { Component, ChangeDetectionStrategy } from '@angular/core';

@Component({
             changeDetection: ChangeDetectionStrategy.OnPush,
             template: `
    <div *mobxReaction="getParity.bind(this)">
      {{ parity }}
    </div>
  `
           })
class AppComponent {
  getParity() {
    return (this.parity = store.counter % 2 ? 'Odd' : 'Even');
  }
}

The callback function will automatically re-run whenever any observable that it uses changes. Change Detection will run automatically whenever the return value of callback changes. If you don't return anything, change detection will not run.

In this example, the parity property will be updated according to counter, and change detection will run only when the parity changes.

options

It is possible to pass an options object to *mobxAutorun and *mobxReaction directives. For a list of possible options visit the official docs.

Usage:

import { Component, ChangeDetectionStrategy } from '@angular/core';
import { store } from './store/counter';
import { comparer } from 'mobx';

@Component({
             changeDetection: ChangeDetectionStrategy.OnPush,
             template: `
    <div *mobxAutorun="{ detach: true, name: 'foo', delay: 3000 }">
      {{ store.value }} - {{ store.computedValue }}
      <button (click)="store.action">Action</button>
    </div>
    <div
      *mobxReaction="getParity.bind(this); options: { name: 'parity reaction', equals: comparer.shallow }"
    >
      {{ parity }}
    </div>
  `
           })
export class AppComponent {
  store = store;
  comparer = comparer;

  getParity() {
    return (this.parity = store.counter % 2 ? 'Odd' : 'Even');
  }
}

Injectable stores

You can easily make your stores injectable:

import { observable, action } from 'mobx-angular';

@Injectable()
class Store {
  @observable value;
  @action doSomething() { ... }
}

Router store

Using the RouterStore, you can observe route changes. By injecting this store to a component you will get access to the url as a MobX observable, and the entire activated route snapshot.

Usage:

import { Component, ChangeDetectionStrategy } from '@angular/core';
import { RouterStore } from 'mobx-angular';

@Component({
  changeDetection: ChangeDetectionStrategy.OnPush,
  template: `<div></div>`
})
export class AppComponent {
  constructor(public routerStore: RouterStore) {
    // You get access to the url as a mobx observable through routerStore.url
    // And to the activated route snapshot through routerStore.routeSnapshot
  }
}

MobX v6

In order to become compatible with modern ES standards, decorators are not used by default in MobX v6. It still supports decorators, but they are not recommended for greenfield projects. Read More

  • In order to use MobX 6 with decorators makeObservable(this) should be added to the constructor, and "useDefineForClassFields": true should be added to tsconfig.json.
  • For the full migration guide, click here.

Check out projects/todo-v6 for a working example.

Using with OnPush or ngZone: 'noop'

To achieve great performance, you can set OnPush change detection strategy on your components (this can be configured as default in .angular-cli.json). MobX will run change detection manually for you on the components that need to be updated.

  • In Angular 5 there's a new option, which is to disable Zone completely when bootstrapping the app (ngZone: 'noop').
  • Please note that this means that all 3rd-party components will stop working (because they rely on change detection to work via Zone).

Debugging MobX (only for mobx-angular versions 2.X and below)

mobx-angular comes with a handy debug tool. To turn on / off the debug tool, open developer tools' console, and run:

mobxAngularDebug(true); // turn on
mobxAngularDebug(false); // turn off

Then you can right-click on the components that use mobx directives, and you will see a console log of the components' dependencies. Also, every action that happens in mobx will be console.logged in a nice way.

TBD - support debugging for MobX 4

AoT

Some people complained about AoT when using mobx decorators inside components. In case you do that - we export a proxy to the decorators from mobx-angular, which should be AoT compatible, e.g.:
import { observable, computed } from 'mobx-angular'

DevTools

Check out projects/todo for an example of how to use mobx-remotedev with Angular:

$ npm install mobx-remotedev

// app.module.ts
import remotedev from 'mobx-remotedev';
import { Todos } from './stores/todos.store';

@NgModule({
  ...
  providers: [
    { provide: Todos, useClass: remotedev(Todos, { global: true }), deps: [] }
  ],
})

Examples

See the projects folder, specifically these files:
/projects/todo/src/app/stores/todos.store.ts
/projects/todo/src/app/app.component.ts

To run the examples, clone this repo and run:

$ npm install -g @angular/cli
$ npm install
$ npm run build
$ npm run start <example> # for example `npm run start todo`
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].