mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Cleanup dropdown button component
This commit is contained in:
parent
6381093386
commit
de6ba3489a
@ -5,8 +5,8 @@
|
||||
</svg>
|
||||
</div>
|
||||
<div class="mr-1">
|
||||
<app-tag *ngIf="isTag; else displayName" [tag]="item" [clickable]="true" linkTitle="Filter by tag"></app-tag>
|
||||
<ng-template #displayName><small>{{item.name}}</small></ng-template>
|
||||
<app-tag *ngIf="isTag; else displayName" [tag]="toggleableItem?.item" [clickable]="true" linkTitle="Filter by tag"></app-tag>
|
||||
<ng-template #displayName><small>{{toggleableItem?.item.name}}</small></ng-template>
|
||||
</div>
|
||||
<div class="badge badge-light rounded-pill ml-auto mr-1">{{item.document_count}}</div>
|
||||
<div class="badge badge-light rounded-pill ml-auto mr-1">{{toggleableItem?.item.document_count}}</div>
|
||||
</button>
|
||||
|
@ -9,22 +9,16 @@ import { ToggleableItem, ToggleableItemState } from '../filterable-dropdown.comp
|
||||
templateUrl: './filterable-dropdown-button.component.html',
|
||||
styleUrls: ['./filterable-dropdown-button.component.scss']
|
||||
})
|
||||
export class FilterableDropdownButtonComponent implements OnInit {
|
||||
export class FilterableDropdownButtonComponent {
|
||||
|
||||
@Input()
|
||||
toggleableItem: ToggleableItem
|
||||
|
||||
get item(): PaperlessTag | PaperlessDocumentType | PaperlessCorrespondent {
|
||||
return this.toggleableItem?.item
|
||||
}
|
||||
|
||||
@Output()
|
||||
toggle = new EventEmitter()
|
||||
|
||||
isTag: boolean
|
||||
|
||||
ngOnInit() {
|
||||
this.isTag = 'is_inbox_tag' in this.item // ~ this.item instanceof PaperlessTag
|
||||
get isTag(): boolean {
|
||||
return 'is_inbox_tag' in this.toggleableItem?.item // ~ this.item instanceof PaperlessTag
|
||||
}
|
||||
|
||||
toggleItem(): void {
|
||||
|
Loading…
x
Reference in New Issue
Block a user