diff --git a/client/coral-framework/hocs/withQuery.js b/client/coral-framework/hocs/withQuery.js
index 280191f89..15ec62a47 100644
--- a/client/coral-framework/hocs/withQuery.js
+++ b/client/coral-framework/hocs/withQuery.js
@@ -49,8 +49,9 @@ export default (document, config = {}) => hoistStatics((WrappedComponent) => {
memoized = null;
resolvedDocument = null;
lastNetworkStatus = null;
- data = null;
name = '';
+ apolloData = null;
+ data = null;
// Pending subscription data.
subscriptionQueue = [];
@@ -151,6 +152,7 @@ export default (document, config = {}) => hoistStatics((WrappedComponent) => {
};
nextData(data) {
+ this.apolloData = data;
this.emitWhenNeeded(data);
// If data was previously set, we update it in a immutable way.
@@ -181,16 +183,24 @@ export default (document, config = {}) => hoistStatics((WrappedComponent) => {
variables: data.variables,
networkStatus: data.networkStatus,
loading: data.loading,
- startPolling: data.startPolling,
- stopPolling: data.stopPolling,
- refetch: data.refetch,
- updateQuery: data.updateQuery,
subscribeToMoreThrottled: this.subscribeToMoreThrottled,
+ startPolling: (...args) => {
+ return this.apolloData.startPolling(...args);
+ },
+ stopPolling: (...args) => {
+ return this.apolloData.stopPolling(...args);
+ },
+ updateQuery: (...args) => {
+ return this.apolloData.updateQuery(...args);
+ },
+ refetch: (...args) => {
+ return this.apolloData.refetch(...args);
+ },
subscribeToMore: (stmArgs) => {
const resolvedDocument = this.resolveDocument(stmArgs.document);
// Resolve document fragments before passing it to `apollo-client`.
- return data.subscribeToMore({
+ return this.apolloData.subscribeToMore({
...stmArgs,
document: resolvedDocument,
onError: (err) => {
@@ -209,7 +219,7 @@ export default (document, config = {}) => hoistStatics((WrappedComponent) => {
{variables: lmArgs.variables});
// Resolve document fragments before passing it to `apollo-client`.
- return data.fetchMore({
+ return this.apolloData.fetchMore({
...lmArgs,
query: resolvedDocument,
})
diff --git a/client/coral-settings/containers/ProfileContainer.js b/client/coral-settings/containers/ProfileContainer.js
index 1ad8b98c9..5b4f5f0ed 100644
--- a/client/coral-settings/containers/ProfileContainer.js
+++ b/client/coral-settings/containers/ProfileContainer.js
@@ -61,7 +61,7 @@ class ProfileContainer extends Component {
return ;
}
- if (loading) {
+ if (loading || !me) {
return ;
}