Skip to content

Commit 918e62c

Browse files
committedOct 14, 2024
fix(button): NaN values on the button (#1650)
1 parent bb79540 commit 918e62c

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed
 

‎.changeset/soft-timers-roll.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@react-email/button": patch
3+
---
4+
5+
Fix NaN values on rendered Button HTML

‎packages/button/src/__snapshots__/button.spec.tsx.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
exports[`<Button> component > renders correctly with padding values from style prop 1`] = `"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><a href="https://example.com" style="line-height:100%;text-decoration:none;display:inline-block;max-width:100%;mso-padding-alt:0px;padding:12px 20px 12px 20px" target="_blank"><span><!--[if mso]><i style="mso-font-width:500%;mso-text-raise:18" hidden>&#8202;&#8202;</i><![endif]--></span><span style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:9px"></span><span><!--[if mso]><i style="mso-font-width:500%" hidden>&#8202;&#8202;&#8203;</i><![endif]--></span></a><!--/$-->"`;
44
5-
exports[`<Button> component > renders the <Button> component with no padding value 1`] = `"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><a href="https://example.com" style="line-height:100%;text-decoration:none;display:inline-block;max-width:100%;mso-padding-alt:0px;padding:0px 0px 0px 0px" target="_blank"><span><!--[if mso]><i style="mso-font-width:NaN%;mso-text-raise:0" hidden></i><![endif]--></span><span style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:0"></span><span><!--[if mso]><i style="mso-font-width:NaN%" hidden>&#8203;</i><![endif]--></span></a><!--/$-->"`;
5+
exports[`<Button> component > renders the <Button> component with no padding value 1`] = `"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><a href="https://example.com" style="line-height:100%;text-decoration:none;display:inline-block;max-width:100%;mso-padding-alt:0px;padding:0px 0px 0px 0px" target="_blank"><span><!--[if mso]><i style="mso-font-width:0%;mso-text-raise:0" hidden></i><![endif]--></span><span style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:0"></span><span><!--[if mso]><i style="mso-font-width:0%" hidden>&#8203;</i><![endif]--></span></a><!--/$-->"`;
66
7-
exports[`<Button> component > should allow users to overwrite style props 1`] = `"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><a style="line-height:150%;text-decoration:underline red;display:block;max-width:50%;mso-padding-alt:0px;padding:0px 0px 0px 0px" target="_blank"><span><!--[if mso]><i style="mso-font-width:NaN%;mso-text-raise:0" hidden></i><![endif]--></span><span style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:0"></span><span><!--[if mso]><i style="mso-font-width:NaN%" hidden>&#8203;</i><![endif]--></span></a><!--/$-->"`;
7+
exports[`<Button> component > should allow users to overwrite style props 1`] = `"<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--$--><a style="line-height:150%;text-decoration:underline red;display:block;max-width:50%;mso-padding-alt:0px;padding:0px 0px 0px 0px" target="_blank"><span><!--[if mso]><i style="mso-font-width:0%;mso-text-raise:0" hidden></i><![endif]--></span><span style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:0"></span><span><!--[if mso]><i style="mso-font-width:0%" hidden>&#8203;</i><![endif]--></span></a><!--/$-->"`;

‎packages/button/src/button.tsx

+18-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,30 @@ import { pxToPt } from "./utils/px-to-pt";
44

55
export type ButtonProps = Readonly<React.ComponentPropsWithoutRef<"a">>;
66

7+
const maxFontWidth = 5;
8+
9+
/**
10+
* Computes a msoFontWidth \<= 5 and a count of space characters that,
11+
* when applied, end up being as close to `expectedWidth` as possible.
12+
*/
713
function computeFontWidthAndSpaceCount(expectedWidth: number) {
14+
if (expectedWidth === 0) return [0, 0];
15+
816
let smallestSpaceCount = 0;
917

10-
while (expectedWidth / smallestSpaceCount / 2 > 5) {
18+
const computeRequiredFontWidth = () => {
19+
if (smallestSpaceCount > 0) {
20+
return expectedWidth / smallestSpaceCount / 2;
21+
}
22+
23+
return Infinity;
24+
};
25+
26+
while (computeRequiredFontWidth() > maxFontWidth) {
1127
smallestSpaceCount++;
1228
}
1329

14-
return [expectedWidth / smallestSpaceCount / 2, smallestSpaceCount];
30+
return [computeRequiredFontWidth(), smallestSpaceCount];
1531
}
1632

1733
export const Button = React.forwardRef<HTMLAnchorElement, ButtonProps>(

0 commit comments

Comments
 (0)
Please sign in to comment.