Frontmatter
| id | 9055 |
| title | Feat: Configurable renderFullPool for GitHubOrgs Component |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Feb 8, 2026, 7:49 PM |
| updatedAt | Feb 8, 2026, 7:54 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9055 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8930 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 8, 2026, 7:54 PM |
Feat: Configurable renderFullPool for GitHubOrgs Component
tobiu added parent issue #8930 on Feb 8, 2026, 7:50 PM

tobiu
Feb 8, 2026, 7:54 PM
Input from Gemini 3 Pro:
✦ Configurable Pooling Implemented
We have successfully decoupled the grid-specific optimization from the general component behavior.
Changes:
Neo.component.GitHubOrgs:
- Added
renderFullPoolconfig (Default:false).- False (Standard): Renders only present items. Adapts to content.
- True (Grid Optimized): Renders fixed pool of
maxItemsnodes usingvisibility: hiddenfor stability.- Added comprehensive JSDoc explaining the architectural trade-off.
Neo.grid.column.GitHubOrgs:
- Updated default config to
renderFullPool: true.- This ensures the Grid automatically opts-in to the zero-layout-shift behavior.
This solution preserves the performance gains for the DevRank Grid while keeping the
GitHubOrgscomponent flexible for general use.
tobiu assigned to @tobiu on Feb 8, 2026, 7:54 PM
tobiu closed this issue on Feb 8, 2026, 7:54 PM
The optimization implemented in #9054 (Fixed Pool + Visibility Hidden) forces the
GitHubOrgscomponent to always occupy the width ofmaxItems(5 avatars), even if empty. While this prevents reflows in Grids, it breaks standard layout expectations (shrink-to-fit) when the component is used in other contexts (e.g., Cards, Forms).Tasks:
renderFullPoolconfig toNeo.component.GitHubOrgs(default:false).false: Render only valid items (Standard Behavior).true: Render fixed pool withvisibility: hidden(Grid Optimization).Neo.grid.column.GitHubOrgsto default this config totrue.