fb79a15508
- 添加 sections 定义文件,包含性能优化各领域分类 - 添加规则模板文件,规范文档结构和标签定义 - 添加异步操作优化规则,包括防止瀑布流、并行化、延迟等待等 - 添加包大小优化规则,包括避免桶式导入、动态导入、预加载等 - 添加服务端性能优化规则,包括 API 路
46 lines
1.0 KiB
Markdown
46 lines
1.0 KiB
Markdown
---
|
|
title: Hoist RegExp Creation
|
|
impact: LOW-MEDIUM
|
|
impactDescription: avoids recreation
|
|
tags: javascript, regexp, optimization, memoization
|
|
---
|
|
|
|
## Hoist RegExp Creation
|
|
|
|
Don't create RegExp inside render. Hoist to module scope or memoize with `useMemo()`.
|
|
|
|
**Incorrect (new RegExp every render):**
|
|
|
|
```tsx
|
|
function Highlighter({ text, query }: Props) {
|
|
const regex = new RegExp(`(${query})`, 'gi')
|
|
const parts = text.split(regex)
|
|
return <>{parts.map((part, i) => ...)}</>
|
|
}
|
|
```
|
|
|
|
**Correct (memoize or hoist):**
|
|
|
|
```tsx
|
|
const EMAIL_REGEX = /^[^\s@]+@[^\s@]+\.[^\s@]+$/
|
|
|
|
function Highlighter({ text, query }: Props) {
|
|
const regex = useMemo(
|
|
() => new RegExp(`(${escapeRegex(query)})`, 'gi'),
|
|
[query]
|
|
)
|
|
const parts = text.split(regex)
|
|
return <>{parts.map((part, i) => ...)}</>
|
|
}
|
|
```
|
|
|
|
**Warning (global regex has mutable state):**
|
|
|
|
Global regex (`/g`) has mutable `lastIndex` state:
|
|
|
|
```typescript
|
|
const regex = /foo/g
|
|
regex.test('foo') // true, lastIndex = 3
|
|
regex.test('foo') // false, lastIndex = 0
|
|
```
|