Skip to content

Commit 14b0ca6

Browse files
committed
Apply later so it leaves jsx mode untouched
1 parent 859dff5 commit 14b0ca6

File tree

3 files changed

+26
-18
lines changed

3 files changed

+26
-18
lines changed

src/index.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -253,13 +253,9 @@ function _renderToString(vnode, context, opts, inner, isSvgMode, selectValue) {
253253
name = 'class';
254254
} else if (isSvgMode && name.match(/^xlink:?./)) {
255255
name = name.toLowerCase().replace(/^xlink:?/, 'xlink:');
256-
} else if (DASHED_ATTRS.test(name)) {
257-
name = name.replace(/([A-Z])/g, (l) => '-' + l.toLowerCase());
258-
} else if (!CAMEL_ATTRS.test(name)) {
259-
name = name.toLowerCase();
260256
}
261257

262-
if (name === 'htmlfor') {
258+
if (name === 'htmlFor') {
263259
if (props.for) continue;
264260
name = 'for';
265261
}
@@ -282,7 +278,7 @@ function _renderToString(vnode, context, opts, inner, isSvgMode, selectValue) {
282278
continue;
283279
}
284280

285-
if (name === 'dangerouslysetinnerhtml') {
281+
if (name === 'dangerouslySetInnerHTML') {
286282
html = v && v.__html;
287283
} else if (nodeName === 'textarea' && name === 'value') {
288284
// <textarea value="a&b"> --> <textarea>a&amp;b</textarea>
@@ -305,6 +301,14 @@ function _renderToString(vnode, context, opts, inner, isSvgMode, selectValue) {
305301
s += ` selected`;
306302
}
307303
}
304+
305+
// Convert attribute names to proper html casing
306+
if (DASHED_ATTRS.test(name)) {
307+
name = name.replace(/([A-Z])/g, (l) => '-' + l.toLowerCase());
308+
} else if (!CAMEL_ATTRS.test(name)) {
309+
name = name.toLowerCase();
310+
}
311+
308312
s += ` ${name}="${encodeEntities(v)}"`;
309313
}
310314
}

test/jsx.test.js

+2-12
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,6 @@ describe('jsx', () => {
7474
`);
7575
});
7676

77-
it('should decamelize attributes', () => {
78-
expect(renderJsx(<img srcSet="foo.png, foo2.png 2x" />)).to.equal(
79-
`<img srcset="foo.png, foo2.png 2x" />`
80-
);
81-
});
82-
83-
it('should dasherize certain attributes', () => {
84-
expect(renderJsx(<meta httpEquiv="" />)).to.equal(`<meta http-equiv="" />`);
85-
});
86-
8777
it('should skip null and undefined attributes', () => {
8878
expect(renderJsx(<a b={null}>bar</a>)).to.equal(`<a>bar</a>`);
8979

@@ -161,11 +151,11 @@ describe('jsx', () => {
161151
it('should skip function names if functionNames=false', () => {
162152
expect(
163153
renderJsx(<div onClick={() => {}} />, { functionNames: false })
164-
).to.equal('<div onclick={Function}></div>');
154+
).to.equal('<div onClick={Function}></div>');
165155

166156
expect(
167157
renderJsx(<div onClick={function foo() {}} />, { functionNames: false })
168-
).to.equal('<div onclick={Function}></div>');
158+
).to.equal('<div onClick={Function}></div>');
169159
});
170160

171161
it('should render self-closing elements', () => {

test/render.test.js

+14
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,20 @@ describe('render', () => {
8989
expect(rendered).to.equal(expected);
9090
});
9191

92+
it('should decamelize attributes', () => {
93+
let rendered = render(<img srcSet="foo.png, foo2.png 2x" />),
94+
expected = `<img srcset="foo.png, foo2.png 2x" />`;
95+
96+
expect(rendered).to.equal(expected);
97+
});
98+
99+
it('should dasherize certain attributes', () => {
100+
let rendered = render(<meta httpEquiv="refresh" />),
101+
expected = `<meta http-equiv="refresh" />`;
102+
103+
expect(rendered).to.equal(expected);
104+
});
105+
92106
it('should include boolean aria-* attributes', () => {
93107
let rendered = render(<div aria-hidden aria-whatever={false} />),
94108
expected = `<div aria-hidden="true" aria-whatever="false"></div>`;

0 commit comments

Comments
 (0)