-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11744 from ckeditor/ck/11432-ghs-custom-elements
Feature (html-support): Custom elements should be preserved by the General HTML Support feature. Closes #11432. Fix (engine): Whitespaces between block elements should not trigger auto-paragraphing. Closes #11248.
- Loading branch information
Showing
26 changed files
with
742 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
162 changes: 162 additions & 0 deletions
162
packages/ckeditor5-html-support/src/integrations/customelement.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
/** | ||
* @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
|
||
/** | ||
* @module html-support/integrations/customelement | ||
*/ | ||
|
||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { UpcastWriter } from 'ckeditor5/src/engine'; | ||
|
||
import DataSchema from '../dataschema'; | ||
import DataFilter from '../datafilter'; | ||
import { setViewAttributes } from '../conversionutils'; | ||
|
||
/** | ||
* Provides the General HTML Support for custom elements (not registered in the {@link module:html-support/dataschema~DataSchema}). | ||
* | ||
* @extends module:core/plugin~Plugin | ||
*/ | ||
export default class CustomElementSupport extends Plugin { | ||
/** | ||
* @inheritDoc | ||
*/ | ||
static get requires() { | ||
return [ DataFilter, DataSchema ]; | ||
} | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
static get pluginName() { | ||
return 'CustomElementSupport'; | ||
} | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
init() { | ||
const dataFilter = this.editor.plugins.get( DataFilter ); | ||
const dataSchema = this.editor.plugins.get( DataSchema ); | ||
|
||
dataFilter.on( 'register:$customElement', ( evt, definition ) => { | ||
evt.stop(); | ||
|
||
const editor = this.editor; | ||
const schema = editor.model.schema; | ||
const conversion = editor.conversion; | ||
const unsafeElements = editor.editing.view.domConverter.unsafeElements; | ||
const preLikeElements = editor.data.htmlProcessor.domConverter.preElements; | ||
|
||
schema.register( definition.model, definition.modelSchema ); | ||
schema.extend( definition.model, { | ||
allowAttributes: [ 'htmlElementName', 'htmlAttributes', 'htmlContent' ], | ||
isContent: true | ||
} ); | ||
|
||
// Being executed on the low priority, it will catch all elements that were not caught by other converters. | ||
conversion.for( 'upcast' ).elementToElement( { | ||
view: /.*/, | ||
model: ( viewElement, conversionApi ) => { | ||
// Do not try to convert $comment fake element. | ||
if ( viewElement.name == '$comment' ) { | ||
return; | ||
} | ||
|
||
// Allow for fallback only if this element is not defined in data schema to make sure | ||
// that this will handle only custom elements not registered in the data schema. | ||
if ( dataSchema.getDefinitionsForView( viewElement.name ).size ) { | ||
return; | ||
} | ||
|
||
// Make sure that this element will not render in the editing view. | ||
if ( !unsafeElements.includes( viewElement.name ) ) { | ||
unsafeElements.push( viewElement.name ); | ||
} | ||
|
||
// Make sure that whitespaces will not be trimmed or replaced by nbsps while stringify content. | ||
if ( !preLikeElements.includes( viewElement.name ) ) { | ||
preLikeElements.push( viewElement.name ); | ||
} | ||
|
||
const modelElement = conversionApi.writer.createElement( definition.model, { | ||
htmlElementName: viewElement.name | ||
} ); | ||
|
||
const htmlAttributes = dataFilter.processViewAttributes( viewElement, conversionApi ); | ||
|
||
if ( htmlAttributes ) { | ||
conversionApi.writer.setAttribute( 'htmlAttributes', htmlAttributes, modelElement ); | ||
} | ||
|
||
// Store the whole element in the attribute so that DomConverter will be able to use the pre like element context. | ||
const viewWriter = new UpcastWriter( viewElement.document ); | ||
const documentFragment = viewWriter.createDocumentFragment( viewElement ); | ||
const htmlContent = editor.data.processor.toData( documentFragment ); | ||
|
||
conversionApi.writer.setAttribute( 'htmlContent', htmlContent, modelElement ); | ||
|
||
// Consume the content of the element. | ||
for ( const { item } of editor.editing.view.createRangeIn( viewElement ) ) { | ||
conversionApi.consumable.consume( item, { name: true } ); | ||
} | ||
|
||
return modelElement; | ||
}, | ||
converterPriority: 'low' | ||
} ); | ||
|
||
// Because this element is unsafe (DomConverter#unsafeElements), it will render as a transparent <span> but it must | ||
// be rendered anyway for the mapping between the model and the view to exist. | ||
conversion.for( 'editingDowncast' ).elementToElement( { | ||
model: { | ||
name: definition.model, | ||
attributes: [ 'htmlElementName', 'htmlAttributes', 'htmlContent' ] | ||
}, | ||
view: ( modelElement, { writer } ) => { | ||
const viewName = modelElement.getAttribute( 'htmlElementName' ); | ||
const viewElement = writer.createRawElement( viewName ); | ||
|
||
if ( modelElement.hasAttribute( 'htmlAttributes' ) ) { | ||
setViewAttributes( writer, modelElement.getAttribute( 'htmlAttributes' ), viewElement ); | ||
} | ||
|
||
return viewElement; | ||
} | ||
} ); | ||
|
||
conversion.for( 'dataDowncast' ).elementToElement( { | ||
model: { | ||
name: definition.model, | ||
attributes: [ 'htmlElementName', 'htmlAttributes', 'htmlContent' ] | ||
}, | ||
view: ( modelElement, { writer } ) => { | ||
const viewName = modelElement.getAttribute( 'htmlElementName' ); | ||
const htmlContent = modelElement.getAttribute( 'htmlContent' ); | ||
|
||
const viewElement = writer.createRawElement( viewName, null, ( domElement, domConverter ) => { | ||
domConverter.setContentOf( domElement, htmlContent ); | ||
|
||
// Unwrap the custom element content (it was stored in the attribute as the whole custom element). | ||
// See the upcast conversion for the "htmlContent" attribute to learn more. | ||
const customElement = domElement.firstChild; | ||
|
||
customElement.remove(); | ||
|
||
while ( customElement.firstChild ) { | ||
domElement.appendChild( customElement.firstChild ); | ||
} | ||
} ); | ||
|
||
if ( modelElement.hasAttribute( 'htmlAttributes' ) ) { | ||
setViewAttributes( writer, modelElement.getAttribute( 'htmlAttributes' ), viewElement ); | ||
} | ||
|
||
return viewElement; | ||
} | ||
} ); | ||
} ); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.