Skip to content
Snippets Groups Projects
Commit ce134bbd authored by Kristof De Langhe's avatar Kristof De Langhe
Browse files

55693: emit only once and reset selected items + notification

parent 09a84edb
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ import { SearchService } from '../../+search-page/search-service/search.service'
import { DSpaceObject } from '../../core/shared/dspace-object.model';
import { DSpaceObjectType } from '../../core/shared/dspace-object-type.model';
import { SortDirection, SortOptions } from '../../core/cache/models/sort-options.model';
import { NotificationsService } from '../../shared/notifications/notifications.service';
@Component({
selector: 'ds-collection-item-mapper',
......@@ -35,11 +36,11 @@ export class CollectionItemMapperComponent implements OnInit {
defaultSortOptions: SortOptions = new SortOptions('dc.title', SortDirection.ASC);
constructor(private collectionDataService: CollectionDataService,
private route: ActivatedRoute,
constructor(private route: ActivatedRoute,
private router: Router,
private searchConfigService: SearchConfigurationService,
private searchService: SearchService) {
private searchService: SearchService,
private notificationsService: NotificationsService) {
}
ngOnInit(): void {
......@@ -71,7 +72,9 @@ export class CollectionItemMapperComponent implements OnInit {
}
mapItems(ids: string[]) {
console.log(ids);
this.collectionRD$.subscribe((collectionRD: RemoteData<Collection>) => {
this.notificationsService.success('Mapping completed', `Successfully mapped ${ids.length} items to collection "${collectionRD.payload.name}".`);
});
}
getCurrentUrl(): string {
......
......@@ -6,6 +6,7 @@ import { Observable } from 'rxjs/Observable';
import { Item } from '../../core/shared/item.model';
import { PaginationComponentOptions } from '../pagination/pagination-component-options.model';
import { ItemSelectService } from './item-select.service';
import { take } from 'rxjs/operators';
@Component({
selector: 'ds-item-select',
......@@ -42,8 +43,11 @@ export class ItemSelectComponent implements OnInit {
}
confirmSelected() {
this.selectedIds$.subscribe((ids: string[]) => {
this.selectedIds$.pipe(
take(1)
).subscribe((ids: string[]) => {
this.confirm.emit(ids);
this.itemSelectService.reset();
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment