From e61f0425476c21a1001a06c9a582ae74aa65a274 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 6 Mar 2021 14:29:24 -0800 Subject: [PATCH] Remove metadata API calls --- .../document-card-large.component.html | 7 +------ .../document-card-large.component.ts | 10 ---------- .../document-card-small.component.html | 7 +------ .../document-card-small.component.ts | 10 ---------- 4 files changed, 2 insertions(+), 32 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html index 71dac6a57..cf969ddbe 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html @@ -52,12 +52,7 @@  View - - - - - - + diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts index bf42c4235..10457054f 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts @@ -1,7 +1,6 @@ import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core'; import { DomSanitizer } from '@angular/platform-browser'; import { PaperlessDocument } from 'src/app/data/paperless-document'; -import { PaperlessDocumentMetadata } from 'src/app/data/paperless-document-metadata'; import { DocumentService } from 'src/app/services/rest/document.service'; import { SettingsService, SETTINGS_KEYS } from 'src/app/services/settings.service'; import { NgbPopover } from '@ng-bootstrap/ng-bootstrap'; @@ -48,8 +47,6 @@ export class DocumentCardLargeComponent implements OnInit { mouseOnPreview = false popoverHidden = true - metadata: PaperlessDocumentMetadata - get searchScoreClass() { if (this.searchScore > 0.7) { return "success" @@ -61,9 +58,6 @@ export class DocumentCardLargeComponent implements OnInit { } ngOnInit(): void { - this.documentService.getMetadata(this.document?.id).subscribe(result => { - this.metadata = result - }) } getIsThumbInverted() { @@ -95,10 +89,6 @@ export class DocumentCardLargeComponent implements OnInit { return this.documentService.getPreviewUrl(this.document.id) } - getContentType() { - return this.metadata?.has_archive_version ? 'application/pdf' : this.metadata?.original_mime_type - } - mouseEnterPreview() { this.mouseOnPreview = true if (!this.popover.isOpen()) { diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index 1dde0c9d4..aa0aa9225 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -46,12 +46,7 @@ - - - - - - + diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts index 033abab27..e025e4e25 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts @@ -1,7 +1,6 @@ import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core'; import { map } from 'rxjs/operators'; import { PaperlessDocument } from 'src/app/data/paperless-document'; -import { PaperlessDocumentMetadata } from 'src/app/data/paperless-document-metadata'; import { DocumentService } from 'src/app/services/rest/document.service'; import { SettingsService, SETTINGS_KEYS } from 'src/app/services/settings.service'; import { NgbPopover } from '@ng-bootstrap/ng-bootstrap'; @@ -37,12 +36,7 @@ export class DocumentCardSmallComponent implements OnInit { mouseOnPreview = false popoverHidden = true - metadata: PaperlessDocumentMetadata - ngOnInit(): void { - this.documentService.getMetadata(this.document?.id).subscribe(result => { - this.metadata = result - }) } getIsThumbInverted() { @@ -74,10 +68,6 @@ export class DocumentCardSmallComponent implements OnInit { ) } - getContentType() { - return this.metadata?.has_archive_version ? 'application/pdf' : this.metadata?.original_mime_type - } - mouseEnterPreview() { this.mouseOnPreview = true if (!this.popover.isOpen()) {