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

Return to normal state when time limit reached #313

Merged
merged 7 commits into from
May 6, 2022
Merged

Conversation

dbkr
Copy link
Member

@dbkr dbkr commented May 5, 2022

Based on #311

Fixes #297

dbkr added 4 commits May 4, 2022 16:52
Handle mouseup events anywhere so the button releases if you move
the cursor out of the button & release. Likewsie for window losing
focus.
we already do this in usePTT
@dbkr dbkr requested a review from robertlong May 5, 2022 11:24
Copy link
Contributor

@robertlong robertlong left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd make that one small change, otherwise looks great 👍

const startTalking = useCallback(() => {
const startTalking = useCallback(async () => {
setState((prevState) => ({ ...prevState, pttButtonHeld: true }));
setUnmuteError(null);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I might store the unmuteError in state instead of it's own useState.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK - I flipped back & forth between staying consistent and splitting it out since merging with prevState each time seemed quite boilerplate-y, but since it's already setting other state in one case anyway maybe consistency is better.

@dbkr dbkr merged commit 9374900 into main May 6, 2022
@dbkr dbkr deleted the dbkr/fix_time_limit branch December 21, 2022 11:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

PTT - Auto cut-off
2 participants