From 66f7ae377398155481dedd727e80665c61c35ed3 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Thu, 25 Feb 2021 07:29:51 -0800 Subject: [PATCH 1/9] Remove redundant openDocuments and unused subscription --- .../app-frame/app-frame.component.ts | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/src-ui/src/app/components/app-frame/app-frame.component.ts b/src-ui/src/app/components/app-frame/app-frame.component.ts index ad4460f16..0709a83ca 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.ts +++ b/src-ui/src/app/components/app-frame/app-frame.component.ts @@ -1,4 +1,4 @@ -import { Component, OnDestroy, OnInit } from '@angular/core'; +import { Component, OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { ActivatedRoute, Router } from '@angular/router'; import { from, Observable, Subscription } from 'rxjs'; @@ -16,7 +16,7 @@ import { Meta } from '@angular/platform-browser'; templateUrl: './app-frame.component.html', styleUrls: ['./app-frame.component.scss'] }) -export class AppFrameComponent implements OnInit, OnDestroy { +export class AppFrameComponent implements OnInit { constructor ( public router: Router, @@ -26,7 +26,7 @@ export class AppFrameComponent implements OnInit, OnDestroy { public savedViewService: SavedViewService, private meta: Meta ) { - + } versionString = `${environment.appTitle} ${environment.version}` @@ -39,9 +39,9 @@ export class AppFrameComponent implements OnInit, OnDestroy { searchField = new FormControl('') - openDocuments: PaperlessDocument[] = [] - - openDocumentsSubscription: Subscription + get openDocuments(): PaperlessDocument[] { + return this.openDocumentsService.getOpenDocuments() + } searchAutoComplete = (text$: Observable) => text$.pipe( @@ -92,13 +92,6 @@ export class AppFrameComponent implements OnInit, OnDestroy { } ngOnInit() { - this.openDocuments = this.openDocumentsService.getOpenDocuments() - } - - ngOnDestroy() { - if (this.openDocumentsSubscription) { - this.openDocumentsSubscription.unsubscribe() - } } get displayName() { From 548b1ea7ecd8cde98c69ef2ab343093f85f9553c Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Thu, 25 Feb 2021 07:43:02 -0800 Subject: [PATCH 2/9] Allow closing individual documents from sidebar --- .../app-frame/app-frame.component.html | 7 +++- .../app-frame/app-frame.component.scss | 33 +++++++++++++++---- .../app-frame/app-frame.component.ts | 14 ++++++++ src-ui/src/theme_dark.scss | 4 +++ 4 files changed, 51 insertions(+), 7 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 5692d9f78..c59bc3e0a 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 @@ -92,9 +92,14 @@  {{d.title | documentTitle}} + + + + + -