Commits
Raf Ponsaerts authored 2621454cdb9
1 1 | import { Component, OnDestroy, OnInit } from '@angular/core'; |
2 2 | import { FormBuilder } from '@angular/forms'; |
3 3 | import { Router } from '@angular/router'; |
4 4 | import { TranslateService } from '@ngx-translate/core'; |
5 - | import { BehaviorSubject, combineLatest, Observable, of as observableOf } from 'rxjs'; |
5 + | import { BehaviorSubject, combineLatest, Observable } from 'rxjs'; |
6 6 | import { Subscription } from 'rxjs/internal/Subscription'; |
7 7 | import { map, switchMap, take } from 'rxjs/operators'; |
8 8 | import { PaginatedList } from '../../../core/data/paginated-list'; |
9 9 | import { RemoteData } from '../../../core/data/remote-data'; |
10 10 | import { EPersonDataService } from '../../../core/eperson/eperson-data.service'; |
11 11 | import { EPerson } from '../../../core/eperson/models/eperson.model'; |
12 12 | import { hasValue } from '../../../shared/empty.util'; |
13 13 | import { NotificationsService } from '../../../shared/notifications/notifications.service'; |
14 14 | import { PaginationComponentOptions } from '../../../shared/pagination/pagination-component-options.model'; |
15 15 | import { EpersonDtoModel } from '../../../core/eperson/models/eperson-dto.model'; |