this.fetchCommunity();
this.fetchData();
}
- setupTippy();
}
fetchCommunity() {
WebSocketService.Instance.send(wsClient.getCommunity(form));
}
+ componentDidMount() {
+ setupTippy();
+ }
+
componentWillUnmount() {
saveScrollPosition(this.context);
this.subscription.unsubscribe();
this.fetchTrendingCommunities();
this.fetchData();
}
-
- setupTippy();
}
fetchTrendingCommunities() {
}
WebSocketService.Instance.send(wsClient.communityJoin({ community_id: 0 }));
+ setupTippy();
}
componentWillUnmount() {
this.handlePageChange = this.handlePageChange.bind(this);
}
- // TODO needed here?
componentDidMount() {
setupTippy();
}
this.fetchUserData();
}
- setupTippy();
this.setPersonBlock();
}
}
}
+ componentDidMount() {
+ setupTippy();
+ }
+
componentWillUnmount() {
this.subscription.unsubscribe();
saveScrollPosition(this.context);
this.subscription = wsSubscribe(this.parseMessage);
this.setUserInfo();
+ }
+ componentDidMount() {
setupTippy();
}