mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 11:33:04 +00:00
29 lines
822 B
TypeScript
29 lines
822 B
TypeScript
import { Component} from '@angular/core';
|
|
import { Item } from '../../../core/shared/item.model';
|
|
import { ObjectSelectService } from '../object-select.service';
|
|
import { ObjectSelectComponent } from '../object-select/object-select.component';
|
|
import { isNotEmpty } from '../../empty.util';
|
|
|
|
@Component({
|
|
selector: 'ds-item-select',
|
|
templateUrl: './item-select.component.html'
|
|
})
|
|
|
|
/**
|
|
* A component used to select items from a specific list and returning the UUIDs of the selected items
|
|
*/
|
|
export class ItemSelectComponent extends ObjectSelectComponent<Item> {
|
|
|
|
constructor(protected objectSelectService: ObjectSelectService) {
|
|
super(objectSelectService);
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
super.ngOnInit();
|
|
if (!isNotEmpty(this.confirmButton)) {
|
|
this.confirmButton = 'item.select.confirm';
|
|
}
|
|
}
|
|
|
|
}
|