mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-17 10:13:56 -05:00
31 lines
703 B
TypeScript
31 lines
703 B
TypeScript
import { Component, EventEmitter, Input, Output } from '@angular/core'
|
|
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'
|
|
import { ObjectWithId } from 'src/app/data/object-with-id'
|
|
|
|
@Component({
|
|
selector: 'app-select-dialog',
|
|
templateUrl: './select-dialog.component.html',
|
|
styleUrls: ['./select-dialog.component.scss'],
|
|
})
|
|
export class SelectDialogComponent {
|
|
constructor(public activeModal: NgbActiveModal) {}
|
|
|
|
@Output()
|
|
public selectClicked = new EventEmitter()
|
|
|
|
@Input()
|
|
title = $localize`Select`
|
|
|
|
@Input()
|
|
message = $localize`Please select an object`
|
|
|
|
@Input()
|
|
objects: ObjectWithId[] = []
|
|
|
|
selected: number
|
|
|
|
cancelClicked() {
|
|
this.activeModal.close()
|
|
}
|
|
}
|