GitHunt-React:声明`loading` 属性?
GitHunt-React: Declaring `loading` Property?
我已经将 GitHunt-React 中的以下代码(以及我能找到的所有其他相关代码)复制到我的应用程序中。此代码来自 CommentsPage.js:
const CommentsPageWithDataAndMutations = graphql(COMMENT_QUERY, {
options({ params }) {
return {
variables: { repoName: `${params.org}/${params.repoName}` },
};
},
props({ data: { loading, currentUser, entry, updateQuery } }) {
debugger;
return { loading, currentUser, entry, updateCommentsQuery: updateQuery };
},
})(CommentsPageWithMutations);
出于某种原因,在我的应用程序中,loading 有时设置为 true,有时 undefined.When显示了所有 React 内部函数,因此我无法将其追溯到声明 loading
的 GitHunt-React 中的代码。此外,在 GitHunt-React 中对源代码进行文本搜索,似乎没有发现任何设置 loading.
的值
在GitHunt-React中,代码的哪一部分负责声明loading
并设置它的值?
loading
的值直接来自 Apollo 客户端,并通过 react-apollo 传递给 UI(在本例中为 GitHunt-React)。
我已经将 GitHunt-React 中的以下代码(以及我能找到的所有其他相关代码)复制到我的应用程序中。此代码来自 CommentsPage.js:
const CommentsPageWithDataAndMutations = graphql(COMMENT_QUERY, {
options({ params }) {
return {
variables: { repoName: `${params.org}/${params.repoName}` },
};
},
props({ data: { loading, currentUser, entry, updateQuery } }) {
debugger;
return { loading, currentUser, entry, updateCommentsQuery: updateQuery };
},
})(CommentsPageWithMutations);
出于某种原因,在我的应用程序中,loading 有时设置为 true,有时 undefined.When显示了所有 React 内部函数,因此我无法将其追溯到声明 loading
的 GitHunt-React 中的代码。此外,在 GitHunt-React 中对源代码进行文本搜索,似乎没有发现任何设置 loading.
在GitHunt-React中,代码的哪一部分负责声明loading
并设置它的值?
loading
的值直接来自 Apollo 客户端,并通过 react-apollo 传递给 UI(在本例中为 GitHunt-React)。