patch frontend to use new syfon backend path#76
Open
matthewpeterkort wants to merge 10 commits into
Open
Conversation
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.
Summary
This PR is a large Calypr frontend release branch that adds the first full Git-backed project management experience, expands frontend-core API coverage for Gecko/Syfon/Arborist, adds Syfon-backed upload support, and introduces organization/project administration screens.
The main product change is a new
/gitworkflow where users can manage GitHub App-connected repositories, complete pending Calypr project setup, browse Gecko-backed project repositories, manage project access/storage, and upload files through Syfon-backed storage.Major User-Facing Changes
Git Explorer
Adds a new Git-first product surface:
/git/git/[org]/git/[org]/project/[project]/git/[org]/project/[project]/blob/[...path]/git/[org]/settingsThe Git Explorer supports:
The global top navigation now treats
Gitas the primary project-management entry point instead of the older organization/data-lake view.Pending Project Setup
Adds frontend support for the “GitHub repo connected but Calypr project not created yet” flow.
When a user returns from GitHub App installation/update, the frontend:
/gitPending setup is intentionally visible and retryable instead of silently disappearing.
Organization Settings
Adds
/git/[org]/settings, an owner/admin-oriented access management page.The page supports:
Delete flows are intentionally conservative and require typed confirmation for destructive project/org deletion.
Syfon Upload UI
Adds a new upload feature surface and upload controller logic:
/uploadThis is intended to work with the new Syfon backend upload paths rather than legacy Fence data routes.
Organization Explorer Refresh
Adds/updates the older
/organizationdata-lake-oriented view:/organization/organization/[org]/organization/[org]/project/[project]This remains available as the Syfon/data-lake view, but Git is now the primary project-management UX.
Core API Additions
Gecko Core API
Adds substantial Gecko API support in
packages/core/src/features/gecko.New frontend hooks/types cover:
Syfon Core API
Adds substantial Syfon API support in
packages/core/src/features/syfon.New frontend hooks/types cover:
Arborist/Authz Core API
Adds frontend authz API support for ownership/access-management workflows.
New frontend hooks/types cover:
These are used by project setup and organization settings.
Navigation/Auth Changes
This PR includes frontend plumbing changes around:
The goal is to support the new Git-first workflow while avoiding auth/session churn across the new pages.
Sample Commons Wiring
Adds sampleCommons routes/pages for:
/git/git/[org]/git/[org]/settings/git/[org]/project/[project]/git/[org]/project/[project]/blob/[...path]/organization/organization/[org]/organization/[org]/project/[project]/uploadAlso updates sampleCommons config/build files and icons.
Testing Added
This branch adds or updates tests for:
Backend/API Expectations
This frontend branch expects compatible backend/revproxy support for the new routes.
Required backend surfaces include:
/gecko/.../authz/ownership/...and/authz/access/.../data/...In particular, the settings page depends on Arborist returning ownership/access state for an org/project tree, and uses macro-style access mutation endpoints so the frontend does not need to know whether access came from ownership-managed grants or direct RBAC grants.
Deployment Notes
This branch is not just a visual/frontend-only change. It should be deployed with matching Gecko, Syfon, Arborist, and revproxy changes.
Known required backend alignment:
/authz/ownership/,/authz/access/,/gecko/, and/data/correctly.Validation
Local frontend compile was run successfully: