-
Notifications
You must be signed in to change notification settings - Fork 899
feat: implement multi-org template gallery #13784
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
0a5c431
feat: initial changes for multi-org templates page
jaaydenh 6f96fee
feat: add TemplateCard component
jaaydenh 51ebb67
feat: add component stories
jaaydenh a0effc6
chore: update template query naming
jaaydenh be37085
fix: fix formatting
jaaydenh 5649166
feat: template card interaction and navigation
jaaydenh 3ea3aa2
fix: copy updates
jaaydenh f17a0c3
chore: update TemplateFilter type to include FilterQuery
jaaydenh 0077db0
chore: update typesGenerated.ts
jaaydenh 461202e
feat: update template filter api logic
jaaydenh 66e02fb
fix: fix format
jaaydenh 369c59f
fix: get activeOrg
jaaydenh c41cdc4
fix: add format annotation
jaaydenh 7f5d35e
chore: use organization display name
jaaydenh 6e2a6d8
feat: client side org filtering
jaaydenh 978c047
fix: use org display name
jaaydenh aaed038
fix: add ExactName
jaaydenh 8d84ad9
feat: show orgs filter only if more than 1 org
jaaydenh a1c6169
chore: updates for PR review
jaaydenh 15542c0
fix: fix format
jaaydenh 8f4c56f
chore: add story for multi org
jaaydenh a282bac
fix: aggregate templates by organization id
jaaydenh b092644
fix: fix format
jaaydenh 32376e6
fix: check org count
jaaydenh 801138a
fix: update ExactName type
jaaydenh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: template card interaction and navigation
- Loading branch information
commit 56491669d11fada920d3fb59549ea479e4480e5a
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
super minor nit, I tend to call these sorts of captures
attrs
, but there's definitely precedent for calling itwhateverProps
too. maybe this is something we should consolidate on...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was following the pattern in the files I was working on. In other code bases/the React docs, this is often called ...props as well. I think it depends if we want to call them based on what they are, "props" or how they are used, props on divs "divProps" or attributes on divs "attrs"