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

Add keyboard shortcut command to focus chat input #876

Merged
merged 4 commits into from
Jul 8, 2024

Conversation

krassowski
Copy link
Member

This is one way to fix #799

This implementation uses a signal to trigger the focus event.

There are two alternatives:

  • passing the inputRef from where the command is defined, all the way down to the React element
  • setting a hard-coded ID on the input element and discovering it in the command by querying DOM

A distinct advantage of the alternative approaches would be that they could also check if the input element is already focused (something that a signal cannot do). That said, using a signal is clearer with respect to the API surface, and the detection of focus state can be done by using a selector on the shortcut.

If you would prefer me to use one of the alternative approaches I would argue in favour of inputRef over hard-coded ID on the basis of better type safety and integrity guarantees.

--

The first commit includes a shortcut Accel Shift 1 but I am not set on keeping this shortcut, we could choose a different on in the review, or remove it and let user choose a shortcut (but this would mean users need to define it in the JSON Settings Editor manually as the UI editor does not support it yet, c-f jupyterlab/jupyterlab#13705).

To enable loading of the shortcut from schema this PR includes a change to the plugin ID, but I also opened a dedicated PR to fix this across the board: #872.

Please let me know what you all think.

@krassowski krassowski added the enhancement New feature or request label Jul 5, 2024
@krassowski krassowski mentioned this pull request Jul 5, 2024
3 tasks
@krassowski
Copy link
Member Author

If there is still intent to re-use the extracted chat package then hard-coding an ID would be also undesirable for the reason that with @jupyter/chat multiple chats can be present on the page and each would need to get a unique ID in the top-level props. This is not much different from having to pass a unique inputRef instance or a unique signal instance, but maybe inputRef is easiest to reason about and most versatile (e.g. it would allow interacting with the input element directly from outside of the component for other purposes too); then the use of signal is the best in terms of narrowing down the API surface and thus increasing maintainability.

CC @brichet in case if you have any thoughts on the API

Copy link
Collaborator

@dlqqq dlqqq left a comment

Choose a reason for hiding this comment

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

@krassowski Thanks! I agree with your direction of using a Lumino signal here instead of the alternatives you identified. I left a minor naming suggestion and a question below.

Can you verify that the proposed key combo Accel Shift 1 isn't bound by any other command native to JupyterLab? Not sure how JupyterLab handles conflicts, but I think it is best to avoid them.

packages/jupyter-ai/src/index.ts Outdated Show resolved Hide resolved
packages/jupyter-ai/schema/plugin.json Show resolved Hide resolved
@JasonWeill
Copy link
Collaborator

The use of 1 as a shortcut key may be an issue for our French keyboard users, as on a common AZERTY layout, this is a shifted character; the key by itself produces &, and SHIFT+& produces 1. I would recommend testing this with an AZERTY keyboard, if possible.

@brichet
Copy link

brichet commented Jul 8, 2024

Thanks @krassowski for pinging me and updating #862.

Indeed, there is still intent to use the extracted @jupyter/chat package in jupyter-ai.
I also think that using lumino signal is a good approach. If using jupyter-collaborative-chat, it should be possible to handle the signal only in the current chat, using the widget tracker.

@krassowski
Copy link
Member Author

krassowski commented Jul 8, 2024

The use of 1 as a shortcut key may be an issue for our French keyboard users, as on a common AZERTY layout, this is a shifted character; the key by itself produces &, and SHIFT+& produces 1. I would recommend testing this with an AZERTY keyboard, if possible.

I do not see why this would be an issue - the French AZERTY is no different with this respect from US international (which produces 1 or &). The French AZERTY starts to diverge on keys 2-0 which is what you may have been thinking about, see:

image

Access to the blue keys could be problematic if we've chosen Ctrl + Shift + [2-9 or 0].

To be on the safe side though, I pushed a commit which ensures that this shortcut will never interfere with any key producing a character on any keyword: fb210c5.

Still, I would welcome any better suggestions (but if we do not have any, let's ship and be open to user feedback on choosing a better default later).

@krassowski
Copy link
Member Author

Can you verify that the proposed key combo Accel Shift 1 isn't bound by any other command native to JupyterLab

Yes, it is not. I also tested that this shortcut is not used by Chrome, Firefox nor GNOME Web.

@krassowski krassowski requested a review from dlqqq July 8, 2024 20:42
@JasonWeill
Copy link
Collaborator

JasonWeill commented Jul 8, 2024

I don't have a physical AZERTY keyboard with me, but I set my OS to treat my US keyboard as an AZERTY layout, and I pressed what, in the US, are the number keys. The 1 key (US) produced &. The other keys caused the black characters in the image above to appear: 2 became é, for example.

Copy link
Collaborator

@dlqqq dlqqq left a comment

Choose a reason for hiding this comment

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

Thanks everybody for providing feedback on this PR! Here's my thoughts on this:

  1. We should keep this shortcut undocumented until we a) do more testing (e.g. to test @JasonWeill's concerns about AZERTY layouts) and b) verify that this key combo doesn't conflict cause excessive conflicts with other JupyterLab extensions.
  2. We will not consider a change to this shortcut a breaking change until it is explicitly documented in the ReadTheDocs page.

Keeping these 2 points in mind, I feel comfortable merging this PR. @krassowski Thank you for contributing this, and for all of your hard work recently!

@dlqqq dlqqq force-pushed the focus-chat-with-keyboard branch from fb210c5 to dedfe42 Compare July 8, 2024 21:44
@dlqqq dlqqq changed the title Add a command allowing to focus chat input with keyboard Add keyboard shortcut command to focus chat input Jul 8, 2024
@dlqqq dlqqq enabled auto-merge (squash) July 8, 2024 21:45
@dlqqq dlqqq merged commit 2019571 into jupyterlab:main Jul 8, 2024
9 checks passed
@brichet
Copy link

brichet commented Jul 9, 2024

I tested it with an AZERTY keyboard and it works fine with Ctrl Shift & (equivalent to ctrl shift 1).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add a command/shortcut to focus the chat input box
4 participants