Group discussion ux improvements

This commit is contained in:
Ian Philips 2022-06-23 12:36:09 -05:00
parent 28c8cc6863
commit b569f67fc1

View File

@ -33,6 +33,7 @@ export function Discussion(props: {
const [scrollToMessageRef, setScrollToMessageRef] = const [scrollToMessageRef, setScrollToMessageRef] =
useState<HTMLDivElement | null>(null) useState<HTMLDivElement | null>(null)
const [replyToUsername, setReplyToUsername] = useState('') const [replyToUsername, setReplyToUsername] = useState('')
const [inputRef, setInputRef] = useState<HTMLTextAreaElement | null>(null)
const router = useRouter() const router = useRouter()
useEffect(() => { useEffect(() => {
@ -40,8 +41,9 @@ export function Discussion(props: {
}, [scrollToMessageRef]) }, [scrollToMessageRef])
useEffect(() => { useEffect(() => {
scrollToBottomRef?.scrollIntoView() if (!isSubmitting)
}, [isSubmitting, scrollToBottomRef]) scrollToBottomRef?.scrollTo({ top: scrollToBottomRef?.scrollHeight || 0 })
}, [scrollToBottomRef, isSubmitting])
useEffect(() => { useEffect(() => {
const elementInUrl = router.asPath.split('#')[1] const elementInUrl = router.asPath.split('#')[1]
@ -65,6 +67,7 @@ export function Discussion(props: {
setMessageText('') setMessageText('')
setIsSubmitting(false) setIsSubmitting(false)
setReplyToUsername('') setReplyToUsername('')
inputRef?.focus()
} }
return ( return (
@ -73,8 +76,9 @@ export function Discussion(props: {
className={ className={
'max-h-[65vh] w-full space-y-2 overflow-x-hidden overflow-y-scroll' 'max-h-[65vh] w-full space-y-2 overflow-x-hidden overflow-y-scroll'
} }
ref={setScrollToBottomRef}
> >
{messages.map((message, i) => ( {messages.map((message) => (
<GroupMessage <GroupMessage
user={user} user={user}
key={message.id} key={message.id}
@ -85,8 +89,6 @@ export function Discussion(props: {
setRef={ setRef={
scrollToMessageId === message.id scrollToMessageId === message.id
? setScrollToMessageRef ? setScrollToMessageRef
: i === messages.length - 1
? setScrollToBottomRef
: undefined : undefined
} }
/> />
@ -116,6 +118,7 @@ export function Discussion(props: {
submitComment={submitMessage} submitComment={submitMessage}
isSubmitting={isSubmitting} isSubmitting={isSubmitting}
enterToSubmit={true} enterToSubmit={true}
setRef={setInputRef}
/> />
</div> </div>
</div> </div>
@ -128,58 +131,62 @@ const GroupMessage = memo(function GroupMessage_(props: {
user: User | null | undefined user: User | null | undefined
comment: Comment comment: Comment
group: Group group: Group
truncate?: boolean
smallAvatar?: boolean
onReplyClick?: (comment: Comment) => void onReplyClick?: (comment: Comment) => void
setRef?: (ref: HTMLDivElement) => void setRef?: (ref: HTMLDivElement) => void
highlight?: boolean highlight?: boolean
}) { }) {
const { comment, truncate, onReplyClick, group, setRef, highlight, user } = const { comment, onReplyClick, group, setRef, highlight, user } = props
props
const { text, userUsername, userName, userAvatarUrl, createdTime } = comment const { text, userUsername, userName, userAvatarUrl, createdTime } = comment
const isCreatorsComment = user && comment.userId === user.id
return ( return (
<Row <Col
ref={setRef} ref={setRef}
className={clsx( className={clsx(
comment.userId === user?.id ? 'mr-2 self-end' : ' ml-2', isCreatorsComment ? 'mr-2 self-end' : ' ml-2',
'w-fit space-x-1.5 rounded-md bg-white p-2 px-4 transition-all duration-1000 sm:space-x-3', 'w-fit max-w-md gap-1 space-x-3 rounded-md bg-white p-2 p-2 px-4 text-sm text-gray-500 transition-all duration-1000',
highlight ? `-m-1 bg-indigo-500/[0.2] p-2` : '' highlight ? `-m-1 bg-indigo-500/[0.2] p-2` : ''
)} )}
> >
<Avatar <Row className={'items-center'}>
className={'ml-1'} {!isCreatorsComment && (
size={'sm'} <Col>
username={userUsername} <Avatar
avatarUrl={userAvatarUrl} className={'mx-2 ml-0'}
/> size={'sm'}
<div className="w-full"> username={userUsername}
<div className="mt-0.5 pl-0.5 text-sm text-gray-500"> avatarUrl={userAvatarUrl}
<UserLink />
className="text-gray-500" </Col>
username={userUsername} )}
name={userName} {!isCreatorsComment ? (
/>{' '} <UserLink username={userUsername} name={userName} />
<CopyLinkDateTimeComponent ) : (
prefix={'group'} <span>{'You'}</span>
slug={group.slug} )}
createdTime={createdTime} <CopyLinkDateTimeComponent
elementId={comment.id} prefix={'group'}
/> slug={group.slug}
</div> createdTime={createdTime}
elementId={comment.id}
/>
</Row>
<Row className={'text-black'}>
<TruncatedComment <TruncatedComment
comment={text} comment={text}
moreHref={groupPath(group.slug)} moreHref={groupPath(group.slug)}
shouldTruncate={truncate} shouldTruncate={false}
/> />
{onReplyClick && ( </Row>
<button {!isCreatorsComment && onReplyClick && (
className={'text-xs font-bold text-gray-500 hover:underline'} <button
onClick={() => onReplyClick(comment)} className={
> 'self-start py-1 text-xs font-bold text-gray-500 hover:underline'
Reply }
</button> onClick={() => onReplyClick(comment)}
)} >
</div> Reply
</Row> </button>
)}
</Col>
) )
}) })