-
-
Notifications
You must be signed in to change notification settings - Fork 63
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
feat: add support for mixed html/js content #128
feat: add support for mixed html/js content #128
Conversation
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.
The branch is looking great! It's already very useful. But I do have a few concerns. See the two comments below.
Also, the scripts aren't evaluated on page load. When pressing F5 or when opening a reply from a shared link, I first need to edit the markdown manually, to trigger the evals.
src/components/Preview.js
Outdated
() => | ||
scripts.length | ||
? scripts.reduce( | ||
(html, script) => html.replace(`<script>${script}</script>`, ''), |
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.
This doesn't remove script
elements that specify the type
attribute. Type attributes for script
elements default to text/javascript
, but it's still a valid attribute to provide. 🙂
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.
Yes, totally right! I am going to fix it!
src/components/Preview.js
Outdated
const container = document.createElement('div'); | ||
container.innerHTML = markup; | ||
const scriptsCollections = container.getElementsByTagName('script'); | ||
return Array.from(scriptsCollections).map((script) => script.innerHTML); |
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.
This also parses script
elements of other types than javascript. For example <script type="text/css">
. Type attributes for script
elements default to text/javascript
, so we should only extract script
elements without a type
attribute, or with a type === "text/javascript"
<script type="text/javascript">
document.getElementById('btn').addEventListener('click', () => {
alert('click');
});
</script>
See also this repl.
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.
Got it! I am going to fix it again!
Regarding the first comment, the one about the missed evaluation on page loading maybe I have some idea to fix it. I should try! |
…ace eval with new Function (testing-library#10)
I should have fixed the issues you highlighted. A remaining issue is that if the user modifies the script code in |
I have moved |
I have prepared a fix to keep track of the already evaluated script, I could push it too if it's ok to you. |
I am going to push it because I won't be able to do that during this morning, if that fix doesn't sound good to you I will turn it back! |
Hi @smeijer ! I don't wanna to hurry you, but reading again my comments worry me that I haven't been so clear. I already pushed all the code I have for this feature and I would like to receive your thoughts. |
Hi @delca85. I'll do my best to check it today. Thanks for the reminder 👍 |
@delca85, Thanks so much for your help! I've added you as a 🐸 collaborator on the project. Please make sure that you review the You might also want to watch the repo to be notified when someone files an issue/PR. Please continue to make PRs as you feel the need (you can make your branches directly on the repo rather than your fork if you want). Thanks! And welcome to the team 🎉 |
Wow! Thank you @smeijer! I am really really happy and excited about it. I'll keep on doing my best to collaborate to this awesome project. 🎉 🥳 |
Working on #10 , I have enabled:
MarkupEditor
, syntax highlighting working even for js script nowPreview
component and evaluated throughwindow.eval
. Beforemarkup
is passed asScrollable
child indangerouslySetInnerHtml
all thescript
elements are removed.Right now, this kind of code:
can be inserted by the user and the result is an interactive
Preview
panel.