-
Notifications
You must be signed in to change notification settings - Fork 47k
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
Render <noscript> contents to string #1327
Conversation
); | ||
}); | ||
|
||
it('should be rendered into the DOM with a single text node child', function() { |
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.
Can you make sure that this passes in all browsers? You can run grunt test --debug
then go to http://127.0.0.1:9999/test/ to run the tests. (Because of #1314 some of the Immutable tests may be failing already, but you can ignore those.)
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.
(If it isn't consistent, I'm not super concerned and I think we could probably drop this test.)
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.
Hm…it seems like <noscript>
is a different beast in IE8. For example, trying to set its innerHTML just causes an error. This is a problem: if you write a component that uses <noscript>
(in order to leverage server side rendering), it will error when React tries to mount it.
I'm not exactly sure how best to get around this. I supposed we could sidestep the issue by telling it not to render any contents when mounting into the DOM, but I'm not sure how best to recognize that. Thoughts?
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.
Wait, what am I saying? Then it wouldn't match what the server sent down!
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.
You mean modifying an existing noscript gives problems in IE8? If so, you could cache the rendered HTML in componentWillMount
, store it in state, and just use that on subsequent renders.
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.
No, unfortunately. It doesn't seem like the problem is just modifying a noscript but even creating one in the first place. It doesn't seem to be possible to create a noscript element with contents in that browser.
var div = document.createElement('div');
div.innerHTML = '<noscript>hi</noscript>';
console.log(div.innerHTML); // undefined
Also, modification via appendChild
var noscript = document.createElement('noscript');
var span = document.createElement('span');
span.innerHTML = 'hi';
noscript.appendChild(span);
// Error: "Unexpected call to method or property access."
I think this looks good, though I'd probably call it ReactDOMNoScript. |
Ah, okay. I took a guess based on the capitalization of "Textarea" but I can fix it. |
Yeah... maybe you could argue that textarea is one word though. I don't feel strongly. |
I pushed the capitalization change. It does seem a little inconsistent IMO, but I figure this way you guys can just decide whether you want that particular commit or not (: |
To summarize what I told @spicyj on IRC: One test is currently failing in IE8. It's not a problem with the PR per se, but with how IE8 handles As far as workarounds go, I can only think of one approach that would make IE8 happy: 1) always render EDIT: The bug now has its own issue #1341 |
Going to close this out for now because there's not much improvement we can make here immediately. Thanks for sending this in though! I think we may be able to make this really work in the future after some upcoming refactors of the core. |
That's too bad /: The current state is broken. This is at least unbroken in everything but IE8. |
As a workaround, you can write
and React shouldn't get confused even if the noscript disappears. |
I'd love it if somebody could revisit this issue - it's a real pain to have to use the workaround |
This is the fix for #1252; it uses
renderComponentToStaticMarkup
on the children so that the server and browser both treat them the same (as text content). In browsers that have JS disabled…well, React won't be loaded so it can't be upset that the contents are actual elements 😝Let me know if any improvements can be made. I didn't see a
map
utility for the children list that produced an array so I usedReactChildren.forEach
. I think the tests cover everything, but if not, let me know!