Conversation
Collaborator
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
3 tasks
a42d996 to
edba5bb
Compare
3 tasks
maxy-shpfy
reviewed
Feb 26, 2026
maxy-shpfy
reviewed
Feb 26, 2026
maxy-shpfy
reviewed
Feb 26, 2026
edba5bb to
55bb986
Compare
🎩 To tophat this PR:You can add the following URL parameter to your browser to tophat this PR: |
Collaborator
|
Screen Recording 2026-03-04 at 7.12.12 PM.mov (uploaded via Graphite) Idea: maybe instead of exploding the row we can show them in a Popover? |
maxy-shpfy
reviewed
Mar 5, 2026
Comment on lines
+32
to
+35
| onClick={(e) => { | ||
| e.stopPropagation(); | ||
| setShowAllTags(!showAllTags); | ||
| }} |
Collaborator
There was a problem hiding this comment.
Just thinking outloud. I'm not big fan of click-entire-row behavior, and then we need to implement workarounds like stopPropagation() to avoid redirect. Miss-click is very possible for small buttons
maxy-shpfy
reviewed
Mar 5, 2026
|
|
||
| const MAX_VISIBLE_TAGS = 3; | ||
|
|
||
| export const TagList = ({ tags }: TagListProps) => { |
Collaborator
There was a problem hiding this comment.
This file is not in react-compiler list, but uses unstable functions
maxy-shpfy
requested changes
Mar 5, 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.


Description
Adds UX for creating, editing and removing tags on Pipelines. This is done via a new PipelineTagEditor in the context panel below the pipeline notes.
Tags can be added using the "Add Tag" button. The tag input is a free input field - users can enter any string they like in there. To encourage our users to make wise and concise choices about tag names a length limit of 20 characters has been enforced.
Once created tags will be rendered below the input section and from there can be edited by clicking on them, or removed by clicking the "x".
The list of Pipeline Tags is saved as a csv string on the component spec annotations. This is used on the pipeline list to display the first three tags within the pipeline row. More tags can be view by clicking "+n" if there are more tags to see.
Related Issue and Pull requests
Progresses https://github.com/Shopify/oasis-frontend/issues/472
Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
Confirm you are able to:
Once you have added some tags go to the homepage and open the pipeline list. Confirm that:
Additional Comments
I am not attached to the specific UX of adding & editing tags in-place, or the chosen render location of tags in the pipeline row (in the centre - between Time & Run details).