-
Notifications
You must be signed in to change notification settings - Fork 122
refactor(UI):Comment Display Card #1206
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 all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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
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 |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| import { ConditionalWrap } from '@gitmono/ui' | ||
| import { useGetOrganizationMember } from '@/hooks/useGetOrganizationMember' | ||
| import { Conversation } from '@/pages/[org]/mr/[id]' | ||
| import { MemberHovercard } from '../InlinePost/MemberHovercard' | ||
| import { MemberAvatar } from '../MemberAvatar' | ||
| import { UserLinkByName } from './components/UserLinkByName' | ||
| import HandleTime from './components/HandleTime' | ||
|
|
||
|
|
||
| interface CloseItemProps { | ||
| conv: Conversation | ||
| } | ||
| const CloseItem = ({ conv }: CloseItemProps) => { | ||
| const { data: member } = useGetOrganizationMember({ username: conv.username }) | ||
|
|
||
| return ( | ||
| <> | ||
| <div className='flex items-center space-x-2'> | ||
| <div className='cursor-pointer'> | ||
| <ConditionalWrap | ||
| condition={true} | ||
| wrap={(c) => ( | ||
| <MemberHovercard username={conv?.username}> | ||
| <UserLinkByName username={conv?.username} className='relative'> | ||
| {c} | ||
| </UserLinkByName> | ||
| </MemberHovercard> | ||
| )} | ||
| > | ||
| {member ? <MemberAvatar member={member} size='sm' /> : 'Avatar not found'} | ||
| </ConditionalWrap> | ||
| </div> | ||
| <div>{conv.comment}</div> | ||
| <div className='text-sm text-gray-500 hover:text-gray-700'> | ||
| <HandleTime created_at={conv.created_at}/> | ||
| </div> | ||
| </div> | ||
| </> | ||
| ) | ||
| } | ||
|
|
||
| export default CloseItem |
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
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 |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import { Conversation } from '@/pages/[org]/mr/[id]' | ||
| import HandleTime from './components/HandleTime' | ||
|
|
||
| interface MergedItemProps { | ||
| conv: Conversation | ||
| } | ||
| const MergedItem = ({ conv }: MergedItemProps) => { | ||
|
|
||
| return ( | ||
| <> | ||
| <div className='flex items-center space-x-2'> | ||
| <div>Merged via the queue into main</div> | ||
| <div className='text-sm text-gray-500 hover:text-gray-700'> | ||
| <HandleTime created_at={conv.created_at}/> | ||
| </div> | ||
| </div> | ||
| </> | ||
| ) | ||
| } | ||
|
|
||
| export default MergedItem |
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 |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| import { ConditionalWrap } from '@gitmono/ui' | ||
| import { useGetOrganizationMember } from '@/hooks/useGetOrganizationMember' | ||
| import { Conversation } from '@/pages/[org]/mr/[id]' | ||
| import { MemberHovercard } from '../InlinePost/MemberHovercard' | ||
| import { MemberAvatar } from '../MemberAvatar' | ||
| import { UserLinkByName } from './components/UserLinkByName' | ||
| import HandleTime from './components/HandleTime' | ||
|
|
||
|
|
||
| interface ReopenItemProps { | ||
| conv: Conversation | ||
| } | ||
| const ReopenItem = ({ conv }: ReopenItemProps) => { | ||
| const { data: member } = useGetOrganizationMember({ username: conv.username }) | ||
|
|
||
| return ( | ||
| <> | ||
| <div className='flex items-center space-x-2'> | ||
| <div className='cursor-pointer'> | ||
| <ConditionalWrap | ||
| condition={true} | ||
| wrap={(c) => ( | ||
| <MemberHovercard username={conv?.username}> | ||
| <UserLinkByName username={conv?.username} className='relative'> | ||
| {c} | ||
| </UserLinkByName> | ||
| </MemberHovercard> | ||
| )} | ||
| > | ||
| {member ? <MemberAvatar member={member} size='sm' /> : 'Avatar not found'} | ||
| </ConditionalWrap> | ||
| </div> | ||
| <div>{conv.comment}</div> | ||
| <div className='text-sm text-gray-500 hover:text-gray-700'> | ||
| <HandleTime created_at={conv.created_at}/> | ||
| </div> | ||
| </div> | ||
| </> | ||
| ) | ||
| } | ||
|
|
||
| export default ReopenItem |
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
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 |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| import { format, formatDistance, fromUnixTime } from 'date-fns' | ||
| import { Tooltip } from '@gitmono/ui' | ||
|
|
||
| interface HandleTimeProps { | ||
| created_at: number | ||
| } | ||
|
|
||
| const HandleTime = ({ created_at }: HandleTimeProps) => { | ||
| const time = formatDistance(fromUnixTime(created_at), new Date(), { addSuffix: true }) | ||
| const formatTimestamp = (timestamp: number) => { | ||
| const date = timestamp > 1e12 ? fromUnixTime(Math.floor(timestamp / 1000)) : fromUnixTime(timestamp) | ||
|
|
||
| return format(date, 'yyyy-MM-dd HH:mm:ss') | ||
| } | ||
|
|
||
| return ( | ||
| <> | ||
| <Tooltip label={formatTimestamp(created_at)}> | ||
| <div className='underline'>{time}</div> | ||
| </Tooltip> | ||
| </> | ||
| ) | ||
| } | ||
|
|
||
| export default HandleTime |
18 changes: 18 additions & 0 deletions
18
moon/apps/web/components/MrView/components/UserLinkByName.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 |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| import { Link, LinkProps } from '@gitmono/ui/Link' | ||
| import { useScope } from '@/contexts/scope' | ||
|
|
||
| export function UserLinkByName({ | ||
| username, | ||
| children, | ||
| ...linkProps | ||
| }: Omit<LinkProps, 'href'> & { username: string; children: React.ReactNode }) { | ||
| const { scope } = useScope() | ||
|
|
||
| if(!username) return <>{children}</> | ||
|
|
||
| return ( | ||
| <Link {...linkProps} href={`/${scope}/people/${username}`}> | ||
| {children} | ||
| </Link> | ||
| ) | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.