06-19集中处理请求的Orchestra



当我们的组件里请求非常多(比如今天的需求是一个组件里处理12个请求…),给每一个请求都写一遍loading和错误处理等非常繁琐,因此统一管理请求就很有必要了。orchestra原义为交响乐,这里用作统一处理请求的组件名称。
orchestra本质为HOC高阶组件。


使用时需要定义的属性包括type,action,runner和可选的prop,initialParams.


其中,runner代表调用的函数。

type Runner = (...args: any[]) => IterableIterator<any>

以其中一组CRUD为例,564行的runner即调用522行的load函数,返回值赋给this.props.section.最后的585行为初始值。


loading为一个数组,通过toggleLoading函数来判断当前正在加载还是加载完成的状态。



在展示组件内部,则通过数组的some方法选择展示加载组件还是加载后的页面。


错误处理是一个对象,在构造函数里赋空值,在render渲染组件之前的componentWillMount里改变其值。


完整的源码长这样:

import { runSaga, Task as RootTask } from "redux-saga"
import { takeLatest, put } from "redux-saga/effects"
import EventEmitter, { Action } from "./EventEmitter"
import React from "react"

export enum Type {
  INIT,
  BLOCK,
  NON_BLOCK,
}

type Runner = (...args: any[]) => IterableIterator<any>

interface Task<Payloads, Actions extends number> {
  type: Type
  action: Actions
  runner: Runner
  prop?: keyof Payloads
  initParams?: any
}

type RecuPartial<T> = { [key in keyof T]?: RecuPartial<T[key]> }

interface State<T, Actions> {
  results: RecuPartial<T>
  loading: Actions[]
  errors: {
    [key: number]: string
  }
}

function* taskRunner(runner: Runner, props: any, { type, params, onSuccess }: Action<any>) {
  try {
    const payload = yield* runner(props, params)
    yield put({
      type,
      payload,
      onSuccess,
    })
  } catch (err) {
    yield put({ type, err })
  }
}

function connOrchestra<Props, Payloads, Actions extends number>(
  tasks: Array<Task<Payloads, Actions>>,
  initPayloadsState?: RecuPartial<Payloads>,
) {
  return <P extends WithOrchestra<Payloads, Actions>>(Comp: React.ComponentType<P>) => {
    type T = Omit<P, keyof WithOrchestra<Payloads, Actions>> & Props
    return class Orchestra extends React.Component<T, State<Payloads, Actions>> {
      rootTask: RootTask
      emitter: EventEmitter
      currentActions: Actions[]
      constructor(props: T) {
        super(props)

        this.toggleLoading = this.toggleLoading.bind(this)
        this.saga = this.saga.bind(this)
        this.call = this.call.bind(this)

        this.emitter = new EventEmitter()
        this.currentActions = []
        this.state = {
          results: initPayloadsState,
          loading: [],
          errors: {},
        }
      }
      componentWillMount() {
        this.rootTask = runSaga(
          {
            subscribe: cb => this.emitter.addEventListener(cb),
            dispatch: (r: any) => {
              const { type, payload, onSuccess, err } = r
              const task = tasks.find(task => task.action === type)

              if (err) {
                this.setState(({ errors }: any) => ({
                  errors: {
                    ...errors,
                    [task.action]: err.message,
                  },
                }))
              } else {
                if (task.prop) {
                  this.setState(({ results }: any) => ({
                    results: {
                      ...results,
                      [task.prop]: payload,
                    },
                  }))
                }
              }

              this.toggleLoading(task)
              if (onSuccess) {
                onSuccess()
              }
            },
            onError: e => {
              console.error(e) /* tslint:disable-line no-console */
            },
          },
          this.saga,
        )
        for (const task of tasks) {
          if (task.type === Type.INIT) {
            this.call(task.action, task.initParams)
          }
        }
      }
      *saga() {
        for (const { action, runner } of tasks) {
          yield takeLatest(({ type }: Action<any>) => type === action, taskRunner as any, runner, this.props)
        }
      }
      toggleLoading({ action }: Task<Payloads, Actions>) {
        this.setState(({ loading }) => {
          loading = loading.includes(action) ? loading.filter(a => a !== action) : [...loading, action]
          return { loading }
        })
      }
      call(action: Actions, params: any) {
        return new Promise((onSuccess, reject) => {
          if (this.currentActions.includes(action)) {
            reject()
          }
          const task = tasks.find(task => action === task.action)
          if (!task) {
            reject("task not found")
          }
          this.toggleLoading(task)
          this.emitter.dispatch({
            type: action,
            params,
            onSuccess,
          })
        })
      }
      end() {
        this.rootTask.cancel()
      }
      render() {
        const { loading, errors, results } = this.state
        return <Comp {...this.props} loading={loading} errors={errors} {...results} call={this.call} />
      }
    }
  }
}

export default connOrchestra
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,189评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,577评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,857评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,703评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,705评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,620评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,995评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,656评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,898评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,639评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,720评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,395评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,982评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,953评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,195评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,907评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,472评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,594评论 18 139
  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_x阅读 15,967评论 3 119
  • 你是否想更快地学习? 无论是在学习一门新语言,一种新的乐器,或是一个新的运动,我们都希望能够竭尽所能地加速学习。但...
    VC就是VC阅读 3,167评论 16 116
  • 在家乡不远的南边 一条小河轻轻地流 水面偶尔荡起水花 风起时 浣纱的姑娘垂下的黑发 飘荡在冬天芦苇编织的暖色里 瞎...
    三玄阅读 847评论 0 4
  • 1:早起:6:30起床(大概是天冷的原因,2月份来说,6:30起床比较困难,目标设置的有点过高,当然也是自己意志力...
    A张爽阅读 132评论 0 0