Add Location column to AIP search and selection lists (#3656)#3657
Open
luis100 wants to merge 2 commits intodevelopmentfrom
Open
Add Location column to AIP search and selection lists (#3656)#3657luis100 wants to merge 2 commits intodevelopmentfrom
luis100 wants to merge 2 commits intodevelopmentfrom
Conversation
Adds a new `default_IndexedAIP_parent` column to the five main AIP search/selection lists showing the direct parent's level icon and title. Hovering displays the full ancestor breadcrumb (root / ... / parent). Rendering uses `AipTitleBatchFetcher`, a GWT singleton that coalesces UUID lookups into a single batched API request (50 ms debounce), caches results for 10 s (configurable), and redraws affected tables on resolution. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Removes the TTL-based expiry that caused stale titles to persist after a parent AIP was edited. The fetcher now always queues a background re-fetch on every getValue() call (batched at 50 ms), and only triggers a table redraw when a fetched value actually changed. This ensures the Location column self-corrects after any Solr update without flickering on unchanged data. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #3656
Summary
default_IndexedAIP_parent) to five AIP lists:Search_AIPs,SelectAipDialog_AIPs,CreateActionJob_AIP,CreateDefaultJob_AIP,IngestAppraisal_searchAIPsRoot / ... / Parentbreadcrumb via the HTMLtitleattributenowrap = trueso it picks up thecellTableFadeOutCSS styling from the table frameworkAipTitleBatchFetchersingleton batches UUID lookups (50 ms debounce), caches results for 10 s (configurable viasetCacheTtlMs), and redraws affectedCellTableinstances once the batch resolvesTest plan
/🤖 Generated with Claude Code