From 010f1f2bd1e186f78249c8a16e84900231187810 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 8 May 2022 09:03:29 -0700 Subject: [PATCH 1/3] loading indicator for dashboard widgets --- .../saved-view-widget/saved-view-widget.component.html | 2 +- .../widgets/saved-view-widget/saved-view-widget.component.ts | 4 ++++ .../statistics-widget/statistics-widget.component.html | 2 +- .../widgets/statistics-widget/statistics-widget.component.ts | 4 ++++ .../widgets/widget-frame/widget-frame.component.html | 4 ++++ .../dashboard/widgets/widget-frame/widget-frame.component.ts | 3 +++ 6 files changed, 17 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html index 01809d1c6..8d5b9c43f 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -1,4 +1,4 @@ - + Show all diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.ts b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.ts index 9506e6842..6e8b67900 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.ts +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.ts @@ -15,6 +15,8 @@ import { QueryParamsService } from 'src/app/services/query-params.service' styleUrls: ['./saved-view-widget.component.scss'], }) export class SavedViewWidgetComponent implements OnInit, OnDestroy { + loading: boolean = true + constructor( private documentService: DocumentService, private router: Router, @@ -43,6 +45,7 @@ export class SavedViewWidgetComponent implements OnInit, OnDestroy { } reload() { + this.loading = true this.documentService .listFiltered( 1, @@ -52,6 +55,7 @@ export class SavedViewWidgetComponent implements OnInit, OnDestroy { this.savedView.filter_rules ) .subscribe((result) => { + this.loading = false this.documents = result.results }) } diff --git a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html index a29b50f78..106d30610 100644 --- a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -1,4 +1,4 @@ - +

Documents in inbox: {{statistics?.documents_inbox}}

Total documents: {{statistics?.documents_total}}

diff --git a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts index a13839f19..3d9f7b5e7 100644 --- a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts +++ b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts @@ -15,6 +15,8 @@ export interface Statistics { styleUrls: ['./statistics-widget.component.scss'], }) export class StatisticsWidgetComponent implements OnInit, OnDestroy { + loading: boolean = true + constructor( private http: HttpClient, private consumerStatusService: ConsumerStatusService @@ -29,7 +31,9 @@ export class StatisticsWidgetComponent implements OnInit, OnDestroy { } reload() { + this.loading = true this.getStatistics().subscribe((statistics) => { + this.loading = false this.statistics = statistics }) } diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html index a9d3d306a..4eaee4761 100644 --- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html +++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -2,6 +2,10 @@
{{title}}
+ +
+
Loading...
+
diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts index f21f6ca35..b1e926eef 100644 --- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts +++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts @@ -11,5 +11,8 @@ export class WidgetFrameComponent implements OnInit { @Input() title: string + @Input() + loading: boolean = false + ngOnInit(): void {} } From 7f7ec625c89520aac2d76ac2a02cbc7f9c3500b0 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 8 May 2022 14:16:37 -0700 Subject: [PATCH 2/3] loading indicators for sidebar saved views --- .../src/app/components/app-frame/app-frame.component.html | 3 ++- .../src/app/components/app-frame/app-frame.component.scss | 5 +++++ src-ui/src/app/services/rest/saved-view.service.ts | 8 +++++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html index d90d3b2d9..8f480dea4 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.html +++ b/src-ui/src/app/components/app-frame/app-frame.component.html @@ -70,8 +70,9 @@ -