mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
basic statistics
This commit is contained in:
parent
69a62fbf64
commit
d67eacdd6f
@ -29,7 +29,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-lg">
|
<div class="col-lg">
|
||||||
<h4>Statistics</h4>
|
<h4>Statistics</h4>
|
||||||
<p>None yet.</p>
|
<p>Documents in inbox: {{statistics.documents_inbox}}</p>
|
||||||
|
<p>Total documents: {{statistics.documents_total}}</p>
|
||||||
<h4>Upload new Document</h4>
|
<h4>Upload new Document</h4>
|
||||||
<form>
|
<form>
|
||||||
<ngx-file-drop
|
<ngx-file-drop
|
||||||
|
@ -1,9 +1,16 @@
|
|||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
import { FileSystemDirectoryEntry, FileSystemFileEntry, NgxFileDropEntry } from 'ngx-file-drop';
|
import { FileSystemFileEntry, NgxFileDropEntry } from 'ngx-file-drop';
|
||||||
import { SavedViewConfig } from 'src/app/data/saved-view-config';
|
import { Observable } from 'rxjs';
|
||||||
import { DocumentService } from 'src/app/services/rest/document.service';
|
import { DocumentService } from 'src/app/services/rest/document.service';
|
||||||
import { SavedViewConfigService } from 'src/app/services/saved-view-config.service';
|
import { SavedViewConfigService } from 'src/app/services/saved-view-config.service';
|
||||||
import { Toast, ToastService } from 'src/app/services/toast.service';
|
import { Toast, ToastService } from 'src/app/services/toast.service';
|
||||||
|
import { environment } from 'src/environments/environment';
|
||||||
|
|
||||||
|
export interface Statistics {
|
||||||
|
documents_total?: number
|
||||||
|
documents_inbox?: number
|
||||||
|
}
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-dashboard',
|
selector: 'app-dashboard',
|
||||||
@ -13,10 +20,11 @@ import { Toast, ToastService } from 'src/app/services/toast.service';
|
|||||||
export class DashboardComponent implements OnInit {
|
export class DashboardComponent implements OnInit {
|
||||||
|
|
||||||
constructor(private documentService: DocumentService, private toastService: ToastService,
|
constructor(private documentService: DocumentService, private toastService: ToastService,
|
||||||
public savedViewConfigService: SavedViewConfigService) { }
|
public savedViewConfigService: SavedViewConfigService, private http: HttpClient) { }
|
||||||
|
|
||||||
|
|
||||||
savedDashboardViews = []
|
savedDashboardViews = []
|
||||||
|
statistics: Statistics = {}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
this.savedViewConfigService.getDashboardConfigs().forEach(config => {
|
this.savedViewConfigService.getDashboardConfigs().forEach(config => {
|
||||||
@ -24,8 +32,14 @@ export class DashboardComponent implements OnInit {
|
|||||||
this.savedDashboardViews.push({viewConfig: config, documents: result.results})
|
this.savedDashboardViews.push({viewConfig: config, documents: result.results})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
this.getStatistics().subscribe(statistics => {
|
||||||
|
this.statistics = statistics
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getStatistics(): Observable<Statistics> {
|
||||||
|
return this.http.get(`${environment.apiBaseUrl}statistics/`)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public fileOver(event){
|
public fileOver(event){
|
||||||
|
@ -194,3 +194,14 @@ class SearchAutoCompleteView(APIView):
|
|||||||
return Response(index.autocomplete(self.ix, term, limit))
|
return Response(index.autocomplete(self.ix, term, limit))
|
||||||
else:
|
else:
|
||||||
return Response([])
|
return Response([])
|
||||||
|
|
||||||
|
|
||||||
|
class StatisticsView(APIView):
|
||||||
|
|
||||||
|
permission_classes = (IsAuthenticated,)
|
||||||
|
|
||||||
|
def get(self, request, format=None):
|
||||||
|
return Response({
|
||||||
|
'documents_total': Document.objects.all().count(),
|
||||||
|
'documents_inbox': Document.objects.filter(tags__is_inbox_tag=True).distinct().count()
|
||||||
|
})
|
||||||
|
@ -14,7 +14,8 @@ from documents.views import (
|
|||||||
DocumentTypeViewSet,
|
DocumentTypeViewSet,
|
||||||
SearchView,
|
SearchView,
|
||||||
IndexView,
|
IndexView,
|
||||||
SearchAutoCompleteView
|
SearchAutoCompleteView,
|
||||||
|
StatisticsView
|
||||||
)
|
)
|
||||||
|
|
||||||
api_router = DefaultRouter()
|
api_router = DefaultRouter()
|
||||||
@ -31,6 +32,7 @@ urlpatterns = [
|
|||||||
url(r"^api/auth/",include(('rest_framework.urls', 'rest_framework'), namespace="rest_framework")),
|
url(r"^api/auth/",include(('rest_framework.urls', 'rest_framework'), namespace="rest_framework")),
|
||||||
url(r"^api/search/autocomplete/", SearchAutoCompleteView.as_view(), name="autocomplete"),
|
url(r"^api/search/autocomplete/", SearchAutoCompleteView.as_view(), name="autocomplete"),
|
||||||
url(r"^api/search/", SearchView.as_view(), name="search"),
|
url(r"^api/search/", SearchView.as_view(), name="search"),
|
||||||
|
url(r"^api/statistics/", StatisticsView.as_view(), name="statistics"),
|
||||||
url(r"^api/token/", views.obtain_auth_token), url(r"^api/", include((api_router.urls, 'drf'), namespace="drf")),
|
url(r"^api/token/", views.obtain_auth_token), url(r"^api/", include((api_router.urls, 'drf'), namespace="drf")),
|
||||||
|
|
||||||
# Favicon
|
# Favicon
|
||||||
|
Loading…
x
Reference in New Issue
Block a user