mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
112 lines
3.0 KiB
TypeScript
112 lines
3.0 KiB
TypeScript
import {
|
|
Component,
|
|
OnInit,
|
|
ViewChild,
|
|
} from '@angular/core';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import {
|
|
BehaviorSubject,
|
|
Subscription,
|
|
} from 'rxjs';
|
|
import {
|
|
distinctUntilChanged,
|
|
map,
|
|
} from 'rxjs/operators';
|
|
|
|
import { BulkAccessControlService } from '../../shared/access-control-form-container/bulk-access-control.service';
|
|
import { SelectableListState } from '../../shared/object-list/selectable-list/selectable-list.reducer';
|
|
import { SelectableListService } from '../../shared/object-list/selectable-list/selectable-list.service';
|
|
import { BulkAccessBrowseComponent } from './browse/bulk-access-browse.component';
|
|
import { BulkAccessSettingsComponent } from './settings/bulk-access-settings.component';
|
|
|
|
@Component({
|
|
selector: 'ds-bulk-access',
|
|
templateUrl: './bulk-access.component.html',
|
|
styleUrls: ['./bulk-access.component.scss'],
|
|
imports: [
|
|
TranslateModule,
|
|
BulkAccessSettingsComponent,
|
|
BulkAccessBrowseComponent,
|
|
],
|
|
standalone: true,
|
|
})
|
|
export class BulkAccessComponent implements OnInit {
|
|
|
|
/**
|
|
* The selection list id
|
|
*/
|
|
listId = 'bulk-access-list';
|
|
|
|
/**
|
|
* The list of the objects already selected
|
|
*/
|
|
objectsSelected$: BehaviorSubject<string[]> = new BehaviorSubject<string[]>([]);
|
|
|
|
/**
|
|
* Array to track all subscriptions and unsubscribe them onDestroy
|
|
*/
|
|
private subs: Subscription[] = [];
|
|
|
|
/**
|
|
* The SectionsDirective reference
|
|
*/
|
|
@ViewChild('dsBulkSettings') settings: BulkAccessSettingsComponent;
|
|
|
|
constructor(
|
|
private bulkAccessControlService: BulkAccessControlService,
|
|
private selectableListService: SelectableListService,
|
|
) {
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
this.subs.push(
|
|
this.selectableListService.getSelectableList(this.listId).pipe(
|
|
distinctUntilChanged(),
|
|
map((list: SelectableListState) => this.generateIdListBySelectedElements(list)),
|
|
).subscribe(this.objectsSelected$),
|
|
);
|
|
}
|
|
|
|
canExport(): boolean {
|
|
return this.objectsSelected$.value?.length > 0;
|
|
}
|
|
|
|
/**
|
|
* Reset the form to its initial state
|
|
* This will also reset the state of the child components (bitstream and item access)
|
|
*/
|
|
reset(): void {
|
|
this.settings.reset();
|
|
}
|
|
|
|
/**
|
|
* Submit the form
|
|
* This will create a payload file and execute the script
|
|
*/
|
|
submit(): void {
|
|
const settings = this.settings.getValue();
|
|
const bitstreamAccess = settings.bitstream;
|
|
const itemAccess = settings.item;
|
|
|
|
const { file } = this.bulkAccessControlService.createPayloadFile({
|
|
bitstreamAccess,
|
|
itemAccess,
|
|
state: settings.state,
|
|
});
|
|
|
|
this.bulkAccessControlService.executeScript(
|
|
this.objectsSelected$.value || [],
|
|
file,
|
|
).subscribe();
|
|
}
|
|
|
|
/**
|
|
* Generate The RemoteData object containing the list of the selected elements
|
|
* @param list
|
|
* @private
|
|
*/
|
|
private generateIdListBySelectedElements(list: SelectableListState): string[] {
|
|
return list?.selection?.map((entry: any) => entry.indexableObject.uuid);
|
|
}
|
|
}
|