-
Notifications
You must be signed in to change notification settings - Fork 27
Misc fixes & improvements #173
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
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
24 changes: 24 additions & 0 deletions
24
apps/dashboard/src/components/layouts/dashboard-content-loading.tsx
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,33 @@ | ||
| import { Spinner } from "@diffkit/ui/components/spinner"; | ||
|
|
||
| /** | ||
| * Pending component used for routes rendered inside the dashboard card | ||
| * (`DashboardLayout`). The `h-full` chain resolves against the card so the | ||
| * spinner stays visually centered within the content area. | ||
| * | ||
| * For top-level pending fallbacks where the parent is just `<body>` (e.g. | ||
| * when `_protected` itself is reloading), use `DashboardViewportLoading` | ||
| * instead — `h-full` there collapses to content height and pins the spinner | ||
| * to the top of the viewport. | ||
| */ | ||
| export function DashboardContentLoading() { | ||
| return ( | ||
| <div className="flex h-full items-center justify-center"> | ||
| <Spinner size={20} className="text-muted-foreground" /> | ||
| </div> | ||
| ); | ||
| } | ||
|
|
||
| /** | ||
| * Full-viewport pending component. Use for route pending states that render | ||
| * directly inside the document body (where no ancestor provides a resolved | ||
| * height). Keeps the spinner centered regardless of how little content the | ||
| * layout has yet rendered. | ||
| */ | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here |
||
| export function DashboardViewportLoading() { | ||
| return ( | ||
| <div className="flex min-h-dvh items-center justify-center bg-background"> | ||
| <Spinner size={20} className="text-muted-foreground" /> | ||
| </div> | ||
| ); | ||
| } | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -135,8 +135,21 @@ export const RepositoryRow = memo(function RepositoryRow({ | |
| > | ||
| <div className="flex min-w-0 flex-col gap-0.5"> | ||
| <div className="flex min-w-0 max-w-full items-center gap-x-2"> | ||
| <p className="min-w-0 truncate text-sm font-medium"> | ||
| {repo.fullName} | ||
| {/* | ||
| * Split owner/name so a long owner login doesn't consume all the | ||
| * space and hide the repo name. The owner takes flexible space and | ||
| * truncates first; the repo name stays readable at its natural | ||
| * size. See diffkit#154. | ||
| */} | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here |
||
| <p | ||
| className="flex min-w-0 items-baseline text-sm font-medium" | ||
| title={repo.fullName} | ||
| > | ||
| <span className="min-w-0 flex-1 truncate text-muted-foreground"> | ||
| {repo.owner} | ||
| </span> | ||
| <span className="shrink-0 text-muted-foreground">/</span> | ||
| <span className="shrink-0 truncate">{repo.name}</span> | ||
| </p> | ||
| <VisibilityBadge visibility={repo.visibility} /> | ||
| </div> | ||
|
|
||
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
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.
remove all these unnecessary comments