Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(create-waku): fix cli and swap to clack + pico #1319

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions packages/create-waku/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@
"build": "tsup"
},
"devDependencies": {
"@clack/prompts": "^0.10.0",
"@types/fs-extra": "^11.0.4",
"@types/prompts": "^2.4.9",
"@types/tar": "^6.1.13",
"fs-extra": "^11.3.0",
"kolorist": "^1.8.0",
"prompts": "^2.4.2",
"picocolors": "^1.1.1",
"tar": "^7.4.3",
"tsup": "^8.4.0",
"update-check": "^1.5.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/create-waku/src/helpers/example-option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Readable } from 'node:stream';
import { pipeline } from 'node:stream/promises';
import type { ReadableStream } from 'stream/web';
import * as tar from 'tar';
import { red, cyan } from 'kolorist';
import { red, cyan } from 'picocolors';

type RepoInfo = {
username: string | undefined;
Expand Down
110 changes: 57 additions & 53 deletions packages/create-waku/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import path from 'node:path';
import { fileURLToPath } from 'node:url';
import { parseArgs } from 'node:util';
import fse from 'fs-extra/esm';
import { bold, green, red } from 'kolorist';
import { default as prompts } from 'prompts';
import { bold, green, red } from 'picocolors';
import * as p from '@clack/prompts';
import checkForUpdate from 'update-check';
import {
downloadAndExtract,
Expand Down Expand Up @@ -78,6 +78,11 @@ const { values } = parseArgs({
},
});

const onCancel = () => {
p.cancel(red('✖') + ' Operation cancelled');
process.exit(0);
};

async function doPrompts() {
const isValidPackageName = (projectName: string) =>
/^(?:@[a-z0-9-*~][a-z0-9-*._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$/.test(
Expand All @@ -102,57 +107,57 @@ async function doPrompts() {
let targetDir = values['project-name'] || defaultProjectName;

try {
const result = await prompts(
[
{
name: 'projectName',
type: values['project-name'] ? null : 'text',
message: 'Project Name',
initial: defaultProjectName,
onState: (state: any) => (targetDir = String(state.value).trim()),
},
{
name: 'shouldOverwrite',
type: () => (canSafelyOverwrite(targetDir) ? null : 'confirm'),
message: `${targetDir} is not empty. Remove existing files and continue?`,
},
{
name: 'overwriteChecker',
type: (values: any) => {
if (values === false) {
throw new Error(red('✖') + ' Operation cancelled');
}
return null;
},
},
{
name: 'packageName',
type: () => (isValidPackageName(targetDir) ? null : 'text'),
message: 'Package name',
initial: () => toValidPackageName(targetDir),
validate: (dir: string) =>
isValidPackageName(dir) || 'Invalid package.json name',
},
{
name: 'templateName',
type: values['choose'] ? 'select' : null,
message: 'Choose a starter template',
choices: templateNames.map((name) => ({
title: name,
value: name,
})),
},
],
const results = await p.group(
{
onCancel: () => {
throw new Error(red('✖') + ' Operation cancelled');
projectName: () =>
p.text({
defaultValue: targetDir,
message: 'Project Name',
placeholder: defaultProjectName,
}),
overwrites: ({ results }) => {
targetDir =
typeof results.projectName === 'string'
? results.projectName.trim()
: targetDir;
if (!canSafelyOverwrite(targetDir)) {
return p.confirm({
message: `would you like to overwrite ${results.projectName}?`,
});
}
return Promise.resolve(true);
},
checkOverwrites: ({ results }) => {
if (!results.overwrites) {
p.cancel(red('✖') + ' Operation cancelled');
}
return Promise.resolve(true);
},
packageName: () =>
p.text({
message: 'Package name',
validate: (dir: string) => {
if (!isValidPackageName(dir)) {
return 'Invalid package.json name';
}
},
}),
templateName: () =>
p.select({
message: 'Choose a starter template',
options: templateNames.map((name) => ({
label: name,
value: name,
})),
}),
},
{ onCancel },
);

return {
...result,
packageName: result.packageName ?? toValidPackageName(targetDir),
templateName: result.templateName ?? values.template ?? templateNames[0],
...results,
packageName: results.packageName ?? toValidPackageName(targetDir),
templateName: results.templateName ?? values.template ?? templateNames[0],
targetDir,
};
} catch (err) {
Expand Down Expand Up @@ -197,15 +202,14 @@ async function init() {

const exampleOption = await parseExampleOption(values.example);

const { packageName, templateName, shouldOverwrite, targetDir } =
await doPrompts();
const { packageName, templateName, targetDir } = await doPrompts();
const root = path.resolve(targetDir);

console.log('Setting up project...');

if (shouldOverwrite) {
fse.emptyDirSync(root);
} else if (!existsSync(root)) {
// doPrompts would exit if the dir exists and overwrite is false
fse.emptyDirSync(root);
if (!existsSync(root)) {
await fsPromises.mkdir(root, { recursive: true });
}

Expand Down
55 changes: 23 additions & 32 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading