-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathuni_modules.ts
506 lines (474 loc) · 14 KB
/
uni_modules.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
import path from 'path'
import fs from 'fs-extra'
import fg from 'fast-glob'
import { type UniXCompiler, createUniXCompiler } from './tsc/compiler'
import type { CompilerOptions } from 'typescript'
import { isInHBuilderX, normalizePath, once } from './shared'
import { isCustomElementsSupported } from './utils'
import { camelize, capitalize } from '@vue/shared'
type TargetLanguage = Parameters<typeof createUniXCompiler>[1]
function createUniXTargetLanguageCompiler(
platform: 'app-android' | 'app-ios' | 'app-harmony',
language: TargetLanguage
) {
const tscInputDir = path.join(process.env.UNI_APP_X_TSC_DIR, platform)
return createUniXCompiler(
process.env.NODE_ENV === 'development' ? 'development' : 'production',
language,
{
inputDir: tscInputDir,
cacheDir: path.resolve(process.env.UNI_APP_X_TSC_CACHE_DIR, platform),
outputDir: path.join(process.env.UNI_APP_X_UVUE_DIR, platform),
paths: resolveUniXCompilerUniModulesPaths(
platform,
process.env.UNI_INPUT_DIR,
tscInputDir
),
normalizeFileName: normalizeNodeModules,
}
)
}
export function createUniXArkTSCompiler() {
return createUniXTargetLanguageCompiler('app-harmony', 'ArkTS')
}
export const createUniXArkTSCompilerOnce = once(createUniXArkTSCompiler)
export function createUniXKotlinCompiler() {
return createUniXTargetLanguageCompiler('app-android', 'Kotlin')
}
export const createUniXKotlinCompilerOnce = once(createUniXKotlinCompiler)
export function createUniXSwiftCompiler() {
return createUniXTargetLanguageCompiler('app-ios', 'Swift')
}
export const createUniXSwiftCompilerOnce = once(createUniXSwiftCompiler)
function resolveUniXCompilerUniModulesPaths(
platform: 'app-android' | 'app-ios' | 'app-harmony',
inputDir: string,
tscInputDir: string
) {
const paths: CompilerOptions['paths'] = {}
const uniModulesDir = path.resolve(inputDir, 'uni_modules')
if (fs.existsSync(uniModulesDir)) {
fs.readdirSync(uniModulesDir).forEach((dir) => {
const pluginPath = `@/uni_modules/${dir}`
const pluginDir = path.resolve(uniModulesDir, dir)
const utssdkDir = path.resolve(pluginDir, 'utssdk')
const tscUtsSdkDir = path.resolve(
tscInputDir,
'uni_modules',
dir,
'utssdk'
)
// utssdk 插件
if (fs.existsSync(utssdkDir)) {
// 加密插件
if (fs.existsSync(path.resolve(pluginDir, 'encrypt'))) {
if (fs.existsSync(path.resolve(utssdkDir, 'interface.uts'))) {
paths[pluginPath] = [path.resolve(tscUtsSdkDir, 'interface.uts.ts')]
}
} else {
// 非加密插件
// utssdk/app-android/index.uts
if (fs.existsSync(path.resolve(utssdkDir, platform, 'index.uts'))) {
paths[pluginPath] = [
path.resolve(tscUtsSdkDir, platform, 'index.uts.ts'),
]
// utssdk/index.uts
} else if (fs.existsSync(path.resolve(utssdkDir, 'index.uts'))) {
paths[pluginPath] = [path.resolve(tscUtsSdkDir, 'index.uts.ts')]
}
}
}
})
}
return paths
}
const NODE_MODULES_REGEX = /(\.\.\/)?node_modules/g
function normalizeNodeModules(str: string) {
str = normalizePath(str).replace(NODE_MODULES_REGEX, 'node-modules')
// HBuilderX 内置模块路径转换
str = str.replace(
/.*\/plugins\/uniapp-cli-vite\/node[-_]modules/,
'node-modules'
)
if (!isInHBuilderX()) {
// 内部测试
if (str.includes('uni-app-next/packages/')) {
str = str.replace(
/.*\/uni-app-next\/packages\//,
'node-modules/@dcloudio/'
)
}
}
if (process.env.UNI_PLATFORM === 'mp-alipay') {
str = str.replace('node-modules/@', 'node-modules/npm-scope-')
}
return str
}
export type UniXCompilerPlatform = 'app-android' | 'app-ios' | 'app-harmony'
export async function compileUniModuleWithTsc(
platform: UniXCompilerPlatform,
pluginDir: string,
uniXCompiler: UniXCompiler,
{
rootFiles,
preprocessor,
}: {
rootFiles?: string[] | ((platform: UniXCompilerPlatform) => string[])
preprocessor: SyncUniModulesFilePreprocessor
}
) {
// 初始化编译器
await uniXCompiler.init()
// 同步资源
await syncUniModuleFilesByCompiler(
platform,
uniXCompiler,
pluginDir,
preprocessor
)
// 添加入口
const indexFileName = resolveTscUniModuleIndexFileName(platform, pluginDir)
if (indexFileName) {
await uniXCompiler.addRootFile(indexFileName)
}
const userRootFiles =
typeof rootFiles === 'function' ? rootFiles(platform) : rootFiles
if (userRootFiles && userRootFiles.length) {
await uniXCompiler.addRootFiles(userRootFiles)
}
await uniXCompiler.close()
}
export async function syncUniModuleFilesByCompiler(
platform: UniXCompilerPlatform,
compiler: UniXCompiler,
pluginDir: string,
preprocessor: SyncUniModulesFilePreprocessor
) {
const start = Date.now()
const inputDir = process.env.UNI_INPUT_DIR
const outputPluginDir = resolveOutputPluginDir(platform, inputDir, pluginDir)
const uvueOutputPluginDir = resolveUVueOutputPluginDir(
platform,
inputDir,
pluginDir
)
// 目前每次编译,都全量比对同步uni_modules目录下的文件,不然还要 watch dir
const files = await syncUniModulesFiles(
platform,
pluginDir,
outputPluginDir,
true,
preprocessor
)
const staticFiles = await syncUniModuleStaticFiles(
pluginDir,
uvueOutputPluginDir,
preprocessor
)
if (staticFiles.length) {
files.push(...staticFiles)
}
// copy vue files
const vueFiles = await syncUniModuleVueFiles(
pluginDir,
uvueOutputPluginDir,
preprocessor
)
if (vueFiles.length) {
// 如果有组件,那将 uts 文件 copy 到 .uvue 目录下,避免 tsc 不 emit 相关的 uts 文件
// 如果 tsc emit 了,那就会再次覆盖
await syncUniModulesFiles(
platform,
pluginDir,
uvueOutputPluginDir,
false,
preprocessor
)
compiler.debug(
`${path.basename(pluginDir)} sync vue files(${vueFiles.length})`
)
files.push(...vueFiles)
}
// 如果是 customElements,且没有utssdk入口文件,需要自动生成一个
const customElementsDir = path.resolve(pluginDir, 'customElements')
if (fs.existsSync(customElementsDir)) {
const customElements = resolveCustomElements(customElementsDir)
if (customElements.length) {
const pluginId = path.basename(pluginDir)
const customElementsCodes = customElements.map((name) => {
if (platform === 'app-harmony') {
// 鸿蒙不需要,在入口 index.generated.ets 中 define 了
return `export * from '@/uni_modules/${pluginId}/customElements/${name}/${name}.uts'`
} else {
// 自动生成 customElements.define 代码,rust 那里会根据 define 来生成注册代码
const codes: string[] = []
const source = `@/uni_modules/${pluginId}/customElements/${name}/${name}.uts`
const className = capitalize(camelize(name))
const elementClassName = `${className}Element`
codes.push(`import { ${elementClassName} } from '${source}'`)
codes.push(
`customElements.define('${name.replace(
'uni-',
''
)}', ${elementClassName})`
)
codes.push(`export * from '${source}'`)
return codes.join('\n')
}
})
const indexFileName = resolveTscUniModuleIndexFileName(
platform,
pluginDir
)
if (!indexFileName) {
const indexFileName = path.resolve(
resolveOutputPluginDir(
platform,
process.env.UNI_INPUT_DIR,
pluginDir
),
`utssdk/${platform}/index.uts.ts`
)
fs.outputFileSync(indexFileName, customElementsCodes.join('\n'))
} else {
const indexFileContent = fs.readFileSync(indexFileName, 'utf-8')
customElementsCodes.forEach((code) => {
if (!indexFileContent.includes(code)) {
fs.appendFileSync(indexFileName, '\n' + code)
}
})
}
}
}
compiler.debug(
`${path.basename(pluginDir)} sync files(${files.length})`,
Date.now() - start
)
}
const isDir = (path: string) => {
const stat = fs.lstatSync(path)
if (stat.isDirectory()) {
return true
} else if (stat.isSymbolicLink()) {
return fs.lstatSync(fs.realpathSync(path)).isDirectory()
}
return false
}
function resolveCustomElements(customElementsDir: string) {
const pluginDir = path.resolve(customElementsDir, '..')
if (!isCustomElementsSupported(pluginDir)) {
return []
}
const customElements: string[] = []
fs.readdirSync(customElementsDir).forEach((name) => {
const folder = path.resolve(customElementsDir, name)
if (!isDir(folder)) {
return
}
const files = fs.readdirSync(folder)
// 读取文件夹文件列表,比对文件名(fs.existsSync在大小写不敏感的系统会匹配不准确)
// customElements 的文件名是 uts 后缀
const ext = '.uts'
if (files.includes(name + ext)) {
customElements.push(name)
}
})
return customElements
}
function resolveUniModuleGlobs() {
const extname = `.{uts,ts,json}`
const globs = [
`*.uts`,
`customElements/**/*${extname}`,
// test-uts/common/**/*
`common/**/*${extname}`,
`utssdk/**/*${extname}`,
// 不copy components目录了,不单独编译,启用vite走完整流程编译
// `components/**/*`,
]
return globs
}
function resolveUniModuleIgnoreGlobs(platform: UniXCompilerPlatform) {
const globs = [
`utssdk/app-android/config.json`,
`utssdk/app-ios/config.json`,
`utssdk/web/**/*`,
`utssdk/mp-*/**/*`,
]
if (platform === 'app-android' || platform === 'app-ios') {
globs.push(`utssdk/app-harmony/**/*`)
}
if (platform === 'app-harmony') {
globs.push(`utssdk/app-android/**/*`)
globs.push(`utssdk/app-ios/**/*`)
}
return globs
}
function resolveUniModuleVueGlobs() {
const extname = `.{vue,uvue}`
const globs = [
`utssdk/app-android/**/*${extname}`,
`utssdk/app-ios/**/*${extname}`,
]
return globs
}
async function syncUniModuleStaticFiles(
pluginDir: string,
outputPluginDir: string,
preprocessor: SyncUniModulesFilePreprocessor
) {
return fg(`static/**/*`, {
cwd: pluginDir,
absolute: false,
}).then((files) => {
return Promise.all(
files.map((fileName) =>
syncUniModulesFile(
fileName,
pluginDir,
outputPluginDir,
false,
preprocessor
).then(() => fileName)
)
)
})
}
async function syncUniModuleVueFiles(
pluginDir: string,
outputPluginDir: string,
preprocessor: SyncUniModulesFilePreprocessor
) {
return fg(resolveUniModuleVueGlobs(), {
cwd: pluginDir,
absolute: false,
}).then((files) => {
return Promise.all(
files.map((fileName) =>
syncUniModulesFile(
fileName,
pluginDir,
outputPluginDir,
false,
preprocessor
).then(() => fileName)
)
)
})
}
async function syncUniModulesFiles(
platform: UniXCompilerPlatform,
pluginDir: string,
outputPluginDir: string,
rename: boolean,
preprocessor: SyncUniModulesFilePreprocessor
) {
return fg(resolveUniModuleGlobs(), {
cwd: pluginDir,
absolute: false,
ignore: resolveUniModuleIgnoreGlobs(platform),
}).then((files) => {
return Promise.all(
files.map((fileName) =>
syncUniModulesFile(
fileName,
pluginDir,
outputPluginDir,
rename,
preprocessor
).then(() => fileName)
)
)
})
}
export type SyncUniModulesFilePreprocessor = (
code: string,
fileName: string
) => Promise<string>
async function syncUniModulesFile(
relativeFileName: string,
pluginDir: string,
outputPluginDir: string,
rename: boolean,
preprocessor: SyncUniModulesFilePreprocessor
) {
const src = path.resolve(pluginDir, relativeFileName)
if (rename) {
const extname = path.extname(relativeFileName)
if (['.uts', '.json', '.vue', '.uvue'].includes(extname)) {
// test.uts => test.uts.ts
// test.json => test.json.ts
return writeFile(
src,
path.resolve(outputPluginDir, relativeFileName + '.ts'),
preprocessor
)
}
}
return copyFile(src, path.resolve(outputPluginDir, relativeFileName))
}
const utsModuleFileCaches = new Map<string, number>()
async function writeFile(
src: string,
dest: string,
preprocessor: SyncUniModulesFilePreprocessor
) {
const stat = await fs.stat(src)
const key = src + ',' + dest
if (utsModuleFileCaches.get(key) === stat.mtimeMs) {
return
}
utsModuleFileCaches.set(key, stat.mtimeMs)
return preprocessor(fs.readFileSync(src, 'utf-8'), src).then((content) =>
fs.outputFile(dest, content)
)
}
async function copyFile(src: string, dest: string) {
const stat = await fs.stat(src)
const key = src + ',' + dest
if (utsModuleFileCaches.get(key) === stat.mtimeMs) {
return
}
utsModuleFileCaches.set(key, stat.mtimeMs)
return fs.copy(src, dest, { overwrite: true })
}
export function resolveOutputPluginDir(
platform: UniXCompilerPlatform,
inputDir: string,
pluginDir: string
) {
return path.join(
process.env.UNI_APP_X_TSC_DIR,
platform,
path.relative(inputDir, pluginDir)
)
}
export function resolveUVueOutputPluginDir(
platform: UniXCompilerPlatform,
inputDir: string,
pluginDir: string
) {
return path.join(
process.env.UNI_APP_X_UVUE_DIR,
platform,
path.relative(inputDir, pluginDir)
)
}
export function resolveTscUniModuleIndexFileName(
platform: UniXCompilerPlatform,
pluginDir: string
) {
pluginDir = resolveOutputPluginDir(
platform,
process.env.UNI_INPUT_DIR,
pluginDir
)
let indexFileName = path.resolve(pluginDir, `utssdk/${platform}/index.uts.ts`)
if (fs.existsSync(indexFileName)) {
return indexFileName
}
indexFileName = path.resolve(pluginDir, 'utssdk/index.uts.ts')
if (fs.existsSync(indexFileName)) {
return indexFileName
}
}