-
Notifications
You must be signed in to change notification settings - Fork 61
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
Adding better UX for playground #742
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
9d09c17
Adding better UX for playground
hellovai 8222f4a
formatting
hellovai 5799787
Merge branch 'canary' into fixes
hellovai 6d72129
Making some chages
hellovai 0d2d4ea
Include fixes for font size on file view
hellovai 1efbc90
undo integ-test changes
hellovai e73bd3e
Merge branch 'canary' into fixes
hellovai 091d705
Update WebPanelView.ts
hellovai 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
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
90 changes: 90 additions & 0 deletions
90
typescript/playground-common/src/components/ui/breadcrumb.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import * as React from 'react' | ||
import { ChevronRightIcon, DotsHorizontalIcon } from '@radix-ui/react-icons' | ||
import { Slot } from '@radix-ui/react-slot' | ||
|
||
import { cn } from '@/lib/utils' | ||
|
||
const Breadcrumb = React.forwardRef< | ||
HTMLElement, | ||
React.ComponentPropsWithoutRef<'nav'> & { | ||
separator?: React.ReactNode | ||
} | ||
>(({ ...props }, ref) => <nav ref={ref} aria-label='breadcrumb' {...props} />) | ||
Breadcrumb.displayName = 'Breadcrumb' | ||
|
||
const BreadcrumbList = React.forwardRef<HTMLOListElement, React.ComponentPropsWithoutRef<'ol'>>( | ||
({ className, ...props }, ref) => ( | ||
<ol | ||
ref={ref} | ||
className={cn( | ||
'flex flex-wrap items-center gap-1.5 break-words text-sm text-muted-foreground sm:gap-2.5', | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
), | ||
) | ||
BreadcrumbList.displayName = 'BreadcrumbList' | ||
|
||
const BreadcrumbItem = React.forwardRef<HTMLLIElement, React.ComponentPropsWithoutRef<'li'>>( | ||
({ className, ...props }, ref) => ( | ||
<li ref={ref} className={cn('inline-flex items-center gap-1.5', className)} {...props} /> | ||
), | ||
) | ||
BreadcrumbItem.displayName = 'BreadcrumbItem' | ||
|
||
const BreadcrumbLink = React.forwardRef< | ||
HTMLAnchorElement, | ||
React.ComponentPropsWithoutRef<'a'> & { | ||
asChild?: boolean | ||
} | ||
>(({ asChild, className, ...props }, ref) => { | ||
const Comp = asChild ? Slot : 'a' | ||
|
||
return <Comp ref={ref} className={cn('transition-colors hover:text-foreground', className)} {...props} /> | ||
}) | ||
BreadcrumbLink.displayName = 'BreadcrumbLink' | ||
|
||
const BreadcrumbPage = React.forwardRef<HTMLSpanElement, React.ComponentPropsWithoutRef<'span'>>( | ||
({ className, ...props }, ref) => ( | ||
<span | ||
ref={ref} | ||
role='link' | ||
aria-disabled='true' | ||
aria-current='page' | ||
className={cn('font-normal text-foreground', className)} | ||
{...props} | ||
/> | ||
), | ||
) | ||
BreadcrumbPage.displayName = 'BreadcrumbPage' | ||
|
||
const BreadcrumbSeparator = ({ children, className, ...props }: React.ComponentProps<'li'>) => ( | ||
<li role='presentation' aria-hidden='true' className={cn('[&>svg]:size-3.5', className)} {...props}> | ||
{children ?? <ChevronRightIcon />} | ||
</li> | ||
) | ||
BreadcrumbSeparator.displayName = 'BreadcrumbSeparator' | ||
|
||
const BreadcrumbEllipsis = ({ className, ...props }: React.ComponentProps<'span'>) => ( | ||
<span | ||
role='presentation' | ||
aria-hidden='true' | ||
className={cn('flex h-9 w-9 items-center justify-center', className)} | ||
{...props} | ||
> | ||
<DotsHorizontalIcon className='h-4 w-4' /> | ||
<span className='sr-only'>More</span> | ||
</span> | ||
) | ||
BreadcrumbEllipsis.displayName = 'BreadcrumbElipssis' | ||
|
||
export { | ||
Breadcrumb, | ||
BreadcrumbList, | ||
BreadcrumbItem, | ||
BreadcrumbLink, | ||
BreadcrumbPage, | ||
BreadcrumbSeparator, | ||
BreadcrumbEllipsis, | ||
} |
Oops, something went wrong.
Oops, something went wrong.
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.
📚 spelling: Typo in
BreadcrumbEllipsis.displayName
. It should beBreadcrumbEllipsis
instead ofBreadcrumbElipssis
.