hide search controls on document list

This commit is contained in:
jonaswinkler 2020-12-17 23:41:46 +01:00
parent 2c3eaadbce
commit 659cd3e9d5
4 changed files with 13 additions and 3 deletions

View File

@ -25,7 +25,7 @@
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a routerLink="/search" [queryParams]="{'more_like': document.id}" class="btn btn-sm btn-outline-secondary">
<a routerLink="/search" [queryParams]="{'more_like': document.id}" class="btn btn-sm btn-outline-secondary" *ngIf="moreLikeThis">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-three-dots" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M3 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
</svg>
@ -51,7 +51,7 @@
</svg>
Download
</a>
<ngb-progressbar [type]="searchScoreClass" [value]="searchScore" style="width: 100px; height: 5px; margin: 10px;" [max]="1"></ngb-progressbar>
<ngb-progressbar *ngIf="searchScore" [type]="searchScoreClass" [value]="searchScore" class="search-score-bar" [max]="1"></ngb-progressbar>
</div>

View File

@ -9,4 +9,10 @@
height: 100%;
position: absolute;
}
.search-score-bar {
width: 100px;
height: 5px;
margin: 10px;
}

View File

@ -12,6 +12,9 @@ export class DocumentCardLargeComponent implements OnInit {
constructor(private documentService: DocumentService, private sanitizer: DomSanitizer) { }
@Input()
moreLikeThis: boolean = false
@Input()
document: PaperlessDocument

View File

@ -21,7 +21,8 @@
<app-document-card-large *ngFor="let result of results"
[document]="result.document"
[details]="result.highlights"
[searchScore]="result.score / maxScore">
[searchScore]="result.score / maxScore"
[moreLikeThis]="true">
</app-document-card-large>
</div>