mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fixes #12
This commit is contained in:
parent
adc217e6fd
commit
6377a3758d
@ -69,6 +69,14 @@
|
|||||||
{{d.title}}
|
{{d.title}}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item w-100" *ngIf="openDocuments.length > 1">
|
||||||
|
<a class="nav-link text-truncate" [routerLink]="" (click)="closeAll()">
|
||||||
|
<svg class="sidebaricon" fill="currentColor">
|
||||||
|
<use xlink:href="assets/bootstrap-icons.svg#x"/>
|
||||||
|
</svg>
|
||||||
|
Close all
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
|
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
import { Component, OnDestroy, OnInit } from '@angular/core';
|
import { Component, OnDestroy, OnInit } from '@angular/core';
|
||||||
import { FormControl } from '@angular/forms';
|
import { FormControl } from '@angular/forms';
|
||||||
import { Router } from '@angular/router';
|
import { ActivatedRoute, Router } from '@angular/router';
|
||||||
import { from, Observable, Subscription } from 'rxjs';
|
import { from, Observable, Subscription } from 'rxjs';
|
||||||
import { debounceTime, distinctUntilChanged, map, switchMap } from 'rxjs/operators';
|
import { debounceTime, distinctUntilChanged, map, switchMap } from 'rxjs/operators';
|
||||||
import { PaperlessDocument } from 'src/app/data/paperless-document';
|
import { PaperlessDocument } from 'src/app/data/paperless-document';
|
||||||
import { OpenDocumentsService } from 'src/app/services/open-documents.service';
|
import { OpenDocumentsService } from 'src/app/services/open-documents.service';
|
||||||
import { SearchService } from 'src/app/services/rest/search.service';
|
import { SearchService } from 'src/app/services/rest/search.service';
|
||||||
import { SavedViewConfigService } from 'src/app/services/saved-view-config.service';
|
import { SavedViewConfigService } from 'src/app/services/saved-view-config.service';
|
||||||
|
import { DocumentDetailComponent } from '../document-detail/document-detail.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-app-frame',
|
selector: 'app-app-frame',
|
||||||
@ -17,6 +18,7 @@ export class AppFrameComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
constructor (
|
constructor (
|
||||||
public router: Router,
|
public router: Router,
|
||||||
|
private activatedRoute: ActivatedRoute,
|
||||||
private openDocumentsService: OpenDocumentsService,
|
private openDocumentsService: OpenDocumentsService,
|
||||||
private searchService: SearchService,
|
private searchService: SearchService,
|
||||||
public viewConfigService: SavedViewConfigService
|
public viewConfigService: SavedViewConfigService
|
||||||
@ -62,6 +64,19 @@ export class AppFrameComponent implements OnInit, OnDestroy {
|
|||||||
this.router.navigate(['search'], {queryParams: {query: this.searchField.value}})
|
this.router.navigate(['search'], {queryParams: {query: this.searchField.value}})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
closeAll() {
|
||||||
|
this.openDocumentsService.closeAll()
|
||||||
|
|
||||||
|
// TODO: is there a better way to do this?
|
||||||
|
let route = this.activatedRoute
|
||||||
|
while (route.firstChild) {
|
||||||
|
route = route.firstChild
|
||||||
|
}
|
||||||
|
if (route.component == DocumentDetailComponent) {
|
||||||
|
this.router.navigate([""])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.openDocuments = this.openDocumentsService.getOpenDocuments()
|
this.openDocuments = this.openDocumentsService.getOpenDocuments()
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable, Subject } from 'rxjs';
|
|
||||||
import { PaperlessDocument } from '../data/paperless-document';
|
import { PaperlessDocument } from '../data/paperless-document';
|
||||||
import { OPEN_DOCUMENT_SERVICE } from '../data/storage-keys';
|
import { OPEN_DOCUMENT_SERVICE } from '../data/storage-keys';
|
||||||
|
|
||||||
@ -8,6 +7,8 @@ import { OPEN_DOCUMENT_SERVICE } from '../data/storage-keys';
|
|||||||
})
|
})
|
||||||
export class OpenDocumentsService {
|
export class OpenDocumentsService {
|
||||||
|
|
||||||
|
private MAX_OPEN_DOCUMENTS = 5
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
if (sessionStorage.getItem(OPEN_DOCUMENT_SERVICE.DOCUMENTS)) {
|
if (sessionStorage.getItem(OPEN_DOCUMENT_SERVICE.DOCUMENTS)) {
|
||||||
try {
|
try {
|
||||||
@ -31,7 +32,10 @@ export class OpenDocumentsService {
|
|||||||
|
|
||||||
openDocument(doc: PaperlessDocument) {
|
openDocument(doc: PaperlessDocument) {
|
||||||
if (this.openDocuments.find(d => d.id == doc.id) == null) {
|
if (this.openDocuments.find(d => d.id == doc.id) == null) {
|
||||||
this.openDocuments.push(doc)
|
this.openDocuments.unshift(doc)
|
||||||
|
if (this.openDocuments.length > this.MAX_OPEN_DOCUMENTS) {
|
||||||
|
this.openDocuments.pop()
|
||||||
|
}
|
||||||
this.save()
|
this.save()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -44,6 +48,11 @@ export class OpenDocumentsService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
closeAll() {
|
||||||
|
this.openDocuments.splice(0, this.openDocuments.length)
|
||||||
|
this.save()
|
||||||
|
}
|
||||||
|
|
||||||
save() {
|
save() {
|
||||||
sessionStorage.setItem(OPEN_DOCUMENT_SERVICE.DOCUMENTS, JSON.stringify(this.openDocuments))
|
sessionStorage.setItem(OPEN_DOCUMENT_SERVICE.DOCUMENTS, JSON.stringify(this.openDocuments))
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user