mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00

* [DURACOM-304] Refactored item-bitstreams.component by removing page size of 9999 * [DURACOM-304] Refactored edit-bitstream-page.component by removing page size of 9999 * [DURACOM-304] Refactored scripts-select.component by using infinite scroll instead of page size 9999 * [DURACOM-304] Refactored dynamic-list.component.ts by removing page size of 9999 * [DURACOM-304] Refactored relationship-type-data.service.ts by removing page size of 9999 * [DURACOM-304] removed unneeded selectAll method (dynamic-lookup-relation-search-tab.component) * [DURACOM-304] Refactored submission-section-cc-licenses.component.ts by removing page size of 9999 * [DURACOM-304] lint fix * [DURACOM-304] test fix * [DURACOM-304] fix accessibility issue on scripts-select * [DURACOM-304] Refactor of bundle-data.service.ts by removing page size of 9999 * [DURACOM-304] other fix related to accessibility * [DURACOM-304] lint fix * [DURACOM-304] resolve conflicts * [DURACOM-304] fix lint * [DURACOM-304] add support for findAll method in dynamic-scrollable-dropdown.component.ts * [DURACOM-304] refactor to use lazy data provider * [DURACOM-304] improve loading logic for cc-licenses section and dynamic-list * [DURACOM-304] refactor, fix dynamic-list.component loading * [DURACOM-304] remove br --------- Co-authored-by: Alisa Ismailati <alisa.ismailati@4science.com>
180 lines
4.7 KiB
TypeScript
180 lines
4.7 KiB
TypeScript
import {
|
|
AsyncPipe,
|
|
NgFor,
|
|
NgIf,
|
|
} from '@angular/common';
|
|
import {
|
|
Component,
|
|
EventEmitter,
|
|
Input,
|
|
OnDestroy,
|
|
OnInit,
|
|
Optional,
|
|
Output,
|
|
} from '@angular/core';
|
|
import {
|
|
ControlContainer,
|
|
FormsModule,
|
|
NgForm,
|
|
} from '@angular/forms';
|
|
import {
|
|
ActivatedRoute,
|
|
Router,
|
|
} from '@angular/router';
|
|
import { NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
|
|
import {
|
|
BehaviorSubject,
|
|
Subscription,
|
|
} from 'rxjs';
|
|
import {
|
|
map,
|
|
tap,
|
|
} from 'rxjs/operators';
|
|
|
|
import { FindListOptions } from '../../../core/data/find-list-options.model';
|
|
import { PaginatedList } from '../../../core/data/paginated-list.model';
|
|
import { ScriptDataService } from '../../../core/data/processes/script-data.service';
|
|
import {
|
|
getFirstCompletedRemoteData,
|
|
getRemoteDataPayload,
|
|
} from '../../../core/shared/operators';
|
|
import { hasValue } from '../../../shared/empty.util';
|
|
import { ThemedLoadingComponent } from '../../../shared/loading/themed-loading.component';
|
|
import { Script } from '../../scripts/script.model';
|
|
import { controlContainerFactory } from '../process-form-factory';
|
|
|
|
const SCRIPT_QUERY_PARAMETER = 'script';
|
|
|
|
/**
|
|
* Component used to select a script
|
|
*/
|
|
@Component({
|
|
selector: 'ds-scripts-select',
|
|
templateUrl: './scripts-select.component.html',
|
|
styleUrls: ['./scripts-select.component.scss'],
|
|
viewProviders: [{ provide: ControlContainer,
|
|
useFactory: controlContainerFactory,
|
|
deps: [[new Optional(), NgForm]] }],
|
|
standalone: true,
|
|
imports: [NgIf, FormsModule, NgFor, AsyncPipe, TranslateModule, InfiniteScrollModule, ThemedLoadingComponent, NgbDropdownModule],
|
|
})
|
|
export class ScriptsSelectComponent implements OnInit, OnDestroy {
|
|
/**
|
|
* Emits the selected script when the selection changes
|
|
*/
|
|
@Output() select: EventEmitter<Script> = new EventEmitter<Script>();
|
|
/**
|
|
* All available scripts
|
|
*/
|
|
scripts: Script[] = [];
|
|
|
|
private _selectedScript: Script;
|
|
private subscription: Subscription;
|
|
|
|
private _isLastPage = false;
|
|
|
|
scriptOptions: FindListOptions = {
|
|
elementsPerPage: 20,
|
|
currentPage: 1,
|
|
};
|
|
|
|
isLoading$: BehaviorSubject<boolean> = new BehaviorSubject(false);
|
|
|
|
constructor(
|
|
private scriptService: ScriptDataService,
|
|
private router: Router,
|
|
private route: ActivatedRoute,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Sets all available scripts
|
|
* Checks if the route contains a script ID and auto selects this scripts
|
|
*/
|
|
ngOnInit() {
|
|
this.loadScripts();
|
|
}
|
|
|
|
/**
|
|
* Load the scripts and check if the route contains a script
|
|
*/
|
|
loadScripts() {
|
|
if (this.isLoading$.value) {return;}
|
|
this.isLoading$.next(true);
|
|
|
|
this.subscription = this.scriptService.findAll(this.scriptOptions).pipe(
|
|
getFirstCompletedRemoteData(),
|
|
getRemoteDataPayload(),
|
|
tap((paginatedList: PaginatedList<Script>) => {
|
|
this._isLastPage = paginatedList?.pageInfo?.currentPage >= paginatedList?.pageInfo?.totalPages;
|
|
}),
|
|
map((paginatedList: PaginatedList<Script>) => paginatedList.page),
|
|
).subscribe((newScripts: Script[]) => {
|
|
this.scripts = [...this.scripts, ...newScripts];
|
|
this.isLoading$.next(false);
|
|
|
|
const param = this.route.snapshot.queryParams[SCRIPT_QUERY_PARAMETER];
|
|
if (hasValue(param)) {
|
|
this._selectedScript = this.scripts.find((script) => script.id === param);
|
|
this.select.emit(this._selectedScript);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Load more scripts when the user scrolls to the bottom of the list
|
|
* @param event The scroll event
|
|
*/
|
|
onScroll(event: any) {
|
|
if (event.target.scrollTop + event.target.clientHeight >= event.target.scrollHeight) {
|
|
if (!this.isLoading$.value && !this._isLastPage) {
|
|
this.scriptOptions.currentPage++;
|
|
this.loadScripts();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the identifier of the selected script
|
|
*/
|
|
get selectedScript(): string {
|
|
return this._selectedScript ? this._selectedScript.id : undefined;
|
|
}
|
|
|
|
/**
|
|
* Sets the currently selected script by navigating to the correct route using the scripts ID
|
|
* @param value The identifier of the script
|
|
*/
|
|
set selectedScript(value: string) {
|
|
this.router.navigate([],
|
|
{
|
|
queryParams: { [SCRIPT_QUERY_PARAMETER]: value },
|
|
},
|
|
);
|
|
}
|
|
|
|
selectScript(script: Script) {
|
|
this._selectedScript = script;
|
|
}
|
|
|
|
onSelect(newScript: Script) {
|
|
this.selectScript(newScript);
|
|
// this._selectedScript = newScript;
|
|
this.select.emit(newScript);
|
|
this.selectedScript = newScript.name;
|
|
}
|
|
|
|
@Input()
|
|
set script(value: Script) {
|
|
this._selectedScript = value;
|
|
}
|
|
|
|
ngOnDestroy(): void {
|
|
if (hasValue(this.subscription)) {
|
|
this.subscription.unsubscribe();
|
|
}
|
|
}
|
|
}
|