Skip to content

feat: migrate to ep_plugin_helpers/toolbar-select#184

Merged
JohnMcLear merged 1 commit into
masterfrom
feat/use-toolbar-select
May 15, 2026
Merged

feat: migrate to ep_plugin_helpers/toolbar-select#184
JohnMcLear merged 1 commit into
masterfrom
feat/use-toolbar-select

Conversation

@JohnMcLear
Copy link
Copy Markdown
Member

Summary

Replaces the hand-rolled <select> change handler with the shared toolbarSelect helper from ep_plugin_helpers#17.

- const hs = $('#heading-selection');
- hs.on('change', function () {
-   const value = $(this).val();
-   const intValue = parseInt(value, 10);
-   if (!isNaN(intValue)) {
-     context.ace.callWithAce((ace) => {
-       ace.ace_doInsertHeading(intValue);
-     }, 'insertheading', true);
-     hs.val('dummy');
-   }
-   // Return focus to the editor after heading selection (fixes #130)
-   context.ace.focus();
- });
+ toolbarSelect({
+   selector: '#heading-selection',
+   context,
+   invoke: (ace, value) => ace.ace_doInsertHeading(value),
+   op: 'insertheading',
+ });

Behavioral notes

Fully behavior-preserving for this plugin — the previous code already restored focus unconditionally (the #130 fix), which is exactly what the helper guarantees. The existing select_focus_restore.spec.ts in core (which targets #heading-selection specifically) should continue to pass without modification.

Status

Draft — depends on:

  1. feat(toolbarSelect): DRY up the toolbar <select>-change boilerplate ep_plugin_helpers#17 merging
  2. ep_plugin_helpers ≥ 0.6.0 published to npm

Refs ether/etherpad#7255

🤖 Generated with Claude Code

…elect

Replaces the hand-rolled change handler with the shared `toolbarSelect`
helper that newly ships in ep_plugin_helpers 0.6.0. Behavior is fully
preserved including the unconditional focus restore from #130 (the
helper guarantees focus runs regardless of whether the coerced value
was usable, matching what the original code already did).

Depends on ep_plugin_helpers >= 0.6.0 (ether/ep_plugin_helpers#17).
Refs ether/etherpad#7255

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@JohnMcLear JohnMcLear marked this pull request as ready for review May 15, 2026 18:49
@qodo-code-review
Copy link
Copy Markdown

Qodo reviews are paused for this user.

Troubleshooting steps vary by plan Learn more →

On a Teams plan?
Reviews resume once this user has a paid seat and their Git account is linked in Qodo.
Link Git account →

Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center?
These require an Enterprise plan - Contact us
Contact us →

@JohnMcLear JohnMcLear merged commit 40fb1e8 into master May 15, 2026
3 of 5 checks passed
@JohnMcLear JohnMcLear deleted the feat/use-toolbar-select branch May 15, 2026 18:53
JohnMcLear added a commit that referenced this pull request May 15, 2026
…ion) (#185)

Follow-up to #184.

Etherpad's plugin installer (live-plugin-manager-backed) resolves the
dep range's lower-bound version literally — `^0.6.0` makes it ask npm
for `ep_plugin_helpers@0.6.0`, which was never published (the auto-
publish workflow bumped straight from 0.5.3 to 0.6.1). CI on master
has been red since #184 merged for this reason. Same fix applied to
ep_font_color and ep_font_size (#143). Anchor to the actual published
version so the install resolves.
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.

1 participant