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

perf: Optimize pressing enter to line breaks on mobile #2692

Merged
merged 1 commit into from
Mar 26, 2025

Conversation

wangdan-fit2cloud
Copy link
Contributor

What this PR does / why we need it?

Summary of your change

Please indicate you've done the following:

  • Made sure tests are passing and test coverage is added if needed.
  • Made sure commit message follow the rule of Conventional Commits specification.
  • Considered the docs impact and opened a new docs issue or PR with docs changes if needed.

Copy link

f2c-ci-robot bot commented Mar 26, 2025

Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

Copy link

f2c-ci-robot bot commented Mar 26, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@wangdan-fit2cloud wangdan-fit2cloud merged commit ca12d65 into main Mar 26, 2025
4 checks passed
@wangdan-fit2cloud wangdan-fit2cloud deleted the pr@main/mobile-enter branch March 26, 2025 08:00
if ((isMobile || mode === 'mobile') && event?.key === 'Enter') {
// 阻止默认事件
return
}
if (!event?.ctrlKey && !event?.shiftKey && !event?.altKey && !event?.metaKey) {
// 如果没有按下组合键,则会阻止默认事件
event?.preventDefault()
Copy link
Contributor

Choose a reason for hiding this comment

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

The provided code contains no major irregularities or critical issues. However, there are a few minor enhancements that could be made to improve readability and functionality:

  1. Function Name Clarity: The function name autoSendMessage suggests it's meant to handle auto-sending messages, but you might want to clarify its purpose with comments if it serves multiple roles.

  2. Event Object Checking: Adding an additional check before attempting to access properties of event can ensure better type safety and prevent errors. For example:

    if (event && typeof event.preventDefault !== 'function') {
      return;
    }
  3. Code Reformatting: Ensure consistent indentation and whitespace to make the code easier to read. This improves maintainability.

Here's the revised version of the function with these improvements:

function autoSendMessage() {
    // Functionality placeholder for automatic message sending logic here...
}

function sendChatHandle(event?: any): void {
    const isMobile = /Mobi|Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
    
    if ((isMobile || mode === 'mobile') && event?.key === 'Enter') {
        event?.preventDefault();
        return;
    }

    if (
        event &&
        typeof event.preventDefault === 'function' &&
        !event.ctrlKey &&
        !event.shiftKey &&
        !event.altKey &&
        !event.metaKey
    ) {
        event?.preventDefault();
    } else {
        console.warn("Invalid input detected; default action prevented.");
    }
}

These changes help make the code more robust and easier to understand. If the intention behind preventing certain actions remains unchanged, the current approach works well, so only the formatting and some optional checks have been added.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants