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

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
1545
1544
  var PersonRole;
1546
1545
  (function (PersonRole) {
1547
1546
  PersonRole["JUDICIAL"] = "Judicial";
1548
1547
  PersonRole["LEGAL_OPERATIONS"] = "Legal Ops";
1549
1548
  PersonRole["ADMIN"] = "Admin";
1550
1549
  PersonRole["CTSC"] = "CTSC";
1550
+ PersonRole["ENFORCEMENT"] = "Enforcement";
1551
1551
  PersonRole["ALL"] = "All";
1552
1552
  })(PersonRole || (PersonRole = {}));
1553
1553
  // Role categories used in application
@@ -1559,8 +1559,38 @@ var RoleCategory;
1559
1559
  RoleCategory["CTSC"] = "CTSC";
1560
1560
  RoleCategory["PROFESSIONAL"] = "PROFESSIONAL";
1561
1561
  RoleCategory["CITIZEN"] = "CITIZEN";
1562
+ RoleCategory["ENFORCEMENT"] = "ENFORCEMENT";
1562
1563
  RoleCategory["ALL"] = "ALL";
1563
1564
  })(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
+ }
1564
1594
 
1565
1595
  var AddressType;
1566
1596
  (function (AddressType) {
@@ -2434,7 +2464,7 @@ class FindAPersonService {
2434
2464
  email: caseworker.email,
2435
2465
  name: `${caseworker.firstName} ${caseworker.lastName}`,
2436
2466
  id: caseworker.idamId,
2437
- domain: caseworker.roleCategory === RoleCategory.LEGAL_OPERATIONS ? PersonRole.LEGAL_OPERATIONS : PersonRole.ADMIN
2467
+ domain: getPersonRole(caseworker.roleCategory)
2438
2468
  // knownAs can be added if required
2439
2469
  };
2440
2470
  if (caseworker.roleCategory === roleCategory || roleCategory === RoleCategory.ALL || caseworker.idamId === this.userId) {
@@ -2444,18 +2474,7 @@ class FindAPersonService {
2444
2474
  return people;
2445
2475
  }
2446
2476
  searchInCaseworkers(caseworkers, searchOptions) {
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
- }
2477
+ const roleCategory = getRoleCategory(searchOptions.userRole);
2459
2478
  const searchTerm = searchOptions && searchOptions.searchTerm ? searchOptions.searchTerm.toLowerCase() : '';
2460
2479
  const people = caseworkers ? this.mapCaseworkers(caseworkers, roleCategory) : [];
2461
2480
  const finalPeopleList = people.filter((person) => person && person.name && person.name.toLowerCase().includes(searchTerm));
@@ -2467,6 +2486,34 @@ class FindAPersonService {
2467
2486
  searchJudicial(value, serviceId) {
2468
2487
  return this.http.post('api/prd/judicial/getJudicialUsersSearch', { searchString: value, serviceCode: serviceId });
2469
2488
  }
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
+ }
2470
2517
  static { this.ɵfac = function FindAPersonService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FindAPersonService)(i0.ɵɵinject(i1$2.HttpClient), i0.ɵɵinject(SessionStorageService)); }; }
2471
2518
  static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: FindAPersonService, factory: FindAPersonService.ɵfac, providedIn: 'root' }); }
2472
2519
  }
@@ -2580,28 +2627,8 @@ class FindPersonComponent {
2580
2627
  });
2581
2628
  }
2582
2629
  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 });
2585
2630
  if (searchTerm && searchTerm.length > this.minSearchCharacters) {
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
- }
2631
+ return this.findPersonService.findByPersonRole(searchTerm, this.domain, this.selectedPersons, this.services, this.userIncluded, this.assignedUser);
2605
2632
  }
2606
2633
  return of([]);
2607
2634
  }
@@ -2613,6 +2640,7 @@ class FindPersonComponent {
2613
2640
  if (!selectedPerson) {
2614
2641
  return '';
2615
2642
  }
2643
+ // The judiciary people contain a different object which has a fullName property
2616
2644
  if (selectedPerson.domain === PersonRole.JUDICIAL && selectedPerson.fullName) {
2617
2645
  return `${selectedPerson.fullName} (${selectedPerson.email})`;
2618
2646
  }
@@ -10750,5 +10778,5 @@ function radioGroupValidator() {
10750
10778
  * Generated bundle index. Do not edit.
10751
10779
  */
10752
10780
 
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 };
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 };
10754
10782
  //# sourceMappingURL=hmcts-rpx-xui-common-lib.mjs.map