Commits
lotte authored 317c615b306
5 5 | import { SortDirection, SortOptions } from '../../core/cache/models/sort-options.model'; |
6 6 | import { fadeIn, fadeInOut } from '../animations/fade'; |
7 7 | import { BehaviorSubject, combineLatest as observableCombineLatest, Observable, Subscription } from 'rxjs'; |
8 8 | import { ListableObject } from '../object-collection/shared/listable-object.model'; |
9 9 | import { getStartsWithComponent, StartsWithType } from '../starts-with/starts-with-decorator'; |
10 10 | import { PaginationService } from '../../core/pagination/pagination.service'; |
11 11 | import { ViewMode } from '../../core/shared/view-mode.model'; |
12 12 | import { RouteService } from '../../core/services/route.service'; |
13 13 | import { map } from 'rxjs/operators'; |
14 14 | import { hasValue } from '../empty.util'; |
15 - | import { BBM_PAGINATION_ID } from '../../browse-by/browse-by-metadata-page/browse-by-metadata-page.component'; |
16 15 | |
17 16 | @Component({ |
18 17 | selector: 'ds-browse-by', |
19 18 | styleUrls: ['./browse-by.component.scss'], |
20 19 | templateUrl: './browse-by.component.html', |
21 20 | animations: [ |
22 21 | fadeIn, |
23 22 | fadeInOut |
24 23 | ] |
25 24 | }) |