如何用react-apollo graphql

时间:2016-09-07 22:29:05

标签: reactjs graphql apollostack

2018更新: Apollo Client 2.1添加了一个新的Mutation组件,可以添加加载属性。请参阅下面的@ robin-wieruch的答案以及此处的公告https://dev-blog.apollodata.com/introducing-react-apollo-2-1-c837cc23d926请继续阅读原始问题,该问题现在仅适用于早期版本的Apollo。

使用react-apollo(v0.5.2)中graphql高阶组件的当前版本,我没有看到一种记录方式来通知我的UI突变正在等待服务器响应。我可以看到earlier versions of the package会发送一个指示加载的属性。

查询仍会收到如下所示的加载属性:http://dev.apollodata.com/react/queries.html#default-result-props

我的应用程序也使用redux,所以我认为一种方法是将我的组件连接到redux并传递一个函数属性,使我的UI进入加载状态。然后,当我将graphql变异重写为属性时,我可以调用更新redux存储。

大致像这样:

function Form({ handleSubmit, loading, handleChange, value }) {
  return (
    <form onSubmit={handleSubmit}>
      <input
        name="something"
        value={value}
        onChange={handleChange}
        disabled={loading}
      />
      <button type="submit" disabled={loading}>
        {loading ? 'Loading...' : 'Submit'}
      </button>
    </form>
  );
}

const withSubmit = graphql(
  gql`
    mutation submit($something : String) {
      submit(something : $something) {
        id
        something
      }
    }
  `, 
  {
    props: ({ ownProps, mutate }) => ({
      async handleSubmit() {
        ownProps.setLoading(true);
        try {
          const result = await mutate();
        } catch (err) {
          // @todo handle error here
        }
        ownProps.setLoading(false);
      },
    }),
  }
);

const withLoading = connect(
  (state) => ({ loading: state.loading }),
  (dispatch) => ({
    setLoading(loading) {
      dispatch(loadingAction(loading));
    },
  })
);

export default withLoading(withSubmit(Form));

我很好奇是否有更惯用的方法告知用户界面该变异是“在飞行中”。感谢。

2 个答案:

答案 0 :(得分:5)

任何遇到此问题的人,因为Apollo Client 2.1您可以在查询和变异component's render props function中访问这些属性。

import React from "react";
import { Mutation } from "react-apollo";
import gql from "graphql-tag";

const TOGGLE_TODO = gql`
  mutation ToggleTodo($id: Int!) {
    toggleTodo(id: $id) {
      id
      completed
    }
  }
`;

const Todo = ({ id, text }) => (
  <Mutation mutation={TOGGLE_TODO} variables={{ id }}>
    {(toggleTodo, { loading, error, data }) => (
      <div>
        <p onClick={toggleTodo}>
          {text}
        </p>
        {loading && <p>Loading...</p>}
        {error && <p>Error :( Please try again</p>}
      </div>
    )}
  </Mutation>
);

注意:示例代码取自Apollo Client 2.1发布的博客文章。

答案 1 :(得分:2)

我已重新发布this question on github,建议的解决方案是使用像您在原始问题中提议的更高阶反应组件。我做了类似的事情 - 虽然没有使用redux - as outlined in this gist

引用Tom Coleman来自github问题的回复:

  

在突变中包含加载状态并没有多大意义   容器;如果你考虑一下,你可以调用两次突变   同时 - 哪个加载状态应该传递给孩子?我的   感觉一般来说混合命令并不好(this.mutate(x,y,z))   用陈述(道具)的东西;它导致无法解决的不一致。