@hmcts/rpx-xui-common-lib 3.2.12-pofcc-156 → 3.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1541,13 +1541,13 @@ var BookingCheckType;
1541
1541
  BookingCheckType["POSSIBLE_BOOKINGS"] = "POSSIBLE_BOOKINGS";
1542
1542
  })(BookingCheckType || (BookingCheckType = {}));
1543
1543
 
1544
+ // used as settings for filters and components
1544
1545
  var PersonRole;
1545
1546
  (function (PersonRole) {
1546
1547
  PersonRole["JUDICIAL"] = "Judicial";
1547
1548
  PersonRole["LEGAL_OPERATIONS"] = "Legal Ops";
1548
1549
  PersonRole["ADMIN"] = "Admin";
1549
1550
  PersonRole["CTSC"] = "CTSC";
1550
- PersonRole["ENFORCEMENT"] = "Enforcement";
1551
1551
  PersonRole["ALL"] = "All";
1552
1552
  })(PersonRole || (PersonRole = {}));
1553
1553
  // Role categories used in application
@@ -1559,38 +1559,8 @@ var RoleCategory;
1559
1559
  RoleCategory["CTSC"] = "CTSC";
1560
1560
  RoleCategory["PROFESSIONAL"] = "PROFESSIONAL";
1561
1561
  RoleCategory["CITIZEN"] = "CITIZEN";
1562
- RoleCategory["ENFORCEMENT"] = "ENFORCEMENT";
1563
1562
  RoleCategory["ALL"] = "ALL";
1564
1563
  })(RoleCategory || (RoleCategory = {}));
1565
- function getRoleCategory(personRole) {
1566
- let roleCategory = RoleCategory.ALL;
1567
- if (!(personRole === PersonRole.ALL)) {
1568
- if (personRole === PersonRole.LEGAL_OPERATIONS) {
1569
- roleCategory = RoleCategory.LEGAL_OPERATIONS;
1570
- }
1571
- else if (personRole === PersonRole.ADMIN) {
1572
- roleCategory = RoleCategory.ADMIN;
1573
- }
1574
- else if (personRole === PersonRole.CTSC) {
1575
- roleCategory = RoleCategory.CTSC;
1576
- }
1577
- else if (personRole === PersonRole.ENFORCEMENT) {
1578
- roleCategory = RoleCategory.ENFORCEMENT;
1579
- }
1580
- }
1581
- return roleCategory;
1582
- }
1583
- function getPersonRole(roleCategory) {
1584
- if (roleCategory === RoleCategory.LEGAL_OPERATIONS) {
1585
- return PersonRole.LEGAL_OPERATIONS;
1586
- }
1587
- else if (roleCategory === RoleCategory.ENFORCEMENT) {
1588
- return PersonRole.ENFORCEMENT;
1589
- }
1590
- else {
1591
- return PersonRole.ADMIN;
1592
- }
1593
- }
1594
1564
 
1595
1565
  var AddressType;
1596
1566
  (function (AddressType) {
@@ -2464,7 +2434,7 @@ class FindAPersonService {
2464
2434
  email: caseworker.email,
2465
2435
  name: `${caseworker.firstName} ${caseworker.lastName}`,
2466
2436
  id: caseworker.idamId,
2467
- domain: getPersonRole(caseworker.roleCategory)
2437
+ domain: caseworker.roleCategory === RoleCategory.LEGAL_OPERATIONS ? PersonRole.LEGAL_OPERATIONS : PersonRole.ADMIN
2468
2438
  // knownAs can be added if required
2469
2439
  };
2470
2440
  if (caseworker.roleCategory === roleCategory || roleCategory === RoleCategory.ALL || caseworker.idamId === this.userId) {
@@ -2474,7 +2444,18 @@ class FindAPersonService {
2474
2444
  return people;
2475
2445
  }
2476
2446
  searchInCaseworkers(caseworkers, searchOptions) {
2477
- const roleCategory = getRoleCategory(searchOptions.userRole);
2447
+ let roleCategory = RoleCategory.ALL;
2448
+ if (!(searchOptions.userRole === PersonRole.ALL)) {
2449
+ if (searchOptions.userRole === PersonRole.LEGAL_OPERATIONS) {
2450
+ roleCategory = RoleCategory.LEGAL_OPERATIONS;
2451
+ }
2452
+ else if (searchOptions.userRole === PersonRole.ADMIN) {
2453
+ roleCategory = RoleCategory.ADMIN;
2454
+ }
2455
+ else if (searchOptions.userRole === PersonRole.CTSC) {
2456
+ roleCategory = RoleCategory.CTSC;
2457
+ }
2458
+ }
2478
2459
  const searchTerm = searchOptions && searchOptions.searchTerm ? searchOptions.searchTerm.toLowerCase() : '';
2479
2460
  const people = caseworkers ? this.mapCaseworkers(caseworkers, roleCategory) : [];
2480
2461
  const finalPeopleList = people.filter((person) => person && person.name && person.name.toLowerCase().includes(searchTerm));
@@ -2486,34 +2467,6 @@ class FindAPersonService {
2486
2467
  searchJudicial(value, serviceId) {
2487
2468
  return this.http.post('api/prd/judicial/getJudicialUsersSearch', { searchString: value, serviceCode: serviceId });
2488
2469
  }
2489
- findByPersonRole(searchTerm, personRole, selectedPersons, services, userIncluded, assignedUser) {
2490
- switch (personRole) {
2491
- case PersonRole.JUDICIAL: {
2492
- return this.findJudicialOrCTSCPeople(searchTerm, personRole, services, userIncluded, assignedUser).pipe(map((persons) => {
2493
- const ids = selectedPersons.map(({ id }) => id);
2494
- return persons.filter(({ id }) => !ids.includes(id));
2495
- }));
2496
- }
2497
- case PersonRole.ALL: {
2498
- return zip(this.findJudicialOrCTSCPeople(searchTerm, personRole, services, userIncluded, assignedUser), this.findCaseworkersOrAdminsOrCtsc(searchTerm, personRole, services, userIncluded, assignedUser)).pipe(map((separatePeople) => separatePeople[0].concat(separatePeople[1])));
2499
- }
2500
- case PersonRole.CTSC:
2501
- case PersonRole.LEGAL_OPERATIONS:
2502
- case PersonRole.ADMIN:
2503
- case PersonRole.ENFORCEMENT: {
2504
- return this.findCaseworkersOrAdminsOrCtsc(searchTerm, personRole, services, userIncluded, assignedUser);
2505
- }
2506
- default: {
2507
- return of([]);
2508
- }
2509
- }
2510
- }
2511
- findJudicialOrCTSCPeople(searchTerm, personRole, services, userIncluded, assignedUser) {
2512
- return this.find({ searchTerm, userRole: personRole, services: [services], userIncluded: userIncluded, assignedUser: assignedUser });
2513
- }
2514
- findCaseworkersOrAdminsOrCtsc(searchTerm, personRole, services, userIncluded, assignedUser) {
2515
- return this.findCaseworkers({ searchTerm, userRole: personRole, services: [services], userIncluded: userIncluded, assignedUser: assignedUser });
2516
- }
2517
2470
  static { this.ɵfac = function FindAPersonService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FindAPersonService)(i0.ɵɵinject(i1$2.HttpClient), i0.ɵɵinject(SessionStorageService)); }; }
2518
2471
  static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: FindAPersonService, factory: FindAPersonService.ɵfac, providedIn: 'root' }); }
2519
2472
  }
@@ -2627,8 +2580,28 @@ class FindPersonComponent {
2627
2580
  });
2628
2581
  }
