frontend: add prompt auto expand
This commit is contained in:
parent
b3d334e26e
commit
ed1f7c9e28
@ -1,8 +1,9 @@
|
|||||||
import React, { FormEvent, useRef } from "react"
|
import React, { FormEvent, useRef } from "react"
|
||||||
import { Button } from "./ui/button"
|
import { Button } from "./ui/button"
|
||||||
import { Input } from "./ui/input"
|
|
||||||
import { useStore } from "@/lib/states"
|
import { useStore } from "@/lib/states"
|
||||||
import { useClickAway } from "react-use"
|
import { useClickAway, useToggle } from "react-use"
|
||||||
|
import { Textarea } from "./ui/textarea"
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
const PromptInput = () => {
|
const PromptInput = () => {
|
||||||
const [
|
const [
|
||||||
@ -20,18 +21,21 @@ const PromptInput = () => {
|
|||||||
state.showPrevMask,
|
state.showPrevMask,
|
||||||
state.hidePrevMask,
|
state.hidePrevMask,
|
||||||
])
|
])
|
||||||
|
|
||||||
|
const [showScroll, toggleShowScroll] = useToggle(false)
|
||||||
|
|
||||||
const ref = useRef(null)
|
const ref = useRef(null)
|
||||||
useClickAway<MouseEvent>(ref, () => {
|
useClickAway<MouseEvent>(ref, () => {
|
||||||
if (ref?.current) {
|
if (ref?.current) {
|
||||||
const input = ref.current as HTMLInputElement
|
const input = ref.current as HTMLTextAreaElement
|
||||||
input.blur()
|
input.blur()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
const handleOnInput = (evt: FormEvent<HTMLInputElement>) => {
|
const handleOnInput = (evt: FormEvent<HTMLTextAreaElement>) => {
|
||||||
evt.preventDefault()
|
evt.preventDefault()
|
||||||
evt.stopPropagation()
|
evt.stopPropagation()
|
||||||
const target = evt.target as HTMLInputElement
|
const target = evt.target as HTMLTextAreaElement
|
||||||
updateSettings({ prompt: target.value })
|
updateSettings({ prompt: target.value })
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,24 +60,33 @@ const PromptInput = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex gap-4 items-center">
|
<div className="flex gap-4 relative w-full justify-center h-full">
|
||||||
<Input
|
<div className="absolute flex gap-4">
|
||||||
ref={ref}
|
<Textarea
|
||||||
className="min-w-[500px]"
|
ref={ref}
|
||||||
value={prompt}
|
placeholder="I want to repaint of..."
|
||||||
onInput={handleOnInput}
|
className={cn(
|
||||||
onKeyUp={onKeyUp}
|
showScroll ? "focus:overflow-y-auto" : "overflow-y-hidden",
|
||||||
placeholder="I want to repaint of..."
|
"min-h-[32px] h-[32px] overflow-x-hidden focus:h-[120px] overflow-y-hidden transition-[height] w-[500px] py-1 px-3 bg-background resize-none"
|
||||||
/>
|
)}
|
||||||
<Button
|
style={{
|
||||||
size="sm"
|
scrollbarGutter: "stable",
|
||||||
onClick={handleRepaintClick}
|
}}
|
||||||
disabled={isProcessing}
|
value={prompt}
|
||||||
onMouseEnter={onMouseEnter}
|
onInput={handleOnInput}
|
||||||
onMouseLeave={onMouseLeave}
|
onKeyUp={onKeyUp}
|
||||||
>
|
onTransitionEnd={toggleShowScroll}
|
||||||
Paint
|
/>
|
||||||
</Button>
|
<Button
|
||||||
|
size="sm"
|
||||||
|
onClick={handleRepaintClick}
|
||||||
|
disabled={isProcessing}
|
||||||
|
onMouseEnter={onMouseEnter}
|
||||||
|
onMouseLeave={onMouseLeave}
|
||||||
|
>
|
||||||
|
Paint
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -11,8 +11,8 @@ const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
|
|||||||
<textarea
|
<textarea
|
||||||
className={cn(
|
className={cn(
|
||||||
"flex min-h-[60px] w-full rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
|
"flex min-h-[60px] w-full rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
|
||||||
className,
|
"overflow-auto",
|
||||||
"overflow-auto"
|
className
|
||||||
)}
|
)}
|
||||||
tabIndex={-1}
|
tabIndex={-1}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
|
Loading…
Reference in New Issue
Block a user