Optimize handleResize and fetchData methods in RepoSummary page #1063
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.
What this PR does:
Optimized RepoSummary page: Simplified width calculation logic using widthMap to reduce hardcoding. Streamlined call logic for fetchData, fetchCatalog, and fetchRepoRelations to eliminate code duplication.
Type of changes
Please delete options that are not relevant.
Feature/Issue validation/testing:
Please describe the tests that you ran to verify your changes and relevant result summary.
Test Objective
Verify the optimized code in
RepoSummary.vuefunctions correctly, including:onMountedlifecycle hookTest Methodology
Unit Testing
props.repoTypevaluesfetchDatafetchCatalogfetchRepoRelationsManual Testing
Performance Profiling
Test Steps
Functional Verification
Parameter Validation
props.repoTypeto:dataset→ VerifyfetchCataloginvocationmodel→ VerifyfetchEndpointinvocationNetwork Analysis
Test Results
✅ Functional Correctness
✅ Error Monitoring
Special notes for your reviewer:
Checklist:
Release note:
MR Summary:
The summary is added by @codegpt.
The MR optimizes the
handleResizeandfetchDatamethods in theRepoSummary.vuefile. Key updates include:handleResizeusing awidthMapto reduce hardcoding.fetchData,fetchCatalog, andfetchRepoRelationsto eliminate code duplication. These methods are now invoked withinfetchDatausing a unifiedfetchEndpointDatafunction.fetchDatamethod now usesPromise.allfor parallel processing of API calls, potentially improving performance.onMountedlifecycle hook has been simplified by removing direct calls tofetchCatalogandfetchRepoRelations, as they are now handled withinfetchData.