-
Notifications
You must be signed in to change notification settings - Fork 16
AMM-993 User role agent Id mapping changes #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe changes involve updates to the HTML template and TypeScript class of the Changes
Possibly related PRs
Suggested reviewers
π Recent review detailsConfiguration used: CodeRabbit UI π Files selected for processing (1)
π§ Files skipped from review as they are similar to previous changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? πͺ§ TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
π§Ή Outside diff range and nitpick comments (4)
src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.html (2)
92-95: Move inline style to CSS file.
The inline style text-align: end should be moved to the component's CSS file for better maintainability.
-<div
- style="text-align: end"
- *ngIf="searchResultArray.length !== 0 && showTableFlag"
->
+<div
+ class="filter-container"
+ *ngIf="searchResultArray.length !== 0 && showTableFlag"
+>Add to the component's CSS file:
.filter-container {
text-align: end;
}96-104: Enhance filter input accessibility and user experience.
The filter input should have:
- ARIA labels for screen readers
- Clear indication of which fields are being filtered
- A clear button to reset the filter
<mat-form-field id="filterbox">
<input
matInput
placeholder="In-Table Search"
+ aria-label="Filter table"
+ [attr.aria-description]="'Filter by employee name, login ID, or agent ID'"
#filterTerm
(keyup)="filterComponentList(filterTerm.value)"
/>
<mat-icon matSuffix>search</mat-icon>
+ <button
+ mat-icon-button
+ matSuffix
+ *ngIf="filterTerm.value"
+ aria-label="Clear filter"
+ (click)="filterTerm.value=''; filterComponentList('')"
+ >
+ <mat-icon>close</mat-icon>
+ </button>
</mat-form-field>src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.ts (2)
Line range hint 251-277: Optimize filter performance and functionality.
The current implementation has several areas for improvement:
- Multiple iterations over the array
- Redundant paginator assignments
- Case-sensitive string comparisons
Consider these optimizations:
filterComponentList(searchTerm?: string) {
if (!searchTerm) {
this.filteredsearchResultArray.data = this.searchResultArray;
- this.filteredsearchResultArray.paginator = this.paginator;
} else {
- this.filteredsearchResultArray.data = [];
- this.filteredsearchResultArray.paginator = this.paginator;
- this.searchResultArray.forEach((item: any) => {
- for (const key in item) {
- if (
- key === 'firstName' ||
- key === 'middleName' ||
- key === 'lastName' ||
- key === 'userName' ||
- key === 'agentID'
- ) {
- const value: string = '' + item[key];
- if (value.toLowerCase().indexOf(searchTerm.toLowerCase()) >= 0) {
- this.filteredsearchResultArray.data.push(item);
- this.filteredsearchResultArray.paginator = this.paginator;
- break;
- }
- }
- }
- });
+ const searchFields = ['firstName', 'middleName', 'lastName', 'userName', 'agentID'];
+ const term = searchTerm.toLowerCase();
+ this.filteredsearchResultArray.data = this.searchResultArray.filter(item =>
+ searchFields.some(field =>
+ String(item[field] || '').toLowerCase().includes(term)
+ )
+ );
}
+ this.filteredsearchResultArray.paginator = this.paginator;
}This optimization:
- Uses filter and some for better performance
- Moves paginator assignment outside the loop
- Handles null/undefined values safely
- Performs case-insensitive comparison once
Line range hint 1-400: Consider implementing TypeScript interfaces and error handling.
The component could benefit from several architectural improvements:
-
Define interfaces for the data structures instead of using 'any':
- Employee
- SearchRequest
- SearchResponse
- AgentMapping
-
Implement consistent error handling:
- Currently, errors are only logged to console
- Consider showing user-friendly error messages
- Add error recovery mechanisms
-
Add input validation:
- Validate search parameters before API calls
- Add proper type checking
Would you like me to help create these interfaces and implement error handling patterns?
π Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
π Files selected for processing (2)
- src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.html (2 hunks)
- src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.ts (5 hunks)
π Additional comments (2)
src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.html (1)
92-104: Verify filter functionality across different scenarios.
The table search implementation looks good overall. Please ensure to test:
- Filtering with special characters
- Case sensitivity
- Performance with large datasets
- Filter behavior with pagination
Also applies to: 117-117
β Verification successful
Let me check the implementation of filterComponentList to verify the filtering behavior.
Let me check the complete implementation to verify all the filtering conditions.
Filter implementation is robust and follows best practices
The implementation addresses all the key concerns:
- Case-insensitive search using
toLowerCase() - Handles special characters through string conversion (
'' + item[key]) - Works with pagination (
this.filteredsearchResultArray.paginator) - Efficiently filters specific fields only (
firstName,middleName,lastName,userName,agentID) - Handles empty/undefined search terms gracefully
π Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Check for existing filter implementations in the codebase for consistency
rg -l "filterComponentList|mat-form-field.*filterTerm" --type ts --type html
Length of output: 11389
Script:
#!/bin/bash
# Check the implementation of filterComponentList in the component
rg -A 10 "filterComponentList" src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.ts
Length of output: 619
Script:
#!/bin/bash
# Get the complete filterComponentList implementation
rg -A 30 "filterComponentList" src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.ts
Length of output: 1165
src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.ts (1)
22-28: LGTM! Clean implementation of filter input reference.
The addition of ElementRef import and ViewChild decorator follows Angular best practices for accessing DOM elements.
Also applies to: 78-78
| <th mat-header-cell *matHeaderCellDef>SNo.</th> | ||
| <td mat-cell *matCellDef="let element; let i = index"> | ||
| {{ i + 1 }} | ||
| {{ filteredsearchResultArray.data.indexOf(element) + 1 }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π οΈ Refactor suggestion
Consider optimizing serial number calculation.
The current implementation has two potential issues:
- Using
indexOfin the template can impact performance with large datasets as it's called for each row. - Changing serial numbers during filtering might confuse users trying to reference specific rows.
Consider either:
- Maintaining original indices for reference
- Pre-calculating indices during filtering
-{{ filteredsearchResultArray.data.indexOf(element) + 1 }}
+{{ element.serialNumber }}Update the filterComponentList method in the component:
filterComponentList(filterValue: string) {
// ... existing filter logic ...
this.filteredsearchResultArray.data = filtered.map((item, index) => ({
...item,
serialNumber: index + 1
}));
}There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this case, the dataset size does not reach a threshold that would significantly impact performance, making the indexOf approach acceptable for our current needs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@devikasuresh20, understood. If the dataset size is small, using indexOf in the template is acceptable and should not significantly impact performance. Thank you for the clarification.
(qβ’ΜοΈΏβ’Μq)
βοΈ Learnings added
Learnt from: devikasuresh20
PR: PSMRI/ADMIN-UI#42
File: src/app/app-provider-admin/provider-admin/configurations/user-role-agent-id-mapping/user-role-agent-id-mapping.component.html:117-117
Timestamp: 2024-10-30T11:15:39.479Z
Learning: For the 'user-role-agent-id-mapping.component.html' in the user role agent ID mapping screen, the dataset size is small enough that performance impact due to using 'indexOf' in the template is acceptable.
Note: Learnings are effective only in the context of similar code segments. To apply general coding guidelines, please configure review instructions. You can manage existing learnings in the app.
| if (this.filterTerm) { | ||
| this.filterTerm.nativeElement.value = ''; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π οΈ Refactor suggestion
Consider extracting filter reset logic.
While clearing the filter input is necessary, the searchEmployee method is handling multiple responsibilities. Consider extracting the filter reset logic into a separate method for better maintainability.
+ private resetFilter() {
+ if (this.filterTerm) {
+ this.filterTerm.nativeElement.value = '';
+ }
+ }
searchEmployee(state: any, service: any, role: any, empname: any, empid: any) {
- if (this.filterTerm) {
- this.filterTerm.nativeElement.value = '';
- }
+ this.resetFilter();π Committable suggestion
βΌοΈ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| if (this.filterTerm) { | |
| this.filterTerm.nativeElement.value = ''; | |
| } | |
| private resetFilter() { | |
| if (this.filterTerm) { | |
| this.filterTerm.nativeElement.value = ''; | |
| } | |
| } | |
| searchEmployee(state: any, service: any, role: any, empname: any, empid: any) { | |
| this.resetFilter(); |
|
* ANM - 942 userId passing wrong (PSMRI#26) * Merged conflicts resolved for admin develop branch (PSMRI#22) * customization changes * modified change * CSS changes * some modified changes * CSS changes * custom changes * validations for project msaster name and field title addition * small change * resolved the bug fixes for customization admin * logic implementation on project-serviceline-mapping * change in logic for datasource for project-serviceline-mapping * added validation for fieldName * Bug fixes for admin customization * Small change in project serviceline * Change in update request object * CSS CHNAGES * project serviceline mapping changes * Error issue * Error issue * CSS Changes * css changes * CSS chnages * CSS chnages * CSS chnages * CSS chnages * CSS chnages * Update environment.ci.ts.template * CSS chnages * CSS changes * CSS changes * Bug fix for update in emplopyee master * change in index file for console.warn --------- Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> * ANM- 942: Location serviceline userid passing incorrect --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> * URL changes using jboss context-root * Minor change in angular.json * Minor changes * abdm facility addition changes in job location mapping * Service line filteration changes in institution screens * Service line filteration changes in institution screens (PSMRI#31) * Changes in Item Master screen * AMM-1001 Item Master Screen Changes (PSMRI#35) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * AMM-1020 & AMM-1025 (PSMRI#37) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * AMM-1022 procedure component mapping changes (PSMRI#38) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * AMM-1036 Project configuration changes (PSMRI#39) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * Add ESLint and NPM Audit workflow * User role agent Id mapping changes * Minor changes * AMM-993 User role agent Id mapping changes (PSMRI#42) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * User role agent Id mapping changes * Minor changes * Update environment.ci.ts.template * Update environment.ci.ts.template * modified environment.ci.ts.template * In Table search changes * Minor changes * Remove extra / from ci environment --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> Co-authored-by: devikasuresh20 <devika.s36@wipro.com> Co-authored-by: devikasuresh20 <57424483+devikasuresh20@users.noreply.github.com> Co-authored-by: Soham Gupta <soham.gupta003@gmail.com> Co-authored-by: ravishanigarapu <133210792+ravishanigarapu@users.noreply.github.com>
* ANM - 942 userId passing wrong (PSMRI#26) * Merged conflicts resolved for admin develop branch (PSMRI#22) * customization changes * modified change * CSS changes * some modified changes * CSS changes * custom changes * validations for project msaster name and field title addition * small change * resolved the bug fixes for customization admin * logic implementation on project-serviceline-mapping * change in logic for datasource for project-serviceline-mapping * added validation for fieldName * Bug fixes for admin customization * Small change in project serviceline * Change in update request object * CSS CHNAGES * project serviceline mapping changes * Error issue * Error issue * CSS Changes * css changes * CSS chnages * CSS chnages * CSS chnages * CSS chnages * CSS chnages * Update environment.ci.ts.template * CSS chnages * CSS changes * CSS changes * Bug fix for update in emplopyee master * change in index file for console.warn --------- Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> * ANM- 942: Location serviceline userid passing incorrect --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> * URL changes using jboss context-root * Minor change in angular.json * Minor changes * abdm facility addition changes in job location mapping * Service line filteration changes in institution screens * Service line filteration changes in institution screens (PSMRI#31) * Changes in Item Master screen * AMM-1001 Item Master Screen Changes (PSMRI#35) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * AMM-1020 & AMM-1025 (PSMRI#37) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * AMM-1022 procedure component mapping changes (PSMRI#38) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * AMM-1036 Project configuration changes (PSMRI#39) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * Add ESLint and NPM Audit workflow * User role agent Id mapping changes * Minor changes * AMM-993 User role agent Id mapping changes (PSMRI#42) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * User role agent Id mapping changes * Minor changes * Update environment.ci.ts.template * Update environment.ci.ts.template * modified environment.ci.ts.template * In Table search changes * Minor changes * Remove extra / from ci environment --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> Co-authored-by: devikasuresh20 <devika.s36@wipro.com> Co-authored-by: devikasuresh20 <57424483+devikasuresh20@users.noreply.github.com> Co-authored-by: Soham Gupta <soham.gupta003@gmail.com> Co-authored-by: ravishanigarapu <133210792+ravishanigarapu@users.noreply.github.com>
* Abdm facility (#1) * ANM - 942 userId passing wrong (#26) * Merged conflicts resolved for admin develop branch (#22) * customization changes * modified change * CSS changes * some modified changes * CSS changes * custom changes * validations for project msaster name and field title addition * small change * resolved the bug fixes for customization admin * logic implementation on project-serviceline-mapping * change in logic for datasource for project-serviceline-mapping * added validation for fieldName * Bug fixes for admin customization * Small change in project serviceline * Change in update request object * CSS CHNAGES * project serviceline mapping changes * Error issue * Error issue * CSS Changes * css changes * CSS chnages * CSS chnages * CSS chnages * CSS chnages * CSS chnages * Update environment.ci.ts.template * CSS chnages * CSS changes * CSS changes * Bug fix for update in emplopyee master * change in index file for console.warn --------- Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> * ANM- 942: Location serviceline userid passing incorrect --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> * URL changes using jboss context-root * Minor change in angular.json * Minor changes * abdm facility addition changes in job location mapping * Service line filteration changes in institution screens * Service line filteration changes in institution screens (#31) * Changes in Item Master screen * AMM-1001 Item Master Screen Changes (#35) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * AMM-1020 & AMM-1025 (#37) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * AMM-1022 procedure component mapping changes (#38) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * AMM-1036 Project configuration changes (#39) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * Add ESLint and NPM Audit workflow * User role agent Id mapping changes * Minor changes * AMM-993 User role agent Id mapping changes (#42) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * User role agent Id mapping changes * Minor changes * Update environment.ci.ts.template * Update environment.ci.ts.template * modified environment.ci.ts.template * In Table search changes * Minor changes * Remove extra / from ci environment --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> Co-authored-by: devikasuresh20 <devika.s36@wipro.com> Co-authored-by: devikasuresh20 <57424483+devikasuresh20@users.noreply.github.com> Co-authored-by: Soham Gupta <soham.gupta003@gmail.com> Co-authored-by: ravishanigarapu <133210792+ravishanigarapu@users.noreply.github.com> * Abdm facility (#2) * ANM - 942 userId passing wrong (#26) * Merged conflicts resolved for admin develop branch (#22) * customization changes * modified change * CSS changes * some modified changes * CSS changes * custom changes * validations for project msaster name and field title addition * small change * resolved the bug fixes for customization admin * logic implementation on project-serviceline-mapping * change in logic for datasource for project-serviceline-mapping * added validation for fieldName * Bug fixes for admin customization * Small change in project serviceline * Change in update request object * CSS CHNAGES * project serviceline mapping changes * Error issue * Error issue * CSS Changes * css changes * CSS chnages * CSS chnages * CSS chnages * CSS chnages * CSS chnages * Update environment.ci.ts.template * CSS chnages * CSS changes * CSS changes * Bug fix for update in emplopyee master * change in index file for console.warn --------- Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> * ANM- 942: Location serviceline userid passing incorrect --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> * URL changes using jboss context-root * Minor change in angular.json * Minor changes * abdm facility addition changes in job location mapping * Service line filteration changes in institution screens * Service line filteration changes in institution screens (#31) * Changes in Item Master screen * AMM-1001 Item Master Screen Changes (#35) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * AMM-1020 & AMM-1025 (#37) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * AMM-1022 procedure component mapping changes (#38) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * AMM-1036 Project configuration changes (#39) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * Add ESLint and NPM Audit workflow * User role agent Id mapping changes * Minor changes * AMM-993 User role agent Id mapping changes (#42) * Service line filteration changes in institution screens * Changes in Item Master screen * Main store-sub store and project related changes * procedure component mapping changes * Project configuration changes * User role agent Id mapping changes * Minor changes * Update environment.ci.ts.template * Update environment.ci.ts.template * modified environment.ci.ts.template * In Table search changes * Minor changes * Remove extra / from ci environment --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> Co-authored-by: devikasuresh20 <devika.s36@wipro.com> Co-authored-by: devikasuresh20 <57424483+devikasuresh20@users.noreply.github.com> Co-authored-by: Soham Gupta <soham.gupta003@gmail.com> Co-authored-by: ravishanigarapu <133210792+ravishanigarapu@users.noreply.github.com> --------- Co-authored-by: Parth Kothari <109517053+KpParth@users.noreply.github.com> Co-authored-by: Karyamsetty Helen Grace <KA40094929@wipro.com> Co-authored-by: nkokkiligadda87 <nkokkiligadda87@gmail.com> Co-authored-by: Pratibha <bhallamudi.pratibha@wipro.com> Co-authored-by: Parth Kothari <pa20251871@wipro.com> Co-authored-by: Ancy Riju <AN40085822@wipro.com> Co-authored-by: Shakyan Kushwaha <32445019+anandamideShakyan@users.noreply.github.com> Co-authored-by: Mithun James <drtechie@users.noreply.github.com> Co-authored-by: devikasuresh20 <devika.s36@wipro.com> Co-authored-by: devikasuresh20 <57424483+devikasuresh20@users.noreply.github.com> Co-authored-by: Soham Gupta <soham.gupta003@gmail.com> Co-authored-by: ravishanigarapu <133210792+ravishanigarapu@users.noreply.github.com>



π Description
JIRA ID: AMM-993
Implemeted in table search functionality in user role agent Id mapping screen.
β Type of Change
βΉοΈ Additional Information
Please describe how the changes were tested, and include any relevant screenshots, logs, or other information that provides additional context.
Summary by CodeRabbit
New Features
Bug Fixes
Refactor