Redux:与DOM进行交互的位置,由操作触发,但在React应用程序之外进行更改

时间:2016-06-23 20:59:44

标签: reactjs redux redux-thunk

我有一个React / Redux应用程序,负责实时销售(拍卖)的交互式项目列表。我的<div id='app'></div>只负责清单。

问题是什么时候和商品一起销售,我需要将它添加到另一个列表中,这个列表不在React应用程序中。由于列表是在服务器上呈现的,因此唯一需要的交互是添加这些已售商品。

现在我正在做这样的事情

// redux thunk action
export const sellItem = (item) => (dispatch) => {
  dispatch(requestSellItem(item)); // set loading state

  return fetch('api/sell_item/' + item.id)
    .then(response => response.json())
    .then(json => {
      // remove the item from the React list
      dispatch(sellItemSuccess(item.id));
      // append the item to the sold items list
      // this is the function that puts the sold item in the 
      // list outside of the React app
      appendSoldItem(item);
    })
    .catch(err => {
      // do fallback here
      dispatch(sellItemError(err));
    });
};

我想知道这是否适合这样做,还是应该把它放在其他地方?

1 个答案:

答案 0 :(得分:1)

如果您没有想到可以在没有&#34;将项目添加到另一个列表的情况下销售商品的情况,那么这是完全可以接受的。如果没有,您可能希望decouple出售物品的行为通知外部服务。

无论如何,由于我们正在处理外部服务,我说这是middleware layer的完美示例。这是一个例子:

import { ITEM_SOLD_SUCCESS } from ... // Import same action created by sellItemSuccess()

let itemSoldNotifier = store => next => action => {
  if (action.type === ITEM_SOLD_SUCCESS) {
    // Notify the external service that the item was sold
    appendSoldItem(action.item); // Assuming that the action contains the item sold itself
  }
  return next(action);
}

以下是如何在商店中应用该图层:

let store = createStore(
  combineReducers(reducers),
  applyMiddleware(
    itemSoldNotifier
  )
)