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

Rollback 4779 and always call Transforms.setSelection #4786

Merged
merged 6 commits into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/mean-ears-shop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'slate-react': patch
---

- Restore logic to delay text insertion on android
- Always call Trasform.setSelection before calling Editor.insertText
43 changes: 43 additions & 0 deletions packages/slate-react/src/components/android/android-editable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ import {
IS_READ_ONLY,
NODE_TO_ELEMENT,
PLACEHOLDER_SYMBOL,
IS_COMPOSING,
IS_ON_COMPOSITION_END,
EDITOR_ON_COMPOSITION_TEXT,
} from '../../utils/weak-maps'
import { normalizeTextInsertionRange } from './diff-text'

import { EditableProps, hasTarget } from '../editable'
import useChildren from '../../hooks/use-children'
Expand Down Expand Up @@ -523,6 +527,43 @@ export const AndroidEditable = (props: EditableProps): JSX.Element => {
setTimeout(() => {
state.isComposing && setIsComposing(false)
state.isComposing = false

IS_COMPOSING.set(editor, false)
IS_ON_COMPOSITION_END.set(editor, true)

const insertedText =
EDITOR_ON_COMPOSITION_TEXT.get(editor) || []

// `insertedText` is set in `MutationObserver` constructor.
// If open phone keyboard association function, `CompositionEvent` will be triggered.
if (!insertedText.length) {
return
}

EDITOR_ON_COMPOSITION_TEXT.set(editor, [])

const { selection, marks } = editor

insertedText.forEach(insertion => {
const text = insertion.text.insertText
const at = normalizeTextInsertionRange(
editor,
selection,
insertion
)
if (marks) {
const node = { text, ...marks }
Transforms.insertNodes(editor, node, {
match: Text.isText,
at,
select: true,
})
editor.marks = null
} else {
Transforms.setSelection(editor, at)
Editor.insertText(editor, text)
}
})
}, RESOLVE_DELAY)
}
},
Expand All @@ -536,6 +577,7 @@ export const AndroidEditable = (props: EditableProps): JSX.Element => {
) {
!state.isComposing && setIsComposing(true)
state.isComposing = true
IS_COMPOSING.set(editor, true)
}
},
[attributes.onCompositionUpdate]
Expand All @@ -548,6 +590,7 @@ export const AndroidEditable = (props: EditableProps): JSX.Element => {
) {
!state.isComposing && setIsComposing(true)
state.isComposing = true
IS_COMPOSING.set(editor, true)
}
},
[attributes.onCompositionStart]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
import { Editor, Range, Text, Transforms } from 'slate'
import { ReactEditor } from '../../plugin/react-editor'
import { Editor, Range, Transforms, Text } from 'slate'
import {
IS_COMPOSING,
IS_ON_COMPOSITION_END,
EDITOR_ON_COMPOSITION_TEXT,
} from '../../utils/weak-maps'

import { DOMNode } from '../../utils/dom'

import {
combineInsertedText,
normalizeTextInsertionRange,
combineInsertedText,
TextInsertion,
} from './diff-text'
import {
Expand Down Expand Up @@ -103,6 +110,17 @@ export class AndroidInputManager {

const { selection, marks } = this.editor

// If it is in composing or after `onCompositionend`, set `EDITOR_ON_COMPOSITION_TEXT` and return.
// Text will be inserted on compositionend event.
if (
IS_COMPOSING.get(this.editor) ||
IS_ON_COMPOSITION_END.get(this.editor)
) {
EDITOR_ON_COMPOSITION_TEXT.set(this.editor, insertedText)
IS_ON_COMPOSITION_END.set(this.editor, false)
return
}

// Insert the batched text diffs
insertedText.forEach(insertion => {
const text = insertion.text.insertText
Expand Down
12 changes: 12 additions & 0 deletions packages/slate-react/src/utils/weak-maps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Ancestor, Editor, Node } from 'slate'
import { Key } from './key'
import { TextInsertion } from '../components/android/diff-text'

/**
* Two weak maps that allow us rebuild a path given a node. They are populated
Expand Down Expand Up @@ -32,6 +33,17 @@ export const IS_READ_ONLY: WeakMap<Editor, boolean> = new WeakMap()
export const IS_FOCUSED: WeakMap<Editor, boolean> = new WeakMap()
export const IS_DRAGGING: WeakMap<Editor, boolean> = new WeakMap()
export const IS_CLICKING: WeakMap<Editor, boolean> = new WeakMap()
export const IS_COMPOSING: WeakMap<Editor, boolean> = new WeakMap()
export const IS_ON_COMPOSITION_END: WeakMap<Editor, boolean> = new WeakMap()

/**
* Weak maps for saving text on composition stage.
*/

export const EDITOR_ON_COMPOSITION_TEXT: WeakMap<
Editor,
TextInsertion[]
> = new WeakMap()

/**
* Weak map for associating the context `onChange` context with the plugin.
Expand Down