在Relay Modern中使用订阅时,“updater”无法正常工作

时间:2017-06-23 09:58:13

标签: javascript reactjs graphql relayjs graphql-subscriptions

我在我的应用中使用了Relay Modern,并使用requestSubscription功能成功整合了订阅。一切正常,我用来更新缓存的updater函数可以使用正确的订阅有效负载正确调用。

订阅用于将新项目添加到Link元素列表中。这是订阅的样子:

NewLinkSubscription.js

const newLinkSubscription = graphql`
  subscription NewLinkSubscription {
    Link {
      mutation
      node {
        id
        description
        url
        createdAt
        postedBy {
          id
          name
        }
      }
    }
  }
`

export default (updater, onError) => {

  const subscriptionConfig = {
    subscription: newLinkSubscription,
    variables: {},
    updater,
    onError
  }

  requestSubscription(
    environment,
    subscriptionConfig
  )

}

然后我有一个LinkList组件,可以呈现所有Link个元素。在该组件的componentDidMount中,我发起了NewLinkSubscription

LinkList.js

class LinkList extends Component {

  componentDidMount() {
    NewLinkSubscription(
      proxyStore => {
        const createLinkField = proxyStore.getRootField('Link')
        const newLink = createLinkField.getLinkedRecord('node')
        const viewerProxy = proxyStore.get(this.props.viewer.id)
        const connection = ConnectionHandler.getConnection(viewerProxy, 'LinkList_allLinks')
        if (connection) {
          ConnectionHandler.insertEdgeAfter(connection, newLink)
        }
      },
      error => console.log(`An error occured:`, error),
    )
  }

  render() {
    console.log(`LinkList - render `, this.props.viewer.allLinks.edges)
    return (
      <div>
        {this.props.viewer.allLinks.edges.map(({node}) =>
          {
            console.log(`render node: `, node)
            return <Link key={node.id} link={node} viewer={this.props.viewer} />
          }
        )}
      </div>
    )
  }

}

export default createFragmentContainer(LinkList, graphql`
  fragment LinkList_viewer on Viewer {
    id
    ...Link_viewer
    allLinks(last: 100, orderBy: createdAt_DESC) @connection(key: "LinkList_allLinks", filters: []) {
      edges {
        node {
          ...Link_link
        }
      }
    }
  }
`)

现在,当有新Link的订阅进入时,会发生什么。updater被正确调用,好像新节点被插入到正确连接(至少调用ConnectionHandler.insertEdgeAfter(connection, newLink))。

这会触发组件的重新呈现。当我调试render来检查数据(props.viewer.allLinks.edges)时,我可以看到确实在连接中添加了一个新节点 - 所以列表实际上确实包含了另外一个项目!但是,问题是这个新节点实际上是undefined导致应用程序崩溃!

image

有没有人发现我在这里失踪的东西?

1 个答案:

答案 0 :(得分:2)

我能够使它工作,这就是我现在实现updater的方式:

NewLinkSubscription(
  proxyStore => {
    const linkField = proxyStore.getRootField('Link')
    const newLink = linkField.getLinkedRecord('node')
    const viewerProxy = proxyStore.get(this.props.viewer.id)
    const connection = ConnectionHandler.getConnection(viewerProxy, 'LinkList_allLinks', {
      last: 100,
      orderBy: 'createdAt_DESC'
    })
    if (connection) {
      const edge = ConnectionHandler.createEdge(proxyStore, connection, newLink, 'allLinks')
      ConnectionHandler.insertEdgeBefore(connection, edge)
    }
  },
  error => console.log(`An error occurred:`, error),
)