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>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<div class="mr-1">
|
<div class="mr-1">
|
||||||
<app-tag *ngIf="isTag; else displayName" [tag]="item" [clickable]="true" linkTitle="Filter by tag"></app-tag>
|
<app-tag *ngIf="isTag; else displayName" [tag]="toggleableItem?.item" [clickable]="true" linkTitle="Filter by tag"></app-tag>
|
||||||
<ng-template #displayName><small>{{item.name}}</small></ng-template>
|
<ng-template #displayName><small>{{toggleableItem?.item.name}}</small></ng-template>
|
||||||
</div>
|
</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>
|
</button>
|
||||||
|
@ -9,22 +9,16 @@ import { ToggleableItem, ToggleableItemState } from '../filterable-dropdown.comp
|
|||||||
templateUrl: './filterable-dropdown-button.component.html',
|
templateUrl: './filterable-dropdown-button.component.html',
|
||||||
styleUrls: ['./filterable-dropdown-button.component.scss']
|
styleUrls: ['./filterable-dropdown-button.component.scss']
|
||||||
})
|
})
|
||||||
export class FilterableDropdownButtonComponent implements OnInit {
|
export class FilterableDropdownButtonComponent {
|
||||||
|
|
||||||
@Input()
|
@Input()
|
||||||
toggleableItem: ToggleableItem
|
toggleableItem: ToggleableItem
|
||||||
|
|
||||||
get item(): PaperlessTag | PaperlessDocumentType | PaperlessCorrespondent {
|
|
||||||
return this.toggleableItem?.item
|
|
||||||
}
|
|
||||||
|
|
||||||
@Output()
|
@Output()
|
||||||
toggle = new EventEmitter()
|
toggle = new EventEmitter()
|
||||||
|
|
||||||
isTag: boolean
|
get isTag(): boolean {
|
||||||
|
return 'is_inbox_tag' in this.toggleableItem?.item // ~ this.item instanceof PaperlessTag
|
||||||
ngOnInit() {
|
|
||||||
this.isTag = 'is_inbox_tag' in this.item // ~ this.item instanceof PaperlessTag
|
|
||||||
}
|
}
|
||||||
|
|
||||||
toggleItem(): void {
|
toggleItem(): void {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user