-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
[Block Conversion - Embed]: Fix embed to paragraph transform when caption has rich text formats #32355
Merged
ntsekouras
merged 3 commits into
trunk
from
fix/embed-to-paragraph-with-caption-transform
Jun 10, 2021
Merged
[Block Conversion - Embed]: Fix embed to paragraph transform when caption has rich text formats #32355
ntsekouras
merged 3 commits into
trunk
from
fix/embed-to-paragraph-with-caption-transform
Jun 10, 2021
Conversation
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
ntsekouras
added
[Type] Bug
An existing feature does not function as intended
[Feature] Block Transforms
Block transforms from one block to another
labels
May 31, 2021
ntsekouras
commented
May 31, 2021
Size Change: -25 B (0%) Total Size: 1.03 MB
ℹ️ View Unchanged
|
…n has rich text formats
ntsekouras
force-pushed
the
fix/embed-to-paragraph-with-caption-transform
branch
from
June 10, 2021 10:37
9d63fdb
to
718cb90
Compare
ellatrix
reviewed
Jun 10, 2021
transform: ( { url, caption } ) => { | ||
const link = <a href={ url }>{ caption || url }</a>; | ||
return createBlock( 'core/paragraph', { | ||
content: renderToString( link ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good riddance.
ellatrix
approved these changes
Jun 10, 2021
ellatrix
reviewed
Jun 10, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
[Block] Embed
Affects the Embed Block
[Feature] Block Transforms
Block transforms from one block to another
[Type] Bug
An existing feature does not function as intended
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Fixes: #32265
Currently when we have an
embed
block and we have added rich text formats to its caption (bold, link, color, etc..), if we transform to aparagraph
all the html tags will be pulled into the text node. This PR solves that.In addition I have added an
isMatch
for this transform, so it is shown only if we have aurl
. You can test the existing behavior by inserting aYoutube
block without adding aurl
and observe that the convert to paragraph option is available.Testing instructions
Checklist:
*.native.js
files for terms that need renaming or removal).