feat(react): focus chat input when replying
This commit is contained in:
parent
d6ed1d8496
commit
211adef137
|
@ -1,4 +1,4 @@
|
||||||
import React from 'react'
|
import React, { useEffect, useRef } from 'react'
|
||||||
|
|
||||||
import { useChatState } from '~/src/contexts/chat-context'
|
import { useChatState } from '~/src/contexts/chat-context'
|
||||||
import { CrossIcon } from '~/src/icons/cross-icon'
|
import { CrossIcon } from '~/src/icons/cross-icon'
|
||||||
|
@ -15,9 +15,22 @@ import { Text } from '~/src/system/text'
|
||||||
|
|
||||||
import type { Message } from '~/src/contexts/chat-context'
|
import type { Message } from '~/src/contexts/chat-context'
|
||||||
|
|
||||||
export const ChatInput = () => {
|
interface Props {
|
||||||
|
value?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ChatInput = (props: Props) => {
|
||||||
|
const { value } = props
|
||||||
const { state } = useChatState()
|
const { state } = useChatState()
|
||||||
|
|
||||||
|
const inputRef = useRef<HTMLInputElement>(null)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (state.message) {
|
||||||
|
inputRef.current?.focus()
|
||||||
|
}
|
||||||
|
}, [state.message])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<IconButton label="Add file">
|
<IconButton label="Add file">
|
||||||
|
@ -27,7 +40,7 @@ export const ChatInput = () => {
|
||||||
{state.message && <InputReply reply={state.message} />}
|
{state.message && <InputReply reply={state.message} />}
|
||||||
|
|
||||||
<InputWrapper>
|
<InputWrapper>
|
||||||
<Input placeholder="Message" />
|
<Input ref={inputRef} placeholder="Message" defaultValue={value} />
|
||||||
<Flex>
|
<Flex>
|
||||||
<IconButton label="Pick emoji">
|
<IconButton label="Pick emoji">
|
||||||
<EmojiIcon />
|
<EmojiIcon />
|
||||||
|
|
Loading…
Reference in New Issue