2629
2582
  filter(searchTerm) {
2583
+ const findJudicialOrCTSCPeople = this.findPersonService.find({ searchTerm, userRole: this.domain, services: [this.services], userIncluded: this.userIncluded, assignedUser: this.assignedUser });
2584
+ const findCaseworkersOrAdminsOrCtsc = this.findPersonService.findCaseworkers({ searchTerm, userRole: this.domain, services: [this.services], userIncluded: this.userIncluded, assignedUser: this.assignedUser });
2630
2585
  if (searchTerm && searchTerm.length > this.minSearchCharacters) {
2631
- return this.findPersonService.findByPersonRole(searchTerm, this.domain, this.selectedPersons, this.services, this.userIncluded, this.assignedUser);
2586
+ switch (this.domain) {
2587
+ case PersonRole.JUDICIAL: {
2588
+ return findJudicialOrCTSCPeople.pipe(map((persons) => {
2589
+ const ids = this.selectedPersons.map(({ id }) => id);
2590
+ return persons.filter(({ id }) => !ids.includes(id));
2591
+ }));
2592
+ }
2593
+ case PersonRole.ALL: {
2594
+ return zip(findJudicialOrCTSCPeople, findCaseworkersOrAdminsOrCtsc).pipe(map((separatePeople) => separatePeople[0].concat(separatePeople[1])));
2595
+ }
2596
+ case PersonRole.CTSC:
2597
+ case PersonRole.LEGAL_OPERATIONS:
2598
+ case PersonRole.ADMIN: {
2599
+ return findCaseworkersOrAdminsOrCtsc;
2600
+ }
2601
+ default: {
2602
+ return of([]);
2603
+ }
2604
+ }
2632
2605
  }
2633
2606
  return of([]);
2634
2607
  }
