-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.ts
More file actions
393 lines (325 loc) · 10.2 KB
/
index.ts
File metadata and controls
393 lines (325 loc) · 10.2 KB
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
#!/usr/bin/env node
import { execSync } from 'node:child_process';
import path from 'node:path';
import * as p from '@clack/prompts';
import { Command } from 'commander';
import fs from 'fs-extra';
import gradient from 'gradient-string';
import pc from 'picocolors';
import { fetchGitHubFolders } from './utils.js';
const repoUrl = 'https://github.com/lynx-community/cli.git';
function detectPackageManager(): string {
const userAgent = process.env.npm_config_user_agent || '';
if (userAgent.startsWith('yarn')) return 'yarn';
if (userAgent.startsWith('pnpm')) return 'pnpm';
if (userAgent.startsWith('bun')) return 'bun';
const execPath = process.env.npm_execpath || '';
if (execPath.includes('yarn')) return 'yarn';
if (execPath.includes('pnpm')) return 'pnpm';
if (execPath.includes('bun')) return 'bun';
return 'npm';
}
interface AppConfig {
name: string;
platforms: string[];
directory: string;
useTailwind: boolean;
useGit: boolean;
}
interface CLIOptions {
platforms?: string[];
directory?: string;
useTailwind?: boolean;
useGit?: boolean;
}
function toPascalCase(str: string): string {
return str
.replace(/[^a-zA-Z0-9]/g, ' ')
.replace(/\b\w/g, (letter) => letter.toUpperCase())
.replace(/\s/g, '');
}
function toValidJavaPackageName(str: string): string {
let packageName = str
.toLowerCase()
.replace(/[^a-z0-9]/g, '')
.replace(/^[0-9]+/, '');
if (!packageName || !/^[a-z]/.test(packageName)) {
packageName = `app${packageName}`;
}
return packageName;
}
async function replaceTemplateStrings(
projectPath: string,
projectName: string,
): Promise<void> {
const pascalName = toPascalCase(projectName);
const javaName = toValidJavaPackageName(projectName);
const replacements = [
[/HelloWorld/g, pascalName],
[/helloworld/g, javaName],
[/com\.helloworld/g, `com.${javaName}`],
[/Theme\.HelloWorld/g, `Theme.${pascalName}`],
] as const;
const files = (await getFilesRecursively(projectPath)).filter(isTextFile);
await Promise.all(
files.map(async (filePath) => {
try {
let content = await fs.readFile(filePath, 'utf8');
let changed = false;
for (const [pattern, replacement] of replacements) {
if (pattern.test(content)) {
content = content.replace(pattern, replacement);
changed = true;
}
}
if (changed) {
await fs.writeFile(filePath, content, 'utf8');
}
} catch {
// Skip files that can't be processed
}
}),
);
}
async function getFilesRecursively(dir: string): Promise<string[]> {
const files: string[] = [];
const items = await fs.readdir(dir, { withFileTypes: true });
for (const item of items) {
const fullPath = path.join(dir, item.name);
if (item.isDirectory()) {
files.push(...(await getFilesRecursively(fullPath)));
} else {
files.push(fullPath);
}
}
return files;
}
function isTextFile(filePath: string): boolean {
const binaryExts = [
'.png',
'.jpg',
'.jpeg',
'.gif',
'.webp',
'.jar',
'.aar',
'.so',
'.dylib',
'.dll',
'.zip',
'.tar',
'.gz',
'.mp3',
'.mp4',
'.pdf',
'.keystore',
];
return !binaryExts.includes(path.extname(filePath).toLowerCase());
}
async function renameTemplateFilesAndDirs(
projectPath: string,
projectName: string,
): Promise<void> {
const pascalName = toPascalCase(projectName);
const javaName = toValidJavaPackageName(projectName);
await renameJavaPackageDirectories(projectPath, javaName);
const items = (await getItemsToRename(projectPath)).sort(
(a, b) => b.split(path.sep).length - a.split(path.sep).length,
);
for (const itemPath of items) {
const newName = path.basename(itemPath).replace(/HelloWorld/g, pascalName);
const newPath = path.join(path.dirname(itemPath), newName);
if ((await fs.pathExists(itemPath)) && !(await fs.pathExists(newPath))) {
await fs.move(itemPath, newPath);
}
}
}
async function renameJavaPackageDirectories(
projectPath: string,
packageName: string,
): Promise<void> {
const javaPaths = [
'android/app/src/main/java',
'android/app/src/test/java',
'android/app/src/androidTest/java',
];
for (const javaPath of javaPaths) {
const fullPath = path.join(projectPath, javaPath);
if (await fs.pathExists(fullPath)) {
await renamePackageInDirectory(fullPath, packageName);
}
}
}
async function renamePackageInDirectory(
javaSourceDir: string,
newPackageName: string,
): Promise<void> {
const comPath = path.join(javaSourceDir, 'com');
if (!(await fs.pathExists(comPath))) return;
const oldPath = path.join(comPath, 'helloworld');
const newPath = path.join(comPath, newPackageName);
if ((await fs.pathExists(oldPath)) && !(await fs.pathExists(newPath))) {
await fs.move(oldPath, newPath);
}
}
async function getItemsToRename(dir: string): Promise<string[]> {
const items: string[] = [];
try {
const dirItems = await fs.readdir(dir, { withFileTypes: true });
for (const item of dirItems) {
const fullPath = path.join(dir, item.name);
items.push(fullPath);
if (item.isDirectory()) {
items.push(...(await getItemsToRename(fullPath)));
}
}
} catch {
// Skip unreadable directories
}
return items;
}
export async function createApp(): Promise<void> {
const brandGradient = gradient(['#ff6b9d', '#45b7d1']);
const title = pc.bold(`Create ${brandGradient('Lynx')} App`);
p.intro(title);
const program = new Command();
program
.name('create-lynx-app')
.description('Create a new Lynx application')
.version('0.1.0')
.argument('[project-name]', 'Name of the project')
.option('-p, --platforms <platforms...>', 'Platforms to include')
.option('-t, --tailwind', 'Use Tailwind CSS')
.option('-g, --git', 'Initialize Git repository')
.option('-d, --directory <directory>', 'Target directory')
.action(async (projectName?: string, options?: CLIOptions) => {
try {
const config = await gatherProjectInfo(projectName, options);
await scaffoldProject(config);
const packageManager = detectPackageManager();
const installCmd =
packageManager === 'yarn' ? 'yarn' : `${packageManager} install`;
const devCmd = `${packageManager} dev`;
p.outro(pc.cyan('Happy hacking!'));
console.log(pc.white(`Next steps:`));
console.log(pc.gray(` cd ${config.name}`));
console.log(pc.gray(` ${installCmd}`));
console.log(pc.gray(` ${devCmd}`));
} catch (error) {
if (error instanceof Error && error.message === 'cancelled') {
p.cancel('Operation cancelled.');
process.exit(0);
}
p.cancel(pc.red('❌ Error creating project: ' + error));
process.exit(1);
}
});
await program.parseAsync();
}
async function gatherProjectInfo(
projectName?: string,
options?: CLIOptions,
): Promise<AppConfig> {
let name = projectName;
let platforms = options?.platforms;
if (!name) {
const nameResult = await p.text({
message: 'What is your app named?',
placeholder: 'my-lynx-app',
validate: (value) => {
if (!value.trim()) return 'App name is required';
if (!/^[a-zA-Z0-9-_]+$/.test(value)) {
return 'App name should only contain letters, numbers, hyphens, and underscores';
}
},
});
if (p.isCancel(nameResult)) {
throw new Error('cancelled');
}
name = nameResult;
}
if (!platforms || platforms.length === 0) {
const platformsResult = await p.multiselect({
message: 'What platforms do you want to start with?',
options: [
{ value: 'ios', label: 'iOS' },
{ value: 'android', label: 'Android' },
// { value: 'harmonyos', label: 'HarmonyOS' },
],
initialValues: ['ios', 'android'],
required: true,
});
if (p.isCancel(platformsResult)) {
throw new Error('cancelled');
}
platforms = platformsResult as string[];
}
let useTailwind = options?.useTailwind;
if (useTailwind === undefined) {
const tailwindResult = await p.confirm({
message: 'Do you want to use Tailwind CSS?',
initialValue: false,
});
if (p.isCancel(tailwindResult)) {
throw new Error('cancelled');
}
useTailwind = tailwindResult;
}
let useGit = options?.useGit;
if (useGit === undefined) {
const gitResult = await p.confirm({
message: 'Do you want to initialize a Git repository?',
initialValue: false,
});
if (p.isCancel(gitResult)) {
throw new Error('cancelled');
}
useGit = gitResult;
}
return {
name: name as string,
platforms: platforms as string[],
directory: options?.directory || process.cwd(),
useTailwind,
useGit,
};
}
async function scaffoldProject(config: AppConfig): Promise<void> {
const targetPath = path.join(config.directory, config.name);
p.spinner({ indicator: 'dots' }).message('hello');
const spinner = p.spinner();
spinner.start(`Creating project in ${targetPath}`);
await fs.ensureDir(targetPath);
spinner.message('Adding platform-specific folders and templates...');
const fetchEntries: Array<{ repoPath: string; destPath?: string }> = [];
if (config.platforms.includes('android')) {
fetchEntries.push({
repoPath: 'packages/templates/android',
destPath: 'android',
});
}
if (config.platforms.includes('ios')) {
fetchEntries.push({
repoPath: 'packages/templates/apple',
destPath: 'apple',
});
}
fetchEntries.push({ repoPath: 'packages/templates/react', destPath: '' });
// Tailwind overlays react (so add it after react)
if (config.useTailwind) {
fetchEntries.push({
repoPath: 'packages/templates/react-tailwind',
destPath: '',
});
}
spinner.message('Fetching templates...');
await fetchGitHubFolders(repoUrl, fetchEntries, targetPath);
spinner.message('Configuring project files...');
await replaceTemplateStrings(targetPath, config.name);
await renameTemplateFilesAndDirs(targetPath, config.name);
if (config.useGit) {
spinner.message('Initializing Git repository...');
execSync('git init', { cwd: targetPath, stdio: 'ignore' });
}
spinner.stop('Project created successfully!');
}