zoukankan      html  css  js  c++  java
  • [Angular 2] Handle Reactive Async opreations in Service

    When you use ngrx/store and you want to fire a service request. When it sucessfully return the response, you need to dispatch action to tell the store update.

    So one pattern can be considered to follow is:

    import {Http, Headers} from '@angular/http';
    import {Injectable} from '@angular/core';
    import {Store} from '@ngrx/store';
    import {Observable} from "rxjs/Observable";
    import 'rxjs/add/operator/map';
    
    import {AppStore} from '../models/appstore.model';
    import {Item} from '../models/item.model';
    
    const BASE_URL = 'http://localhost:3000/items/';
    const HEADER = { headers: new Headers({ 'Content-Type': 'application/json' }) };
    
    @Injectable()
    export class ItemsService {
      items: Observable<Array<Item>>;
    
      constructor(private http: Http, private store: Store<AppStore>) {
        this.items = store.select('items');
      }
    
      loadItems() {
        this.http.get(BASE_URL)
          .map(res => res.json())
          .map(payload => ({ type: 'ADD_ITEMS', payload }))
          .subscribe(action => this.store.dispatch(action));
      }
    
      saveItem(item: Item) {
        return (item.id) ? this.updateItem(item) : this.createItem(item);
      }
    
      createItem(item: Item) {
         return this.http.post(`${BASE_URL}`, JSON.stringify(item), HEADER)
          .map(res => res.json())
          .do(payload => {
            const action = { type: 'CREATE_ITEM', payload };
            this.store.dispatch(action)
          });
      }
    
      updateItem(item: Item) {
        return this.http.put(`${BASE_URL}${item.id}`, JSON.stringify(item), HEADER)
          .do(action => this.store.dispatch({ type: 'UPDATE_ITEM', payload: item }));
      }
    
      deleteItem(item: Item) {
        return this.http.delete(`${BASE_URL}${item.id}`)
          .do(action => this.store.dispatch({ type: 'DELETE_ITEM', payload: item }));
      }
    }

    In this ItemService, we get Items from store:

      items: Observable<Array<Item>>;
    
      constructor(private http: Http, private store: Store<AppStore>) {
        this.items = store.select('items');
      }

    To change state, it flows the style that

    • Call the backend
    • if success generate action
    • dispatch the action
     createItem(item: Item) {
         return this.http.post(`${BASE_URL}`, JSON.stringify(item), HEADER)
          .map(res => res.json())
          .do(payload => {
            const action = { type: 'CREATE_ITEM', payload };
            this.store.dispatch(action)
          });
      }

    In the controller:

      saveItem(item: Item) {
        this.itemsService.saveItem(item)
          .subscribe( (res) => {this.resetItem()},
                      (err) => {console.error(err)},
                     () => {console.info("Completed")});

    If you notice, in loadItems, I didn't' use do() to dispatch action and subscribe in controller, instead I subscribe in service, this is because in controller, it doesn't expect receive anything from service:

      constructor(private itemsService: ItemsService,
                  private gadgetService: GadgetService,
                  private store: Store<AppStore>) {
        this.items = itemsService.items;
        itemsService.loadItems();
      }

    We base on async pipe to update the dom:

          <items-list [items]="items | async"
            (selected)="selectItem($event)" (deleted)="deleteItem($event)">
          </items-list>

    But for createItem, deleteItem, we use do() to dispatch action and subscribe action, this is because we want to confrim weather it successfully updated, then we want to clear the input fields.

  • 相关阅读:
    android开发中调用python代码(带参数)
    安卓开发中实现自动点击功能、获取网络信息’-博客新人初来乍到,欢迎大佬多多指教。
    一文读懂 Spring Boot、微服务架构和大数据治理三者之间的故事
    EditText搜索关键字,返回结果匹配关键字改变颜色
    Android studio无法创建类和接口问题解决办法。提示 Unable to parse template "Class"
    我的主页
    博客园美化-coffee
    apple面容、指纹验证使用
    iOS数据库FMDB操作
    UIBezierPath绘图基础教程
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5612914.html
Copyright © 2011-2022 走看看