@@ -2640,7 +2613,6 @@ class FindPersonComponent {
2640
2613
  if (!selectedPerson) {
2641
2614
  return '';
2642
2615
  }
2643
- // The judiciary people contain a different object which has a fullName property
2644
2616
  if (selectedPerson.domain === PersonRole.JUDICIAL && selectedPerson.fullName) {
2645
2617
  return `${selectedPerson.fullName} (${selectedPerson.email})`;
2646
2618
  }
@@ -10778,5 +10750,5 @@ function radioGroupValidator() {
10778
10750
  * Generated bundle index. Do not edit.
10779
10751
  */
10780
10752
 
10781
- export { AccessibilityComponent, AddressMessageEnum, AddressModel, AddressOption, AddressService, AnonymousFeatureUser, BadgeColour, BookingCheckType, COMMON_COMPONENTS, CapitalizePipe, CheckboxListComponent, ContactDetailsComponent, CookieBannerComponent, CookieService, DateBadgeColour, DueDateComponent, ExuiCommonLibModule, ExuiPageWrapperComponent, FeatureToggleDirective, FeatureToggleGuard, FeatureToggleService, FilterService, FindLocationComponent, FindPersonComponent, FindServiceComponent, FindTaskNameComponent, FindWorkTypeComponent, GOV_UI_COMPONENTS, GenericFilterComponent, GoogleAnalyticsService, GoogleTagManagerService, GovUiService, GovUkCheckboxComponent, GovUkCheckboxesComponent, GovUkDateComponent, GovUkErrorMessageComponent, GovUkFieldsetComponent, GovUkFileUploadComponent, GovUkFormGroupWrapperComponent, GovUkInputComponent, GovUkLabelComponent, GovUkRadioComponent, GovUkRadiosComponent, GovUkSelectComponent, GovUkTextareaComponent, GovukTableColumnConfig, GovukTableComponent, HasLoadingState, HmctsBannerComponent, HmctsErrorSummaryComponent, HmctsIdentityBarComponent, HmctsMainWrapperComponent, HmctsPaginationComponent, HmctsPrimaryNavigationComponent, HmctsSessionDialogComponent, HmctsSubNavigationComponent, InviteUserFormComponent, InviteUserPermissionComponent, LaunchDarklyService, LetContext, LetDirective, LoadingService, LoadingSpinnerComponent, LocationService, LoggedInFeatureUser, ManageSessionServices, PaginationComponent, PersonRole, RadioFilterFieldConfig, RefDataService, RemoveHostDirective, RoleCategory, RoleGuard, RoleMatching, RoleService, SECONDS_IN_A_DAY, SearchJudicialsComponent, SearchLocationComponent, SearchServiceComponent, SearchVenueComponent, SearchWorkTypeComponent, SelectedCaseComponent, SelectedCaseConfirmComponent, SelectedCaseListComponent, ServiceMessageComponent, ServiceMessagesComponent, ShareCaseComponent, ShareCaseConfirmComponent, SharedCaseErrorMessages, TabComponent, TaskService, TcConfirmComponent, TcDisplayHtmlComponent, TcDisplayPlainComponent, TermsAndConditionsComponent, TimeoutNotificationsService, UserDetailsComponent, UserListComponent, UserSelectComponent, WriteAddressFieldComponent, WriteAddressInputsComponent, checkboxesBeCheckedValidator, dateValidator, getPersonRole, getRoleCategory, radioGroupValidator, windowProvider, windowToken };
10753
+ export { AccessibilityComponent, AddressMessageEnum, AddressModel, AddressOption, AddressService, AnonymousFeatureUser, BadgeColour, BookingCheckType, COMMON_COMPONENTS, CapitalizePipe, CheckboxListComponent, ContactDetailsComponent, CookieBannerComponent, CookieService, DateBadgeColour, DueDateComponent, ExuiCommonLibModule, ExuiPageWrapperComponent, FeatureToggleDirective, FeatureToggleGuard, FeatureToggleService, FilterService, FindLocationComponent, FindPersonComponent, FindServiceComponent, FindTaskNameComponent, FindWorkTypeComponent, GOV_UI_COMPONENTS, GenericFilterComponent, GoogleAnalyticsService, GoogleTagManagerService, GovUiService, GovUkCheckboxComponent, GovUkCheckboxesComponent, GovUkDateComponent, GovUkErrorMessageComponent, GovUkFieldsetComponent, GovUkFileUploadComponent, GovUkFormGroupWrapperComponent, GovUkInputComponent, GovUkLabelComponent, GovUkRadioComponent, GovUkRadiosComponent, GovUkSelectComponent, GovUkTextareaComponent, GovukTableColumnConfig, GovukTableComponent, HasLoadingState, HmctsBannerComponent, HmctsErrorSummaryComponent, HmctsIdentityBarComponent, HmctsMainWrapperComponent, HmctsPaginationComponent, HmctsPrimaryNavigationComponent, HmctsSessionDialogComponent, HmctsSubNavigationComponent, InviteUserFormComponent, InviteUserPermissionComponent, LaunchDarklyService, LetContext, LetDirective, LoadingService, LoadingSpinnerComponent, LocationService, LoggedInFeatureUser, ManageSessionServices, PaginationComponent, PersonRole, RadioFilterFieldConfig, RefDataService, RemoveHostDirective, RoleCategory, RoleGuard, RoleMatching, RoleService, SECONDS_IN_A_DAY, SearchJudicialsComponent, SearchLocationComponent, SearchServiceComponent, SearchVenueComponent, SearchWorkTypeComponent, SelectedCaseComponent, SelectedCaseConfirmComponent, SelectedCaseListComponent, ServiceMessageComponent, ServiceMessagesComponent, ShareCaseComponent, ShareCaseConfirmComponent, SharedCaseErrorMessages, TabComponent, TaskService, TcConfirmComponent, TcDisplayHtmlComponent, TcDisplayPlainComponent, TermsAndConditionsComponent, TimeoutNotificationsService, UserDetailsComponent, UserListComponent, UserSelectComponent, WriteAddressFieldComponent, WriteAddressInputsComponent, checkboxesBeCheckedValidator, dateValidator, radioGroupValidator, windowProvider, windowToken };
10782
10754
  //# sourceMappingURL=hmcts-rpx-xui-common-lib.mjs.map