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

change send behavior to double press enter to send #354

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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 16 additions & 5 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,23 @@ export default function Home() {
}
}

//prevent empty submissions
let enterCount: number = 0;
let timeoutId: NodeJS.Timeout;

const handleEnter = (e: any) => {
if (e.key === 'Enter' && query) {
handleSubmit(e);
} else if (e.key == 'Enter') {
e.preventDefault();
if (e.key === 'Enter') {
enterCount++;
timeoutId = setTimeout(() => {
enterCount = 0;
}, 1000);
if (enterCount === 2 && query.trim() !== '') {
enterCount = 0; // reset conunter
clearTimeout(timeoutId);
handleSubmit(e);
} else {
// prevent empty submissions
e.preventDefault();
}
}
};

Expand Down