Skip to content
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

Use <figure>s for images inserted from markdown #164

Merged
merged 4 commits into from
Feb 5, 2019

Conversation

mxstbr
Copy link
Collaborator

@mxstbr mxstbr commented Feb 5, 2019

This means they will be inserted as atomic blocks by import-element, making them work out of the box with the draft-js-image-plugin 🎉

Closes #147

Copy link
Owner

@sstur sstur left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know how much I love the idea of:

  1. Using a wrapping<figure>
  2. Doing it in the markdown parser (as opposed to the draft-js content generator)

I feel like there's a more optimal solution, but.. since this is a working solution to a problem that has been around for a while, I think we should go ahead and land this (behind an option flag) and possibly come up with a more optimal solution another day.

blocks,
}).toEqual({
entityMap: {
// This is necessary due to flow not supporting non-string literal property keys
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I think the trick here that I used in the past is:

{ [0]: "foo" }

because IIRC Flow is fine when the number literal is in a computed property.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just copied that from the old tests 😉

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, my bad. You're right!

@mxstbr
Copy link
Collaborator Author

mxstbr commented Feb 5, 2019

I will put this behind an option 👍

@mxstbr
Copy link
Collaborator Author

mxstbr commented Feb 5, 2019

Hmm, it seems like the Renderer does not get passed the options correctly. I could not quickly figure out how to adjust its output based on an atomicImages flag, would you mind cleaning this up? 🙏

Thanks for the quick review!!

const alt = 'The Google Logo';
let markdown = `![${alt}](${src})`;
let contentState = stateFromMarkdown(markdown, {
parserOptions: {atomicImages: true},
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mxstbr: I added this here. Unless you have an objection to this approach, I'll go ahead and land this when the CI passes and I'll cut a release.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect 💯

@sstur sstur merged commit 3c3f23c into sstur:master Feb 5, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants