Skip to content

Commit

Permalink
Revert "Rich text: pad multiple spaces through en/em replacement (#56341
Browse files Browse the repository at this point in the history
)" (#58792)

This reverts commit 53cae01.

Co-authored-by: ellatrix <ellatrix@git.wordpress.org>
Co-authored-by: jeryj <jeryj@git.wordpress.org>
Co-authored-by: t-hamano <wildworks@git.wordpress.org>
Co-authored-by: dmsnell <dmsnell@git.wordpress.org>
  • Loading branch information
5 people authored and youknowriad committed Feb 13, 2024
1 parent a07788e commit faf81d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 32 deletions.
32 changes: 2 additions & 30 deletions packages/block-editor/src/components/rich-text/use-input-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
import { useRef } from '@wordpress/element';
import { useRefEffect } from '@wordpress/compose';
import { insert, isCollapsed, toHTMLString } from '@wordpress/rich-text';
import { insert, toHTMLString } from '@wordpress/rich-text';
import { getBlockTransforms, findTransform } from '@wordpress/blocks';
import { useDispatch } from '@wordpress/data';

Expand Down Expand Up @@ -47,34 +47,6 @@ function findSelection( blocks ) {
return [];
}

/**
* An input rule that replaces two spaces with an en space, and an en space
* followed by a space with an em space.
*
* @param {Object} value Value to replace spaces in.
*
* @return {Object} Value with spaces replaced.
*/
function replacePrecedingSpaces( value ) {
if ( ! isCollapsed( value ) ) {
return value;
}

const { text, start } = value;
const lastTwoCharacters = text.slice( start - 2, start );

// Replace two spaces with an em space.
if ( lastTwoCharacters === ' ' ) {
return insert( value, '\u2002', start - 2, start );
}
// Replace an en space followed by a space with an em space.
else if ( lastTwoCharacters === '\u2002 ' ) {
return insert( value, '\u2003', start - 2, start );
}

return value;
}

export function useInputRules( props ) {
const {
__unstableMarkLastChangeAsPersistent,
Expand Down Expand Up @@ -155,7 +127,7 @@ export function useInputRules( props ) {

return accumlator;
},
preventEventDiscovery( replacePrecedingSpaces( value ) )
preventEventDiscovery( value )
);

if ( transformed !== value ) {
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/specs/editor/blocks/links.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1026,8 +1026,8 @@ test.describe( 'Links', () => {
pageUtils,
editor,
} ) => {
const textToSelect = `\u2003\u2003 spaces\u2003 `;
const textWithWhitespace = `Text with leading and trailing spaces `;
const textToSelect = ` spaces `;
const textWithWhitespace = `Text with leading and trailing${ textToSelect }`;

// Create a block with some text.
await editor.insertBlock( {
Expand Down

0 comments on commit faf81d8

Please sign in to comment.