From f16c122e6a3cae6522293472a6cb0a9c45fb7354 Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Wed, 27 Jun 2018 14:09:06 -0400 Subject: [PATCH 1/2] Element: Concatenate string children to previous --- packages/element/src/index.js | 12 +++++++++++- packages/element/src/test/index.js | 6 +++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/packages/element/src/index.js b/packages/element/src/index.js index d45ad349ec8b5e..079cdea887afc0 100644 --- a/packages/element/src/index.js +++ b/packages/element/src/index.js @@ -161,7 +161,17 @@ export { serialize as renderToString }; export function concatChildren( ...childrenArguments ) { return childrenArguments.reduce( ( memo, children, i ) => { Children.forEach( children, ( child, j ) => { - if ( child && 'string' !== typeof child ) { + if ( ! child ) { + return; + } + + if ( typeof child === 'string' ) { + const lastChild = memo[ memo.length - 1 ]; + if ( typeof lastChild === 'string' ) { + memo[ memo.length - 1 ] = lastChild + child; + return; + } + } else { child = cloneElement( child, { key: [ i, j ].join(), } ); diff --git a/packages/element/src/test/index.js b/packages/element/src/test/index.js index 80d06d55452920..eeddf6baac075e 100644 --- a/packages/element/src/test/index.js +++ b/packages/element/src/test/index.js @@ -81,8 +81,12 @@ describe( 'element', () => { expect( concatChildren() ).toEqual( [] ); } ); + it( 'should disregard falsey children', () => { + expect( concatChildren( [ 'a' ], [ null ], [ 'b' ] ) ).toEqual( [ 'ab' ] ); + } ); + it( 'should concat the string arrays', () => { - expect( concatChildren( [ 'a' ], 'b' ) ).toEqual( [ 'a', 'b' ] ); + expect( concatChildren( [ 'a' ], 'b' ) ).toEqual( [ 'ab' ] ); } ); it( 'should concat the object arrays and rewrite keys', () => { From c2456d916f6b5406528f9994f41cd1b8dbf029d5 Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Wed, 27 Jun 2018 14:18:36 -0400 Subject: [PATCH 2/2] RichText: Format content from tree value --- editor/components/rich-text/format.js | 74 ++++----- editor/components/rich-text/index.js | 222 ++++--------------------- editor/components/rich-text/style.scss | 14 +- 3 files changed, 73 insertions(+), 237 deletions(-) diff --git a/editor/components/rich-text/format.js b/editor/components/rich-text/format.js index 221966b81fa7e4..39c3b9e9434337 100644 --- a/editor/components/rich-text/format.js +++ b/editor/components/rich-text/format.js @@ -1,13 +1,12 @@ /** - * External dependencies + * WordPress dependencies */ -import { omitBy } from 'lodash'; -import { nodeListToReact } from 'dom-react'; +import { createElement, renderToString } from '@wordpress/element'; /** - * WordPress dependencies + * Browser dependencies */ -import { createElement, renderToString } from '@wordpress/element'; +const { Node } = window; /** * Transforms a WP Element to its corresponding HTML string. @@ -37,29 +36,30 @@ export function valueToString( value, format ) { } } -/** - * Strips out TinyMCE specific attributes and nodes from a WPElement - * - * @param {string} type Element type - * @param {Object} props Element Props - * @param {Array} children Element Children - * - * @return {Element} WPElement. - */ -export function createTinyMCEElement( type, props, ...children ) { - if ( props[ 'data-mce-bogus' ] === 'all' ) { - return null; - } +function walkChildren( node, mapFn ) { + const result = []; - if ( props.hasOwnProperty( 'data-mce-bogus' ) ) { - return children; + let child = node.firstChild; + while ( child ) { + result.push( mapFn( child ) ); + child = child.next; } - return createElement( - type, - omitBy( props, ( _, key ) => key.indexOf( 'data-mce-' ) === 0 ), - ...children - ); + return result; +} + +export function treeNodeToElement( node ) { + switch ( node.type ) { + case Node.TEXT_NODE: + return node.value; + + default: + return createElement( + node.name, + null, + ...walkChildren( node, treeNodeToElement ) + ); + } } /** @@ -69,8 +69,12 @@ export function createTinyMCEElement( type, props, ...children ) { * * @return {WPElement} WP Element. */ -export function domToElement( value ) { - return nodeListToReact( value || [], createTinyMCEElement ); +export function treeToElement( node ) { + if ( ! node ) { + return []; + } + + return walkChildren( node, treeNodeToElement ); } /** @@ -81,14 +85,8 @@ export function domToElement( value ) { * * @return {string} HTML. */ -export function domToString( value, editor ) { - const doc = document.implementation.createHTMLDocument( '' ); - - Array.from( value ).forEach( ( child ) => { - doc.body.appendChild( child ); - } ); - - return editor ? editor.serializer.serialize( doc.body ) : doc.body.innerHTML; +export function treeToString( tree ) { + return renderToString( treeToElement( tree ) ); } /** @@ -100,11 +98,11 @@ export function domToString( value, editor ) { * * @return {*} Output. */ -export function domToFormat( value, format, editor ) { +export function treeToFormat( tree, format ) { switch ( format ) { case 'string': - return domToString( value, editor ); + return treeToString( tree ); default: - return domToElement( value ); + return treeToElement( tree ); } } diff --git a/editor/components/rich-text/index.js b/editor/components/rich-text/index.js index 9f7a6d1afd7d03..83bc6af6b27742 100644 --- a/editor/components/rich-text/index.js +++ b/editor/components/rich-text/index.js @@ -3,7 +3,6 @@ */ import classnames from 'classnames'; import { - last, isEqual, forEach, merge, @@ -11,7 +10,6 @@ import { find, defer, noop, - reject, } from 'lodash'; import 'element-closest'; @@ -41,54 +39,10 @@ import TinyMCE from './tinymce'; import { pickAriaProps } from './aria'; import patterns from './patterns'; import { withBlockEditContext } from '../block-edit/context'; -import { domToFormat, valueToString } from './format'; +import { treeToFormat, valueToString } from './format'; const { BACKSPACE, DELETE, ENTER, rawShortcut } = keycodes; -/** - * Returns true if the node is the inline node boundary. This is used in node - * filtering prevent the inline boundary from being included in the split which - * occurs while within but at the end of an inline node, since TinyMCE includes - * a placeholder caret character at the end. - * - * @see https://github.com/tinymce/tinymce/blob/master/src/plugins/link/main/ts/core/Utils.ts - * - * @param {Node} node Node to test. - * - * @return {boolean} Whether node is inline boundary. - */ -export function isEmptyInlineBoundary( node ) { - const text = node.nodeName === 'A' ? node.innerText : node.textContent; - return text === '\uFEFF'; -} - -/** - * Returns true if the node is empty, meaning it contains only the placeholder - * caret character or is an empty text node. - * - * @param {Node} node Node to test. - * - * @return {boolean} Whether node is empty. - */ -export function isEmptyNode( node ) { - return ( - '' === node.nodeValue || - isEmptyInlineBoundary( node ) - ); -} - -/** - * Given a set of Nodes, filters to set to exclude any empty nodes: those with - * either empty text nodes or only including the inline boundary caret. - * - * @param {Node[]} childNodes Nodes to filter. - * - * @return {Node[]} Non-empty nodes. - */ -export function filterEmptyNodes( childNodes ) { - return reject( childNodes, isEmptyNode ); -} - export function getFormatProperties( formatName, parents ) { switch ( formatName ) { case 'link' : { @@ -139,9 +93,10 @@ export class RichText extends Component { * @return {Object} The settings for this block. */ getSettings( settings ) { + const { multiline, tagName } = this.props; return ( this.props.getSettings || identity )( { ...settings, - forced_root_block: this.props.multiline || false, + forced_root_block: multiline || tagName, // Allow TinyMCE to keep one undo level for comparing changes. // Prevent it otherwise from accumulating any history. custom_undo_redo_levels: 1, @@ -188,6 +143,15 @@ export class RichText extends Component { onInit() { this.registerCustomFormatters(); + // Strip default padding setting for elements in schema, in order to + // avoid (a) new blocks being considered non-empty by non-breaking + // space character and (b) empty string or whitespace being assigned + // as value for the empty field. + forEach( + this.editor.schema.elements, + ( element ) => delete element.paddEmpty + ); + this.editor.shortcuts.add( rawShortcut.primary( 'k' ), '', () => this.changeFormats( { link: { isAdding: true } } ) ); this.editor.shortcuts.add( rawShortcut.access( 'a' ), '', () => this.changeFormats( { link: { isAdding: true } } ) ); this.editor.shortcuts.add( rawShortcut.access( 's' ), '', () => this.changeFormats( { link: undefined } ) ); @@ -441,7 +405,6 @@ export class RichText extends Component { * @param {KeydownEvent} event The keydown event as triggered by TinyMCE. */ onKeyDown( event ) { - const dom = this.editor.dom; const rootNode = this.editor.getBody(); if ( @@ -471,49 +434,6 @@ export class RichText extends Component { // also handling this event. event.stopImmediatePropagation(); } - - // If we click shift+Enter on inline RichTexts, we avoid creating two contenteditables - // We also split the content and call the onSplit prop if provided. - if ( event.keyCode === ENTER ) { - if ( this.props.multiline ) { - if ( ! this.props.onSplit ) { - return; - } - - const selectedNode = this.editor.selection.getNode(); - - if ( selectedNode.parentNode !== rootNode ) { - return; - } - - if ( ! dom.isEmpty( selectedNode ) ) { - return; - } - - event.preventDefault(); - this.onCreateUndoLevel(); - - const childNodes = Array.from( rootNode.childNodes ); - const index = dom.nodeIndex( selectedNode ); - const beforeNodes = childNodes.slice( 0, index ); - const afterNodes = childNodes.slice( index + 1 ); - - const { format } = this.props; - const before = domToFormat( beforeNodes, format, this.editor ); - const after = domToFormat( afterNodes, format, this.editor ); - - this.restoreContentAndSplit( before, after ); - } else { - event.preventDefault(); - this.onCreateUndoLevel(); - - if ( event.shiftKey || ! this.props.onSplit ) { - this.editor.execCommand( 'InsertLineBreak', false, event ); - } else { - this.splitContent(); - } - } - } } /** @@ -563,101 +483,25 @@ export class RichText extends Component { } } - /** - * Splits the content at the location of the selection. - * - * Replaces the content of the editor inside this element with the contents - * before the selection. Sends the elements after the selection to the `onSplit` - * handler. - * - * @param {Array} blocks The blocks to add after the split point. - * @param {Object} context The context for splitting. - */ - splitContent( blocks = [], context = {} ) { - if ( ! this.props.onSplit ) { + onNewBlock( event ) { + const { multiline, onSplit } = this.props; + if ( multiline || ! onSplit ) { return; } - const { dom } = this.editor; - const rootNode = this.editor.getBody(); - const beforeRange = dom.createRng(); - const afterRange = dom.createRng(); - const selectionRange = this.editor.selection.getRng(); - - if ( rootNode.childNodes.length ) { - beforeRange.setStart( rootNode, 0 ); - beforeRange.setEnd( selectionRange.startContainer, selectionRange.startOffset ); - - afterRange.setStart( selectionRange.endContainer, selectionRange.endOffset ); - afterRange.setEnd( rootNode, dom.nodeIndex( rootNode.lastChild ) + 1 ); - - const beforeFragment = beforeRange.extractContents(); - const afterFragment = afterRange.extractContents(); - - const { format } = this.props; - let before = domToFormat( filterEmptyNodes( beforeFragment.childNodes ), format, this.editor ); - let after = domToFormat( filterEmptyNodes( afterFragment.childNodes ), format, this.editor ); - - if ( context.paste ) { - before = this.isEmpty( before ) ? null : before; - after = this.isEmpty( after ) ? null : after; - } - - this.restoreContentAndSplit( before, after, blocks ); - } else if ( context.paste ) { - this.restoreContentAndSplit( null, null, blocks ); + const { format, value } = this.props; + const { firstChild, lastChild } = this.editor.getContent( { format: 'tree' } ); + const isEmptyNewBlock = lastChild.isEmpty( {} ); + if ( isEmptyNewBlock ) { + onSplit( value, [] ); } else { - this.restoreContentAndSplit( [], [], blocks ); - } - } - - onNewBlock() { - if ( this.props.multiline !== 'p' || ! this.props.onSplit ) { - return; - } - - // Getting the content before and after the cursor - const childNodes = Array.from( this.editor.getBody().childNodes ); - let selectedChild = this.editor.selection.getStart(); - while ( childNodes.indexOf( selectedChild ) === -1 && selectedChild.parentNode ) { - selectedChild = selectedChild.parentNode; - } - const splitIndex = childNodes.indexOf( selectedChild ); - if ( splitIndex === -1 ) { - return; - } - const beforeNodes = childNodes.slice( 0, splitIndex ); - const lastNodeBeforeCursor = last( beforeNodes ); - // Avoid splitting on single enter - if ( - ! lastNodeBeforeCursor || - beforeNodes.length < 2 || - !! lastNodeBeforeCursor.textContent - ) { - return; + onSplit( + treeToFormat( firstChild, format ), + treeToFormat( lastChild, format ) + ); } - const before = beforeNodes.slice( 0, beforeNodes.length - 1 ); - - // Removing empty nodes from the beginning of the "after" - // avoids empty paragraphs at the beginning of newly created blocks. - const after = childNodes.slice( splitIndex ).reduce( ( memo, node ) => { - if ( ! memo.length && ! node.textContent ) { - return memo; - } - - memo.push( node ); - return memo; - }, [] ); - - // Splitting into two blocks - this.setContent( this.props.value ); - - const { format } = this.props; - this.restoreContentAndSplit( - domToFormat( before, format, this.editor ), - domToFormat( after, format, this.editor ) - ); + event.newBlock.remove(); } onNodeChange( { parents } ) { @@ -714,16 +558,14 @@ export class RichText extends Component { } getContent() { - const { format } = this.props; + const { multiline, format } = this.props; - switch ( format ) { - case 'string': - return this.editor.getContent(); - default: - return this.editor.dom.isEmpty( this.editor.getBody() ) ? - [] : - domToFormat( this.editor.getBody().childNodes || [], 'element', this.editor ); + let tree = this.editor.getContent( { format: 'tree' } ); + if ( ! multiline ) { + tree = tree.firstChild; } + + return treeToFormat( tree, format ); } componentDidUpdate( prevProps ) { @@ -891,7 +733,7 @@ export class RichText extends Component { { ( { isExpanded, listBoxId, activeId } ) => ( p:empty { - min-height: $editor-font-size * $editor-line-height; + &, + p { + margin: 0; } - > p:first-child { - margin-top: 0; + > p:empty { + min-height: $editor-font-size * $editor-line-height; } &:focus { @@ -66,10 +66,6 @@ top: 0; width: 100%; margin-top: 0; - - & > p { - margin-top: 0; - } } & + .editor-rich-text__tinymce {