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

Added command parameter for generate command #694

Merged
merged 1 commit into from
Nov 14, 2024
Merged
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
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
"files.exclude": {
".yarn/*": true
},
"files.eol": "\n",
}
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,21 @@ cca --boilerplate telescope

Then, you'll navigate into `./your-project/packages/telescope` package for the next steps.

### Download with CLI
You can also use `telescope generate` command to generate package according to the prompt or terminal command params such as:
`telescope generate --access public --userfullname testname --useremail [email protected] --module-desc test --username salkfl --license MIT --module-name test --chain-name cosmos --use-npm-scoped`

The available options are:
`--userfullname` `--useremail` `--module-desc` `--username` `--module-name` `--chain-name` `--access` `--use-npm-scoped` `--license`

If some required options are missing, it will prompt to ask for the info.

To be noted, `--use-npm-scoped` only works when `--access` is `public`

### Download protos with CLI

The old ` telescope install ` command has been deprecated

You can use our CLI for download. To download the proto files, `download` command.
You can use our CLI to download protos by using `download` command.

```sh
telescope download
Expand Down
14 changes: 12 additions & 2 deletions packages/telescope/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,21 @@ cca --boilerplate telescope

Then, you'll navigate into `./your-project/packages/telescope` package for the next steps.

### Download with CLI
You can also use `telescope generate` command to generate package according to the prompt or terminal command params such as:
`telescope generate --access public --userfullname testname --useremail [email protected] --module-desc test --username salkfl --license MIT --module-name test --chain-name cosmos --use-npm-scoped`

The available options are:
`--userfullname` `--useremail` `--module-desc` `--username` `--module-name` `--chain-name` `--access` `--use-npm-scoped` `--license`

If some required options are missing, it will prompt to ask for the info.

To be noted, `--use-npm-scoped` only works when `--access` is `public`

### Download protos with CLI

The old ` telescope install ` command has been deprecated

You can use our CLI for download. To download the proto files, `download` command.
You can use our CLI to download protos by using `download` command.

```sh
telescope download
Expand Down
56 changes: 38 additions & 18 deletions packages/telescope/src/commands/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,34 @@ export default async argv => {
return shell.exit(1);
}

const { name } = await prompt([
let results: { [key: string]: any } = {};

const argsFromCommand = process.argv.slice(2);
argsFromCommand.forEach((arg, index) => {
if (arg.startsWith('--')) {
let key = arg.slice(2).replace(/-/g, '').toUpperCase();
key = `__${key}__`;
const value = argsFromCommand[index + 1] && !argsFromCommand[index + 1].startsWith('--') ? argsFromCommand[index + 1] : '';

if (Array.isArray(value)) {
results[key] = value.split(',');
} else {
results[key] = value;
}
}
});
const { name } = results.__MODULENAME__ ? { name: results.__MODULENAME__ } : await prompt([
{
type: 'string',
name: 'name',
message: 'Enter your new module name',
}
], argv);

shell.exec(`git clone ${repo} ${name}`);
shell.cd(name);

const questions = JSON.parse(fs.readFileSync(`.questions.json`));
let questions = JSON.parse(fs.readFileSync(`.questions.json`));
questions = questions.filter(question => !(question.name in results));

const fullname = shell
.exec('git config --global user.name', { silent: true })
Expand All @@ -46,10 +62,10 @@ export default async argv => {
{ allowCamelCase: true }
);

const results = await prompt(questions, args);
let scopedResults;
const answerResults = await prompt(questions, args);
results = { ...results, answerResults }

const license = await prompt(
const license = results.__LICENSE__ ?? await prompt(
[
{
name: '__LICENSE__',
Expand All @@ -62,18 +78,23 @@ export default async argv => {
[]
);

let scopedResults;
if (results.__ACCESS__ === 'public') {
scopedResults = await prompt(
[
{
type: 'confirm',
name: 'scoped',
message: 'use npm scopes?',
required: true,
},
],
[]
);
if (results.__USENPMSCOPED__ !== undefined) {
scopedResults = { scoped: true }
} else {
scopedResults = await prompt(
[
{
type: 'confirm',
name: 'scoped',
message: 'use npm scopes?',
required: true,
},
],
[]
);
}
}

const files = []
Expand All @@ -99,7 +120,6 @@ Proprietary and confidential`;
content = content.replace(new RegExp(key, 'g'), results[key]);
}
});

if (results.__ACCESS__ === 'public') {
if (scopedResults.scoped) {
content = content.replace(
Expand Down
1 change: 1 addition & 0 deletions packages/telescope/telescope-module-boilerplate
Submodule telescope-module-boilerplate added at 35d63d
Loading