React
控制反转(Inversion of Control,缩写为IoC),是面向对象编程中的一种设计原则,可以用来减低计算机代码之间的耦合度,其中最常见的方式就是依赖注入(Dependency Injection,简称DI)。
通过控制反转,对象在被创建的时候,由一个调控系统内所有对象的外界实体将其所依赖的对象的引用传递给它。也可以说,依赖被注入到对象中。
一般这个概念在 Java 中提的比较多,但是在前端领域,似乎很少会提到这个概念,其实用好这个思想无论在前后端一样可以帮助组件解耦,介绍一下依赖注入在 React 中的应用。

为啥需要依赖注入?

依赖注入(更广泛地说就是控制反转)主要用来解决下面几个问题:

  • 模块解耦 - 在代码设计中应用,强制保持代码模块分离。
  • 更好的可复用性 - 让模块复用更加容易。
  • 更好的可测试性 - 通过注入模拟依赖可以更方便测试。

其实, React 本身也内置了对依赖注入的支持。

React 中的依赖注入

下面几个常见的代码,其实都应用了依赖注入的思想,来看几个例子:

  1. 使用 props 允许依赖注入

    1. function welcome(props) {
    2. return <h1> Hello, {props.name}</h1>;
    3. }

    welcome 组件通过接收 props 然后生成 html,别惊讶,最常用的 props 其实就是应用了依赖注入的思想。

  2. 使用 context 是实现依赖注入的另一种方法

    1. function counter() {
    2. const { message } = useContext(MessageContext);
    3. return <p>{ message }</p>;
    4. }

    由于 context 是沿着组件树向下传递的,可以使用组件内部的 hooks 来提取到它。

  3. 只使用 jsx 也能实现依赖注入

    1. const ReviewList = props => (
    2. <List resource="/reviews" perPage={50} {...props}>
    3. <Datagrid rowClick="edit">
    4. <DateField source="date" />
    5. <CustomerField source="customer_id " />
    6. <ProductField source="product_id" />
    7. <StatusField source="status" />
    8. </Datagrid>
    9. </List>
    10. );

    perPage 参数被传递给 <List>组件,然后组件通过 REST API 获取远程数据。
    但是,<List> 组件并不会直接渲染数据,相反,它把渲染数据的重任交给了子组件 <Datagrid><Datagrid> 组件的渲染依赖于 <List><List> 是设置这种依赖关系的调用者。
    但是,这些策略可能对小型项目有所帮助。在一些大型项目中往往需要更灵活的扩展,除了这些基础的应用之外,还需要更好地支持依赖注入。
    来看几个扩展 React 依赖注入支持的库。

    InversifyJS

    React 组件中优雅的实现依赖注入 - 图1
    InversifyJS 是一个强大、轻量的依赖注入库,并且使用非常简单,但是把它和 React 组件结合使用还是有些问题。
    因为 InversifyJS 默认使用构造函数注入,但是 React 不允许开发者扩展组件的构造函数。通过一个例子来看看如何解决这个问题: ```jsx import “reflect-metadata”; import * as React from “react”; import { render } from “react-dom”; import { Hello } from “./Hello”;

const App = () => (

);

render(, document.getElementById(“root”));

  1. 通过 InversifyJS 提供的 injectable decorator 可以标记这个 class 是可被注入的。
  2. ```jsx
  3. import { injectable } from "inversify";
  4. export interface IProvider<T> {
  5. provide(): T;
  6. }
  7. @injectable()
  8. export class NameProvider implements IProvider<string> {
  9. provide() {
  10. return "World";
  11. }
  12. }

在组件中,可以直接调用注入的 provide 方法,而组件内部不用关心它的实现。

  1. import * as React from "react";
  2. import { IProvider } from "./providers";
  3. export class Hello extends React.Component {
  4. private readonly nameProvider: IProvider<string>;
  5. render() {
  6. return <h1>Hello {this.nameProvider.provide()}!</h1>;
  7. }
  8. }

这就是一个最简单的依赖注入,下面再来看看几个 InversifyJS 的扩展库。

inversify-inject-decorators

该工具库主要提供了 lazyInject 之类的方法,它可以给出了一个惰性的注入,意思是在对象初始化时不需要提供依赖,当没办法改构造函数时,这个库就派上用场了。
另外,除了字面上所说的惰性,另外一个非常重要的功能就是允许将 inversifyJs 集成到任何自己控制类实例创建的库或者框架,比如 React 。
下面是一个 @lazyInject 的使用示例:

  1. import getDecorators from "inversify-inject-decorators";
  2. import { Container, injectable, tagged, named } from "inversify";
  3. let container = new Container();
  4. let { lazyInject } = getDecorators(container);
  5. let TYPES = { Weapon: "Weapon" };
  6. interface Weapon {
  7. name: string;
  8. durability: number;
  9. use(): void;
  10. }
  11. @injectable()
  12. class Sword implements Weapon {
  13. public name: string;
  14. public durability: number;
  15. public constructor() {
  16. this.durability = 100;
  17. this.name = "Sword";
  18. }
  19. public use() {
  20. this.durability = this.durability - 10;
  21. }
  22. }
  23. class Warrior {
  24. @lazyInject(TYPES.Weapon)
  25. public weapon: Weapon;
  26. }
  27. container.bind<Weapon>(TYPES.Weapon).to(Sword);
  28. let warrior = new Warrior();
  29. console.log(warrior.weapon instanceof Sword); // true

inversify-react

inversify-react 是一个唯一执行依赖注入的库。就像使用 React Context.Provider一样,从这个库也能拿到一个 Provider:

  1. import { Provider } from 'inversify-react';
  2. ...
  3. <Provider container={myContainer}>
  4. ...
  5. </Provider>

然后就能在子组件中使用依赖了:

  1. import { resolve, useInjection } from 'inversify-react';
  2. ...
  3. // In functional component – via hooks
  4. const ChildComponent: React.FC = () => {
  5. const foo = useInjection(Foo);
  6. ...
  7. };
  8. // or in class component – via decorated fields
  9. class ChildComponent extends React.Component {
  10. @resolve
  11. private readonly foo: Foo;
  12. ...
  13. }

react-inversify

虽然和上一个库名字很像,但是两个库的做法是不一样的,这种方法更接近于 React 的思想,因为对象是作为属性传递的,而不是在组件内部实例化。

  1. import * as React from 'react';
  2. import * as inversify from 'inversify';
  3. import { Todos } from "./model";
  4. import { connect } from 'react-inversify';
  5. class Dependencies {
  6. constructor(todos) {
  7. this.todos = todos;
  8. }
  9. }
  10. inversify.decorate(inversify.injectable(), Dependencies);
  11. inversify.decorate(inversify.inject(Todos.TypeTag), Dependencies, 0);
  12. class TodoItemView extends React.Component {
  13. // ... use this.props.checked, this.props.text, etc. All these calculated by code below.
  14. }
  15. ssed as React properties.
  16. // Mapping function returns final TodoItemView's properties.
  17. export default connect(Dependencies, (deps, ownProps) => ({
  18. checked: ownProps.item.isChecked(),
  19. text: ownProps.item.getText(),
  20. todos: deps.todos,
  21. item: ownProps.item
  22. }))(TodoItemView);
  23. import * as React from 'react';
  24. import * as ReactDOM from 'react-dom';
  25. import * as inversify from 'inversify';
  26. import { Provider, ChangeNotification } from 'react-inversify';
  27. var container = new inversify.Container(); // your DI container
  28. var changeNotification = new ChangeNotification(); // handles changes in model objects
  29. ReactDOM.render(
  30. <Provider container={container} changeNotification={changeNotification}>
  31. <TodoListView />
  32. </Provider>,
  33. document.getElementById('app')
  34. );

参考: