Skip to content

Commit f9fd4aa

Browse files
authored
fix: fix character can't be parsed as a number (#79)
1 parent cc12f1f commit f9fd4aa

File tree

6 files changed

+25
-8
lines changed

6 files changed

+25
-8
lines changed

examples/demo.less

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ body {
22
font-size: 48px;
33
padding: 10px 12px 24px 28.8px;
44
margin: 7.5px 1vw;
5+
6+
&.remove {
7+
font-size: 24px;
8+
}
59
}
610

711
// cssrem-disable-next-line

src/hover.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ export default class implements HoverProvider {
4141
.map((rule) => rule.hoverFn!(text))
4242
.filter((h) => h != null && h.documentation);
4343
if (cog.hover === 'onlyMark') {
44-
results = results.filter((w) => !line.includes(`/* ${w.type} */`));
44+
results = results.filter((w) => !line.includes(`/* ${w!.type} */`));
4545
}
4646
if (results.length === 0) return null;
4747
if (results.length === 1)
48-
return new Hover(new MarkdownString(results[0].documentation));
48+
return new Hover(new MarkdownString(results[0]!.documentation));
4949

5050
return new Hover(
51-
new MarkdownString(results.map((h) => `- ${h.documentation}`).join('\n'))
51+
new MarkdownString(results.map((h) => `- ${h!.documentation}`).join('\n'))
5252
);
5353
}
5454
}

src/interface.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ export interface Rule {
6161
type: Type;
6262
all: RegExp;
6363
single?: RegExp;
64-
fn: (text: string) => ConvertResult | undefined;
64+
fn: (text: string) => ConvertResult | undefined | null;
6565
hover?: RegExp | null;
66-
hoverFn?: (text: string) => HoverResult;
66+
hoverFn?: (text: string) => HoverResult | undefined | null;
6767
}
6868

6969
export type Type =

src/line-annotation.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ export class LineAnnotation implements Disposable {
119119
text: str,
120120
rule: RULES.filter(
121121
(w) => w.hover && w.hover.test(str) && w.hoverFn != null
122-
).map((h) => h.hoverFn!(str)),
122+
)
123+
.map((h) => h.hoverFn!(str))
124+
.filter((h) => h != null),
123125
}))
124126
.filter((item) => item.rule.length > 0);
125127

src/process.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class CssRemProcess {
1111
return null;
1212
}
1313

14-
return res.map((i) => i.rule.fn(i.text)!);
14+
return res.map((i) => i.rule.fn(i.text)).filter((w) => w != null);
1515
}
1616

1717
private convertAll(code: string, ignores: string[], type: Type): string {

src/rules.ts

+12-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export function resetRules(): void {
2222
single: /([-]?[\d.]+)px?$/,
2323
fn: (text) => {
2424
const px = parseFloat(text);
25+
if (isNaN(px)) return null;
2526
const resultValue = +(px / cog.rootFontSize).toFixed(cog.fixedDigits);
2627
const value = cleanZero(resultValue) + 'rem';
2728
const label = `${px}px -> ${value}`;
@@ -47,6 +48,7 @@ export function resetRules(): void {
4748
hover: cog.remHover ? /([-]?[\d.]+)px/ : null,
4849
hoverFn: (pxText) => {
4950
const px = parseFloat(pxText);
51+
if (isNaN(px)) return null;
5052
const rem = +(px / cog.rootFontSize).toFixed(cog.fixedDigits);
5153
return {
5254
type: 'remToPx',
@@ -64,10 +66,11 @@ export function resetRules(): void {
6466
},
6567
{
6668
type: 'remToPx',
67-
all: /([-]?[\d.]+)rem/g,
69+
all: /([-]?[\d.]+)(rem)/g,
6870
single: /([-]?[\d.]+)r(e|em)?$/,
6971
fn: (text) => {
7072
const px = parseFloat(text);
73+
if (isNaN(px)) return null;
7174
const resultValue = +(px * cog.rootFontSize).toFixed(cog.fixedDigits);
7275
const value = cleanZero(resultValue) + 'px';
7376
const label = `${px}rem -> ${value}`;
@@ -93,6 +96,7 @@ export function resetRules(): void {
9396
hover: /([-]?[\d.]+)rem/,
9497
hoverFn: (remText) => {
9598
const rem = parseFloat(remText);
99+
if (isNaN(rem)) return null;
96100
const px = +(rem * cog.rootFontSize).toFixed(cog.fixedDigits);
97101
return {
98102
type: 'remToPx',
@@ -126,6 +130,7 @@ export function resetRules(): void {
126130
single: /([-]?[\d.]+)px?$/,
127131
fn: (text) => {
128132
const px = parseFloat(text);
133+
if (isNaN(px)) return null;
129134
const resultValue = +(px / (cog.vwDesign / 100.0)).toFixed(
130135
cog.fixedDigits
131136
);
@@ -154,6 +159,7 @@ export function resetRules(): void {
154159
hover: cog.vwHover ? /([-]?[\d.]+)px/ : null,
155160
hoverFn: (pxText) => {
156161
const px = parseFloat(pxText);
162+
if (isNaN(px)) return null;
157163
const vw = +(px / (cog.vwDesign / 100.0)).toFixed(cog.fixedDigits);
158164
return {
159165
type: 'pxToVw',
@@ -177,6 +183,7 @@ export function resetRules(): void {
177183
single: /([-]?[\d.]+)vw?$/,
178184
fn: (text) => {
179185
const vw = parseFloat(text);
186+
if (isNaN(vw)) return null;
180187
const resultValue = +(vw * (cog.vwDesign / 100.0)).toFixed(
181188
cog.fixedDigits
182189
);
@@ -205,6 +212,7 @@ export function resetRules(): void {
205212
hover: /([-]?[\d.]+)vw/,
206213
hoverFn: (rpxText) => {
207214
const vw = parseFloat(rpxText);
215+
if (isNaN(vw)) return null;
208216
const px = +(vw * (cog.vwDesign / 100.0)).toFixed(cog.fixedDigits);
209217
return {
210218
type: 'vwToPx',
@@ -240,6 +248,7 @@ export function resetRules(): void {
240248
single: /([-]?[\d.]+)px?$/,
241249
fn: (text) => {
242250
const px = parseFloat(text);
251+
if (isNaN(px)) return null;
243252
const resultValue = +(
244253
px *
245254
(cog.wxssScreenWidth / cog.wxssDeviceWidth)
@@ -273,6 +282,7 @@ export function resetRules(): void {
273282
single: /([-]?[\d.]+)r(p|px)?$/,
274283
fn: (text) => {
275284
const rpx = parseFloat(text);
285+
if (isNaN(rpx)) return null;
276286
const resultValue = +(
277287
rpx /
278288
(cog.wxssScreenWidth / cog.wxssDeviceWidth)
@@ -302,6 +312,7 @@ export function resetRules(): void {
302312
hover: /([-]?[\d.]+)rpx/,
303313
hoverFn: (rpxText) => {
304314
const rpx = parseFloat(rpxText);
315+
if (isNaN(rpx)) return null;
305316
const px = +(
306317
rpx /
307318
(cog.wxssScreenWidth / cog.wxssDeviceWidth)

0 commit comments

Comments
 (0)