Skip to content
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

Disable Enter key until input contains text #36

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# create your own API KEY at https://aistudio.google.com/apikey
#REACT_APP_GEMINI_API_KEY=''
# REACT_APP_GEMINI_API_KEY=''
43 changes: 22 additions & 21 deletions src/components/side-panel/SidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function SidePanel() {
} | null>(null);
const inputRef = useRef<HTMLTextAreaElement>(null);

//scroll the log to the bottom when new logs come in
// Scroll the log to the bottom when new logs come in
useEffect(() => {
if (loggerRef.current) {
const el = loggerRef.current;
Expand All @@ -55,7 +55,7 @@ export default function SidePanel() {
}
}, [logs]);

// listen for log events and store them
// Listen for log events and store them
useEffect(() => {
client.on("log", log);
return () => {
Expand All @@ -64,11 +64,20 @@ export default function SidePanel() {
}, [client, log]);

const handleSubmit = () => {
client.send([{ text: textInput }]);
if (textInput.trim()) {
client.send([{ text: textInput }]);
setTextInput("");
if (inputRef.current) {
inputRef.current.value = ""; // Reset the text area
}
}
};

setTextInput("");
if (inputRef.current) {
inputRef.current.innerText = "";
const handleKeyDown = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
if (e.key === "Enter" && !e.shiftKey && textInput.trim()) {
e.preventDefault();
e.stopPropagation();
handleSubmit();
}
};

Expand Down Expand Up @@ -104,8 +113,8 @@ export default function SidePanel() {
backgroundColor: isFocused
? "var(--Neutral-30)"
: isSelected
? "var(--Neutral-20)"
: undefined,
? "var(--Neutral-20)"
: undefined,
}),
}}
defaultValue={selectedOption}
Expand All @@ -121,36 +130,28 @@ export default function SidePanel() {
</div>
</section>
<div className="side-panel-container" ref={loggerRef}>
<Logger
filter={(selectedOption?.value as LoggerFilterType) || "none"}
/>
<Logger filter={(selectedOption?.value as LoggerFilterType) || "none"} />
</div>
<div className={cn("input-container", { disabled: !connected })}>
<div className="input-content">
<textarea
className="input-area"
ref={inputRef}
onKeyDown={(e) => {
if (e.key === "Enter" && !e.shiftKey) {
e.preventDefault();
e.stopPropagation();
handleSubmit();
}
}}
onKeyDown={handleKeyDown}
onChange={(e) => setTextInput(e.target.value)}
value={textInput}
placeholder="Type something..."
></textarea>
<span
className={cn("input-content-placeholder", {
hidden: textInput.length,
})}
>
Type&nbsp;something...
</span>
></span>

<button
className="send-button material-symbols-outlined filled"
onClick={handleSubmit}
disabled={!textInput.trim()} // Disable if textInput is empty
>
send
</button>
Expand Down