Revert "[AAE-5392] - Add find people api call (#7119)" (#7121)

This reverts commit 1e251ab8aa4efcccdb7d72a94a34f30c7b040673.
This commit is contained in:
arditdomi 2021-06-24 09:57:27 +01:00 committed by GitHub
parent 1e251ab8aa
commit 462f40827e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 39 deletions

View File

@ -34,11 +34,6 @@ Gets information about a Content Services user.
- _requestQuery:_ [`PeopleContentQueryRequestModel`](../../../lib/core/services/people-content.service.ts) - (Optional) maxItems and skipCount used for pagination
- **Returns** [`Observable`](http://reactivex.io/documentation/observable.html)`<`[`EcmUserModel`](../../core/models/ecm-user.model.md)`[]>` - Array of people
- **findPeople**(searchTerm: string, requestQuery?: [`PeopleContentQueryRequestModel`](../../../lib/core/services/people-content.service.ts#32)): [`Observable`](http://reactivex.io/documentation/observable.html)`<`[`EcmUserModel`](../../core/models/ecm-user.model.md)`[]>`<br/>
Gets a list of people.
- _searchTerm:_ `string` - The term to search for
- _requestQuery:_ [`PeopleContentQueryRequestModel`](../../../lib/core/services/people-content.service.ts) - (Optional) maxItems and skipCount used for pagination
- **Returns** [`Observable`](http://reactivex.io/documentation/observable.html)`<`[`EcmUserModel`](../../core/models/ecm-user.model.md)`[]>` - Array of people
## Details
The class returned by `getPerson` and `getCurrentPerson` is detailed

View File

@ -94,15 +94,6 @@ describe('PeopleContentService', () => {
});
});
it('should search for users with search term and pagination info', (done) => {
const findPeopleSpy = spyOn(service.queriesApi, 'findPeople').and.returnValue(Promise.resolve({ ...fakeEcmUserList }));
service.findPeople('fake-term', { skipCount: 5, maxItems: 10 }).subscribe(() => {
expect(findPeopleSpy).toHaveBeenCalledWith('fake-term', { skipCount: 5, maxItems: 10 });
done();
});
});
it('should be able to create new person', (done) => {
spyOn(service.peopleApi, 'createPerson').and.returnValue(Promise.resolve(new PersonEntry({ entry: fakeEcmUser })));
service.createPerson(createNewPersonMock).subscribe((person) => {

View File

@ -19,7 +19,7 @@ import { Injectable } from '@angular/core';
import { Observable, from, throwError } from 'rxjs';
import { AlfrescoApiService } from './alfresco-api.service';
import { catchError, map } from 'rxjs/operators';
import { PersonEntry, PeopleApi, PersonBodyCreate, Pagination, QueriesApi } from '@alfresco/js-api';
import { PersonEntry, PeopleApi, PersonBodyCreate, Pagination } from '@alfresco/js-api';
import { EcmUserModel } from '../models/ecm-user.model';
import { LogService } from './log.service';
@ -45,7 +45,6 @@ export class PeopleContentService {
hasCheckedIsContentAdmin: boolean = false;
private _peopleApi: PeopleApi;
private _queriesApi: QueriesApi;
constructor(private apiService: AlfrescoApiService, private logService: LogService) {}
@ -53,10 +52,6 @@ export class PeopleContentService {
return this._peopleApi || (this._peopleApi = new PeopleApi(this.apiService.getInstance()));
}
get queriesApi() {
return this._queriesApi || (this._queriesApi = new QueriesApi(this.apiService.getInstance()));
}
/**
* Gets information about a user identified by their username.
* @param personId ID of the target user
@ -96,25 +91,6 @@ export class PeopleContentService {
);
}
/**
* Gets a list of people that match the given search criteria.
* @param searchTerm The term to search for
* @param requestQuery maxItems and skipCount parameters supported by JS-API
* @returns Response containing pagination and list of entries
*/
findPeople(searchTerm: string, requestQuery?: PeopleContentQueryRequestModel): Observable<PeopleContentQueryResponse> {
const promise = this.queriesApi.findPeople(searchTerm, { ...requestQuery });
return from(promise).pipe(
map(response => {
return {
pagination: response.list.pagination,
entries: response.list.entries.map((person: PersonEntry) => <EcmUserModel> person.entry)
};
}),
catchError((err) => this.handleError(err))
);
}
/**
* Creates new person.
* @param newPerson Object containing the new person details.