feat: tangent - resource management via document entity - #2733
Open
maxy-shpfy wants to merge 1 commit into
Conversation
This was referenced Sep 17, 2026
🎩 PreviewA preview build has been created at: |
This was referenced Sep 17, 2026
Collaborator
Author
This was referenced Sep 17, 2026
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_interactive_chips_in_tangent_chat
branch
from
September 18, 2026 18:52
40b4c48 to
fd9ed3e
Compare
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_resource_management_via_document_entity
branch
from
September 18, 2026 18:52
332ab5a to
e222f69
Compare
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_interactive_chips_in_tangent_chat
branch
from
September 18, 2026 19:13
fd9ed3e to
ac2652f
Compare
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_resource_management_via_document_entity
branch
from
September 18, 2026 19:13
e222f69 to
27fbce5
Compare
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_interactive_chips_in_tangent_chat
branch
from
September 18, 2026 19:18
ac2652f to
9fff15f
Compare
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_resource_management_via_document_entity
branch
from
September 18, 2026 19:18
27fbce5 to
0397e5a
Compare
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_interactive_chips_in_tangent_chat
branch
from
September 18, 2026 19:28
9fff15f to
17aba5f
Compare
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_resource_management_via_document_entity
branch
from
September 18, 2026 19:28
0397e5a to
04f6c04
Compare
maxy-shpfy
force-pushed
the
09-17-feat_tangent_-_resource_management_via_document_entity
branch
from
September 18, 2026 19:41
04f6c04 to
ff8a2a5
Compare
maxy-shpfy
marked this pull request as ready for review
September 18, 2026 20:00
This was referenced Sep 18, 2026
This was referenced Sep 18, 2026
Draft
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.

Description
Adds support for attaching pipeline runs as resources in Tangent projects, alongside the existing pipeline attachment capability.
A new
AddPipelineRunDialogallows users to browse and select a pipeline run from theRunSection, which required adding anonRunClickcallback prop to bothRunRowandRunSectionto intercept row clicks without navigating away.Resource metadata (type, workarea identity, URL) is now stored in a structured
extraDatafield on project resources rather than relying onentity/entityIdfields. A newresourceExtraData.tsmodule handles serialization and parsing of this data for bothlocal_pipelineandpipeline_runresource types.The "Add a pipeline" button in
ResourcesWindowContenthas been replaced with a splitAddResourceButtonthat exposes both "Add a pipeline" and "Add pipeline run" options via a dropdown. The resources panel layout has also been redesigned: the collapsibleContentBlocksections are replaced with a flat list ofResourceRowitems, each showing an icon, title, and description. Instructions are now rendered as aResourceRowas well.Screenshots (if applicable)
Screen Recording 2026-09-18 at 12.38.10 PM.mov (uploaded via Graphite)
Test Instructions
Additional Comments
The
extraDatafield on project resources must be supported by the API. Thepayload: {}field is included as a required placeholder per the existing API contract.