Skip to content

Commit 2da0211

Browse files
committed
batch-handle-resource
1 parent e36a78a commit 2da0211

File tree

4 files changed

+117
-31
lines changed

4 files changed

+117
-31
lines changed

src/index.ts

+18-17
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const LOG_FILE_PATH = 'D:/CoderHXL/性能优化/图片优化'
1212

1313
const errorList: { path: string; message: string }[] = []
1414

15-
function start() {
15+
async function start() {
1616
async function imageFormatWebp(entryPath: string, outputPath: string) {
1717
try {
1818
const buffer = await sharp(entryPath).toFormat('webp').toBuffer()
@@ -25,7 +25,8 @@ function start() {
2525
}
2626
}
2727

28-
transformImage({
28+
// 图片处理
29+
const pathInfoList = await transformImage({
2930
entry: ENTER_PATH,
3031
output: OUTPUT_PATH,
3132

@@ -56,26 +57,26 @@ function start() {
5657
]
5758
}
5859
]
59-
}).then(async (pathInfoList) => {
60-
if (errorList.length) {
61-
console.log(`Error: list: ${errorList} - length: ${errorList.length} `)
62-
}
60+
})
6361

64-
const replaceInfo = pathInfoList.map((item) => ({
65-
searchValue: item.entryPath.replace(OUTPUT_PATH, ''),
66-
replaceValue: item.outputPath.replace(OUTPUT_PATH, '')
67-
}))
62+
if (errorList.length) {
63+
console.log(`Error: list: ${errorList} - length: ${errorList.length} `)
64+
}
6865

69-
// 更新文件内图片资源的 URL
70-
await replaceFileContent({
71-
entry: FILE_ENTER_PATH,
72-
list: replaceInfo,
66+
const replaceInfo = pathInfoList.map((item) => ({
67+
searchValue: item.entryPath.replace(OUTPUT_PATH, ''),
68+
replaceValue: item.outputPath.replace(OUTPUT_PATH, '')
69+
}))
7370

74-
logFileGeneratePath: LOG_FILE_PATH
75-
})
71+
// 更新文件内图片资源的 URL
72+
await replaceFileContent({
73+
entry: FILE_ENTER_PATH,
74+
list: replaceInfo,
7675

77-
console.log('完成 - 图片转换以及更新路径')
76+
logFileGeneratePath: LOG_FILE_PATH
7877
})
78+
79+
console.log('完成 - 图片转换以及更新路径')
7980
}
8081

8182
start()

src/shared/file.ts

+16-12
Original file line numberDiff line numberDiff line change
@@ -24,41 +24,45 @@ export function getFilePath(
2424
return transformToPaths
2525
}
2626

27-
export async function getAllDirFileContent(dir: string) {
28-
const filePaths = getFilePath(dir)
27+
export async function getFileContentAndPath(filePaths: string[]) {
28+
const result: { path: string; content: string }[] = []
2929

30-
let content = ''
3130
const promisePending: Promise<any>[] = []
3231
for (const filePath of filePaths) {
3332
const pending = fs.promises
3433
.readFile(filePath, { encoding: 'utf8' })
35-
.then((res) => {
36-
content += `${res} \n`
37-
})
34+
.then((res) => result.push({ path: filePath, content: res }))
3835

3936
promisePending.push(pending)
4037
}
4138

4239
await Promise.all(promisePending)
4340

44-
return content
41+
return result
4542
}
4643

47-
export async function getAllDirFileContentAndPath(dir: string) {
48-
const result: { path: string; content: string }[] = []
49-
44+
export async function getAllDirFileContent(dir: string) {
5045
const filePaths = getFilePath(dir)
5146

47+
let content = ''
5248
const promisePending: Promise<any>[] = []
5349
for (const filePath of filePaths) {
5450
const pending = fs.promises
5551
.readFile(filePath, { encoding: 'utf8' })
56-
.then((res) => result.push({ path: filePath, content: res }))
52+
.then((res) => {
53+
content += `${res} \n`
54+
})
5755

5856
promisePending.push(pending)
5957
}
6058

6159
await Promise.all(promisePending)
6260

63-
return result
61+
return content
62+
}
63+
64+
export async function getAllDirFileContentAndPath(dir: string) {
65+
const filePaths = getFilePath(dir)
66+
67+
return await getFileContentAndPath(filePaths)
6468
}

src/transformImage.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
LogFileGenerate
88
} from './shared'
99

10-
export interface Rule<R = 'png' | 'jpg', F = 'webp' | 'svg'> {
10+
export interface Rule<R = 'png' | 'jpg' | 'webp' | 'svg', F = 'webp' | 'svg'> {
1111
name: R
1212
format: {
1313
name: F
@@ -23,7 +23,10 @@ export interface Rule<R = 'png' | 'jpg', F = 'webp' | 'svg'> {
2323
}[]
2424
}
2525

26-
export interface TransformImage<R = 'png' | 'jpg', F = 'webp' | 'svg'> {
26+
export interface TransformImage<
27+
R = 'png' | 'jpg' | 'webp' | 'svg',
28+
F = 'webp' | 'svg'
29+
> {
2730
entry: string
2831
output: string
2932

test/index.ts

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
import fs from 'node:fs'
2+
import sharp from 'sharp'
3+
4+
import transformImage from '../src/transformImage'
5+
import replaceFileContent from '../src/replaceFileContent'
6+
import { getFileContentAndPath, getFilePath } from '../src/shared'
7+
8+
const BASE_PATH = 'd:/CoderHXL/轮子/batch-handle-resource/test/webp'
9+
10+
async function start() {
11+
const imagePaths = getFilePath(BASE_PATH)
12+
13+
const filePaths = getFilePath(
14+
'd:/CoderHXL/Project/spyx-next-web/src',
15+
(filePath) => {
16+
const targets = [
17+
'contacts',
18+
'track-call',
19+
'track-email',
20+
'track-sim',
21+
'track-instagram',
22+
'track-snapchat',
23+
'track-kik',
24+
'track-line',
25+
'track-skype',
26+
'track-tinder',
27+
'track-viber',
28+
'track-wechat',
29+
'track-hangouts',
30+
'track-keylogger'
31+
]
32+
console.log(filePath)
33+
34+
return !!targets.find(
35+
(v) => filePath.includes('features') && filePath.includes(v)
36+
)
37+
}
38+
)
39+
40+
const list = imagePaths.map((v) => {
41+
const name = v.split('/').pop()!
42+
const startName = name.split('-')[0]!
43+
44+
const searchValue = `/image/features/${startName}.webp`
45+
const replaceValue = `/image/features/${name}`
46+
47+
return { searchValue, replaceValue }
48+
})
49+
50+
const fileInfoList = await getFileContentAndPath(filePaths)
51+
const replaceQueue: { path: string; content: string }[] = []
52+
for (const item of list) {
53+
const { searchValue, replaceValue } = item
54+
55+
for (const fileInfo of fileInfoList) {
56+
const { content } = fileInfo
57+
if (!content.includes(searchValue)) continue
58+
59+
fileInfo.content = content.replaceAll(searchValue, replaceValue)
60+
61+
replaceQueue.push(fileInfo)
62+
}
63+
}
64+
65+
// 替换文件内容
66+
for (const fileInfo of replaceQueue) {
67+
const { path, content } = fileInfo
68+
69+
await fs.promises.writeFile(path, content)
70+
}
71+
72+
console.log(imagePaths)
73+
console.log(filePaths, fileInfoList.length)
74+
75+
console.log('完成 - 图片转换以及更新路径')
76+
}
77+
78+
start()

0 commit comments

Comments
 (0)