Fix tippy on component mount. Fixes #509

This commit is contained in:
Dessalines 2021-11-25 12:37:37 -05:00
parent ece262993a
commit 468db76802
5 changed files with 11 additions and 5 deletions

View file

@ -133,7 +133,6 @@ export class Community extends Component<any, State> {
this.fetchCommunity();
this.fetchData();
}
setupTippy();
}
fetchCommunity() {
@ -144,6 +143,10 @@ export class Community extends Component<any, State> {
WebSocketService.Instance.send(wsClient.getCommunity(form));
}
componentDidMount() {
setupTippy();
}
componentWillUnmount() {
saveScrollPosition(this.context);
this.subscription.unsubscribe();

View file

@ -145,8 +145,6 @@ export class Home extends Component<any, HomeState> {
this.fetchTrendingCommunities();
this.fetchData();
}
setupTippy();
}
fetchTrendingCommunities() {
@ -168,6 +166,7 @@ export class Home extends Component<any, HomeState> {
}
WebSocketService.Instance.send(wsClient.communityJoin({ community_id: 0 }));
setupTippy();
}
componentWillUnmount() {

View file

@ -42,7 +42,6 @@ export class PersonDetails extends Component<PersonDetailsProps, any> {
this.handlePageChange = this.handlePageChange.bind(this);
}
// TODO needed here?
componentDidMount() {
setupTippy();
}

View file

@ -109,7 +109,6 @@ export class Profile extends Component<any, ProfileState> {
this.fetchUserData();
}
setupTippy();
this.setPersonBlock();
}
@ -188,6 +187,10 @@ export class Profile extends Component<any, ProfileState> {
}
}
componentDidMount() {
setupTippy();
}
componentWillUnmount() {
this.subscription.unsubscribe();
saveScrollPosition(this.context);

View file

@ -130,7 +130,9 @@ export class Settings extends Component<any, SettingsState> {
this.subscription = wsSubscribe(this.parseMessage);
this.setUserInfo();
}
componentDidMount() {
setupTippy();
}