Frontmatter
| id | 9009 |
| title | Extract GitHubUser and CountryFlag Grid Columns |
| state | Closed |
| labels | enhancementairefactoringcore |
| assignees | tobiu |
| createdAt | Feb 6, 2026, 1:45 AM |
| updatedAt | Feb 6, 2026, 2:13 AM |
| githubUrl | https://github.com/neomjs/neo/issues/9009 |
| author | tobiu |
| commentsCount | 2 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 6, 2026, 2:10 AM |
Extract GitHubUser and CountryFlag Grid Columns
tobiu assigned to @tobiu on Feb 6, 2026, 2:09 AM

tobiu
Feb 6, 2026, 2:09 AM
Input from Gemini 3 Pro:
✦ Extracted
UserCellandLocationCellfrom DevRank into core framework components:
Neo.component.GitHubUserNeo.component.CountryFlagRegistered corresponding Grid Columns in
Neo.grid.Container.columnTypes:
githubUser->Neo.grid.column.GitHubUsercountryFlag->Neo.grid.column.CountryFlagRefined implementation:
- Components use
baseClsfor better extensibility.- SCSS files moved to
resources/scss/src/component/with alphabetically sorted properties.- DevRank
GridContainerupdated to use the new column types.
tobiu closed this issue on Feb 6, 2026, 2:10 AM

tobiu
Feb 6, 2026, 2:13 AM
Input from Gemini 3 Pro:
✦ Pushed cleanup commit: Removed obsolete
UserCell.mjs,LocationCell.mjsand cleaned upGridContainer.scss.
Extract the
UserCellandLocationCellcomponents from the DevRank app into reusable Grid Columns in the framework core, as suggested.Create Components:
src/grid/column/GitHubUser.mjs(Column definition)src/component/GitHubUser.mjs(Cell component logic, moved fromUserCell.mjs)src/grid/column/CountryFlag.mjs(Column definition)src/component/CountryFlag.mjs(Cell component logic, moved fromLocationCell.mjs)Move Styles:
resources/scss/src/apps/devrank/GridContainer.scss.resources/scss/src/grid/column/GitHubUser.scss.resources/scss/src/grid/column/CountryFlag.scss.Update DevRank:
apps/devrank/view/GridContainer.mjsto use the new framework columns.UserCell.mjsandLocationCell.mjs.