mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-09 05:39:12 +00:00
Show send button when text in chat input else voice message button
Utilize chat footer space more efficiently. This is especially useful on small screens - Send button is anyway only enabled when there is text in chat input - Otherwise voice message button is better to show by default
This commit is contained in:
@@ -369,7 +369,7 @@ export default function ChatInputArea(props: ChatInputProps) {
|
|||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
variant={'ghost'}
|
variant={'ghost'}
|
||||||
className="!bg-none p-0 m-1 h-auto text-3xl rounded-full text-gray-300 hover:text-gray-500"
|
className="!bg-none p-0 m-2 h-auto text-3xl rounded-full text-gray-300 hover:text-gray-500"
|
||||||
disabled={props.sendDisabled}
|
disabled={props.sendDisabled}
|
||||||
onClick={handleFileButtonClick}>
|
onClick={handleFileButtonClick}>
|
||||||
<Paperclip className='w-8 h-8' />
|
<Paperclip className='w-8 h-8' />
|
||||||
@@ -398,7 +398,7 @@ export default function ChatInputArea(props: ChatInputProps) {
|
|||||||
<TooltipTrigger asChild>
|
<TooltipTrigger asChild>
|
||||||
<Button
|
<Button
|
||||||
variant={'ghost'}
|
variant={'ghost'}
|
||||||
className="!bg-none p-0 m-1 h-auto text-3xl rounded-full text-gray-300 hover:text-gray-500"
|
className={`${message && 'hidden'} !bg-none p-0 m-2 h-auto text-3xl rounded-full text-gray-300 hover:text-gray-500`}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setRecording(!recording);
|
setRecording(!recording);
|
||||||
}}
|
}}
|
||||||
@@ -422,7 +422,7 @@ export default function ChatInputArea(props: ChatInputProps) {
|
|||||||
<TooltipTrigger asChild>
|
<TooltipTrigger asChild>
|
||||||
<Button
|
<Button
|
||||||
variant={'ghost'}
|
variant={'ghost'}
|
||||||
className="!bg-none p-0 m-1 h-auto text-3xl rounded-full text-gray-300 hover:text-gray-500"
|
className={`${message && 'hidden'} !bg-none p-0 m-2 h-auto text-3xl rounded-full text-gray-300 hover:text-gray-500`}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setMessage("Listening...");
|
setMessage("Listening...");
|
||||||
setRecording(!recording);
|
setRecording(!recording);
|
||||||
@@ -440,7 +440,7 @@ export default function ChatInputArea(props: ChatInputProps) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
<Button
|
<Button
|
||||||
className={`${props.agentColor ? convertToBGClass(props.agentColor) : 'bg-orange-300 hover:bg-orange-500'} rounded-full p-1 mr-1 h-auto text-3xl transition transform hover:-translate-y-1`}
|
className={`${!message && 'hidden'} ${props.agentColor ? convertToBGClass(props.agentColor) : 'bg-orange-300 hover:bg-orange-500'} rounded-full p-1 m-2 h-auto text-3xl transition transform md:hover:-translate-y-1`}
|
||||||
onClick={onSendMessage}
|
onClick={onSendMessage}
|
||||||
disabled={props.sendDisabled}>
|
disabled={props.sendDisabled}>
|
||||||
<ArrowUp className='w-6 h-6' weight='bold' />
|
<ArrowUp className='w-6 h-6' weight='bold' />
|
||||||
|
|||||||
Reference in New Issue
Block a user