mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 22:49:33 +00:00
parent
ece262993a
commit
324682b154
|
@ -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();
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -42,7 +42,6 @@ export class PersonDetails extends Component<PersonDetailsProps, any> {
|
|||
this.handlePageChange = this.handlePageChange.bind(this);
|
||||
}
|
||||
|
||||
// TODO needed here?
|
||||
componentDidMount() {
|
||||
setupTippy();
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -130,7 +130,9 @@ export class Settings extends Component<any, SettingsState> {
|
|||
this.subscription = wsSubscribe(this.parseMessage);
|
||||
|
||||
this.setUserInfo();
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
setupTippy();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue