mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-19 07:53:02 +00:00
[DURACOM-191] run optimize imports and lint fix
This commit is contained in:
@@ -1,39 +1,53 @@
|
||||
import { BehaviorSubject, combineLatest, Observable, Subscription } from 'rxjs';
|
||||
import { map, take } from 'rxjs/operators';
|
||||
import { EventType, Router, RouterLink, RouterLinkActive, Scroll } from '@angular/router';
|
||||
import { getCommunityPageRoute } from '../../../community-page/community-page-routing-paths';
|
||||
import {
|
||||
AsyncPipe,
|
||||
NgForOf,
|
||||
NgIf,
|
||||
} from '@angular/common';
|
||||
import {
|
||||
Component,
|
||||
Input,
|
||||
OnDestroy,
|
||||
OnInit,
|
||||
} from '@angular/core';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import {
|
||||
EventType,
|
||||
EventType,
|
||||
Router,
|
||||
Router,
|
||||
RouterLink,
|
||||
RouterLinkActive,
|
||||
Scroll,
|
||||
Scroll,
|
||||
} from '@angular/router';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
import {
|
||||
BehaviorSubject,
|
||||
BehaviorSubject,
|
||||
combineLatest,
|
||||
combineLatest,
|
||||
Observable,
|
||||
Observable,
|
||||
Subscription,
|
||||
Subscription,
|
||||
} from 'rxjs';
|
||||
import {
|
||||
map,
|
||||
map,
|
||||
take,
|
||||
take,
|
||||
} from 'rxjs/operators';
|
||||
|
||||
import { getCollectionPageRoute } from '../../../collection-page/collection-page-routing-paths';
|
||||
import { getCommunityPageRoute } from '../../../community-page/community-page-routing-paths';
|
||||
import {
|
||||
getCommunityPageRoute,
|
||||
getCommunityPageRoute,
|
||||
} from '../../../community-page/community-page-routing-paths';
|
||||
import { BrowseService } from '../../../core/browse/browse.service';
|
||||
import { PaginatedList } from '../../../core/data/paginated-list.model';
|
||||
import { RemoteData } from '../../../core/data/remote-data';
|
||||
import { BrowseDefinition } from '../../../core/shared/browse-definition.model';
|
||||
import { getFirstCompletedRemoteData } from '../../../core/shared/operators';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { AsyncPipe, NgForOf, NgIf } from '@angular/common';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
|
||||
export interface ComColPageNavOption {
|
||||
id: string;
|
||||
@@ -57,9 +71,9 @@ export interface ComColPageNavOption {
|
||||
RouterLinkActive,
|
||||
TranslateModule,
|
||||
AsyncPipe,
|
||||
NgIf
|
||||
NgIf,
|
||||
],
|
||||
standalone: true
|
||||
standalone: true,
|
||||
})
|
||||
export class ComcolPageBrowseByComponent implements OnDestroy, OnInit {
|
||||
/**
|
||||
|
Reference in New Issue
Block a user