Create @apps/ui-staff bootstrap app and compose initial staff route packages#231
Merged
Conversation
Contributor
There was a problem hiding this comment.
Sorry @rohit-r-kumar, your pull request is larger than the review limit of 150000 diff characters
…ify ADR entry in readme
… into rohit-r-kumar/issue212
Contributor
|
@copilot review |
Agent-Logs-Url: https://github.com/CellixJs/cellixjs/sessions/b332a369-259e-49fd-b45e-84b75c4b82b5 Co-authored-by: ttrang-nguyen <126544378+ttrang-nguyen@users.noreply.github.com>
Copilot stopped work on behalf of
ttrang-nguyen due to an error
April 30, 2026 20:48
… into rohit-r-kumar/issue212
… into rohit-r-kumar/issue212
ui-staff-route-shared -> ui-staff-shared ui-components -> ui-shared
… into rohit-r-kumar/issue212
Contributor
|
@copilot review |
Copilot stopped work on behalf of
ttrang-nguyen due to an error
May 1, 2026 14:51
Contributor
Author
|
@copilot review |
Agent-Logs-Url: https://github.com/CellixJs/cellixjs/sessions/3d00d38e-39b6-480b-8f35-9451c37a4c08 Co-authored-by: rohit-r-kumar <175348946+rohit-r-kumar@users.noreply.github.com>
Contributor
Code Review — follow-up pass (38 commits)All 3 open items from the previous review pass are now resolved:
One additional fix I made: a Biome formatting violation in Code review and CodeQL scan both pass clean. LGTM 🟢
Code Review — follow-up pass (38 commits)All 3 open items from the previous review pass are resolved:
Also fixed a Biome formatting violation in Lint, code review, and CodeQL all pass. LGTM 🟢 |
… into rohit-r-kumar/issue212
nnoce14
approved these changes
May 1, 2026
gidich
approved these changes
May 4, 2026
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.
This pull request introduces a new staff-facing UI application (
ui-staff) and lays the groundwork for extensible route-based staff modules, such as community management and finance. It includes initial project scaffolding, configuration, and basic placeholder components for the new modules. Additionally, it updates project configuration files to recognize these new packages and their entry points.Staff UI Application Initialization
apps/ui-staffReact application, including initial HTML, entry point (main.tsx), app shell (App.tsx), OIDC configuration, theme context, minimal styles, and project configuration files (package.json,tsconfig.json,vite.config.ts,vitest.config.ts). This sets up the foundation for staff-facing features and authentication. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]New Staff Route Modules
@ocom/ui-staff-route-community-managementand@ocom/ui-staff-route-financepackages, each with minimal React component placeholders, TypeScript, and test configuration. These are intended as extensible entry points for staff-specific routes and features. [1] [2] [3] [4] [5] [6]Project Configuration Updates
knip.jsonto include the newapps/ui-staffapp and@ocom/ui-staff-route-*packages for entry and project tracking. [1] [2]Minor Code Quality Improvement
ui-community-route-accountsto use a type-only import for React, improving type safety and build performance.