1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-22 06:53:25 +02:00

Don't break macOS emoji insert nor composition when fixing #938 (#994)

* Don't break macOS emoji insert nor composition when fixing #938

* Simpler solution for this

* Remove data.isComposing
This commit is contained in:
Dan Burzo
2017-08-16 19:39:10 +03:00
committed by Ian Storm Taylor
parent 458c022013
commit b7db3feb36

View File

@@ -162,6 +162,10 @@ function Plugin(options = {}) {
// the cursor isn't technique in the right spot. (2016/12/01)
(!(pInline && !pInline.isVoid && startOffset == 0)) &&
(!(nInline && !nInline.isVoid && startOffset == startText.length)) &&
// COMPAT: When inserting a Space character, Chrome will sometimes
// split the text node into two adjacent text nodes. See:
// https://github.com/ianstormtaylor/slate/issues/938
(!(e.data === ' ' && IS_CHROME)) &&
// If the
(chars.equals(nextChars))
)
@@ -478,7 +482,6 @@ function Plugin(options = {}) {
switch (data.key) {
case 'enter': return onKeyDownEnter(e, data, state)
case 'space': return onKeyDownSpace(e, data, state)
case 'backspace': return onKeyDownBackspace(e, data, state)
case 'delete': return onKeyDownDelete(e, data, state)
case 'left': return onKeyDownLeft(e, data, state)
@@ -523,27 +526,6 @@ function Plugin(options = {}) {
.apply()
}
/**
* On `Space` key down, prevent the default browser behavior
* in Chrome, since in some situation it will result in loss of text.
* Reference: https://github.com/ianstormtaylor/slate/issues/938
*
* @param {Event} e
* @param {Object} data
* @param {State} state
* @return {State|Null}
*/
function onKeyDownSpace(e, data, state) {
if (IS_CHROME) {
e.preventDefault()
return state
.transform()
.insertText(' ')
.apply()
}
}
/**
* On `backspace` key down, delete backwards.
*