fix: lazyload fixing

This commit is contained in:
Desy Ayurianti 2024-09-17 16:06:10 +07:00
parent a3412a36d5
commit 4a77bab8f2
4 changed files with 14 additions and 35 deletions

View File

@ -1,9 +1,11 @@
import { Component } from '@angular/core';
import { RouterLink } from '@angular/router';
@Component({
selector: 'app-auth',
standalone: true,
imports: [],
imports: [RouterLink],
templateUrl: './auth.component.html',
styleUrl: './auth.component.scss'
})

View File

@ -1,9 +1,8 @@
<div *ngIf="isLoading" class="loading-overlay">
<div class="loading-state">
<div class="loading"></div>
</div>
</div>
<div *ngIf="isLoading" class="loading">
Loading...
</div>
<highcharts-chart
*ngIf="!isLoading"
class="gauge-chart"
[Highcharts]="Highcharts"
[options]="chartOptions"

View File

@ -3,32 +3,9 @@
display: inline-block;
}
.loading {
width: 30px;
height: 30px;
border-radius: 50%;
border: 7px solid #ddd;
border-top-color: rgb(28, 12, 203);
animation: loading 1s linear infinite;
.loading{
font-size: 18px;
text-align: center;
color: #888;
}
.loading-state {
position: absolute;
top: 50%;
left: 50%;
z-index: 9999;
transform: translate(-50%, -50%);
}
.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}

View File

@ -32,7 +32,6 @@ export class GaugeChartComponent {
constructor() {}
ngOnChanges() {
this.isLoading = false;
this.chartOptions = {
chart: {
@ -96,6 +95,8 @@ export class GaugeChartComponent {
}
}] as Highcharts.SeriesSolidgaugeOptions[]
};
this.isLoading = false;
}
}