Skip to content

Commit fa63c47

Browse files
authoredJan 22, 2025··
fix(core): resolve focus regression (#6043)
1 parent a44a7c3 commit fa63c47

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed
 

‎.changeset/thirty-deers-attend.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@tiptap/core": patch
3+
---
4+
5+
Focus synchronously only if on iOS or Android #4448

‎packages/core/src/commands/focus.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { isTextSelection } from '../helpers/isTextSelection.js'
22
import { resolveFocusPosition } from '../helpers/resolveFocusPosition.js'
33
import { FocusPosition, RawCommands } from '../types.js'
4+
import { isAndroid } from '../utilities/isAndroid.js'
5+
import { isiOS } from '../utilities/isiOS.js'
46

57
declare module '@tiptap/core' {
68
interface Commands<ReturnType> {
@@ -42,7 +44,11 @@ export const focus: RawCommands['focus'] = (position = null, options = {}) => ({
4244
}
4345

4446
const delayedFocus = () => {
45-
(view.dom as HTMLElement).focus()
47+
// focus within `requestAnimationFrame` breaks focus on iOS and Android
48+
// so we have to call this
49+
if (isiOS() || isAndroid()) {
50+
(view.dom as HTMLElement).focus()
51+
}
4652

4753
// For React we have to focus asynchronously. Otherwise wild things happen.
4854
// see: https://github.com/ueberdosis/tiptap/issues/1520

0 commit comments

Comments
 (0)
Please sign in to comment.