fix loading animation positionning
This commit is contained in:
parent
235e81cccb
commit
bf687ebb62
|
@ -180,19 +180,19 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div *ngIf="!isLoading && !statusLoading && statuses.length == 0" class="profile-no-toots">
|
|
||||||
no status found
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngIf="statusSection === 'status'">
|
|
||||||
<div *ngFor="let statusWrapper of pinnedStatuses">
|
|
||||||
<app-status [statusWrapper]="statusWrapper" (browseHashtagEvent)="browseHashtag($event)"
|
|
||||||
(browseAccountEvent)="browseAccount($event)" (browseThreadEvent)="browseThread($event)">
|
|
||||||
</app-status>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div [class.profile__status-switching-section]="isSwitchingSection">
|
<div [class.profile__status-switching-section]="isSwitchingSection">
|
||||||
|
<div *ngIf="!isLoading && !statusLoading && statuses.length == 0" class="profile-no-toots">
|
||||||
|
no status found
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div *ngIf="statusSection === 'status' && !statusLoading">
|
||||||
|
<div *ngFor="let statusWrapper of pinnedStatuses">
|
||||||
|
<app-status [statusWrapper]="statusWrapper" (browseHashtagEvent)="browseHashtag($event)"
|
||||||
|
(browseAccountEvent)="browseAccount($event)" (browseThreadEvent)="browseThread($event)">
|
||||||
|
</app-status>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div *ngFor="let statusWrapper of statuses">
|
<div *ngFor="let statusWrapper of statuses">
|
||||||
<div *ngIf="statusSection !== 'media'">
|
<div *ngIf="statusSection !== 'media'">
|
||||||
<app-status [statusWrapper]="statusWrapper" (browseHashtagEvent)="browseHashtag($event)"
|
<app-status [statusWrapper]="statusWrapper" (browseHashtagEvent)="browseHashtag($event)"
|
||||||
|
|
|
@ -323,7 +323,7 @@ export class UserProfileComponent implements OnInit {
|
||||||
|
|
||||||
isSwitchingSection: boolean;
|
isSwitchingSection: boolean;
|
||||||
switchStatusSection(section: 'status' | 'replies' | 'media'): boolean {
|
switchStatusSection(section: 'status' | 'replies' | 'media'): boolean {
|
||||||
this.isSwitchingSection = true;
|
this.isSwitchingSection = true;
|
||||||
|
|
||||||
this.statusSection = section;
|
this.statusSection = section;
|
||||||
this.statuses.length = 0;
|
this.statuses.length = 0;
|
||||||
|
@ -355,6 +355,14 @@ export class UserProfileComponent implements OnInit {
|
||||||
this.isSwitchingSection = false;
|
this.isSwitchingSection = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.showFloatingStatusMenu) {
|
||||||
|
setTimeout(() => {
|
||||||
|
var element = this.statustream.nativeElement as HTMLElement;
|
||||||
|
const menuPosition = element.scrollHeight - this.profilestatuses.nativeElement.offsetHeight - 30 - 29;
|
||||||
|
element.scrollTop = menuPosition;
|
||||||
|
}, 0);
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue