Improve astro info
command (#8327)
* feat(astro): improve info command * chore: update browser field
This commit is contained in:
parent
7a894eec3e
commit
5f3a44aeef
3 changed files with 90 additions and 37 deletions
5
.changeset/eight-zebras-rest.md
Normal file
5
.changeset/eight-zebras-rest.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Improve `astro info` command formatting, allow users to copy info automatically
|
6
.github/ISSUE_TEMPLATE/---01-bug-report.yml
vendored
6
.github/ISSUE_TEMPLATE/---01-bug-report.yml
vendored
|
@ -14,7 +14,7 @@ body:
|
|||
- type: textarea
|
||||
id: astro-info
|
||||
attributes:
|
||||
label: Astro info
|
||||
label: Astro Info
|
||||
description: Run the command `astro info` in your terminal and paste the output here. Please review the data before submitting in case there is any sensitive information you don't want to share.
|
||||
render: block
|
||||
validations:
|
||||
|
@ -22,10 +22,8 @@ body:
|
|||
- type: input
|
||||
id: browser
|
||||
attributes:
|
||||
label: What browser are you using?
|
||||
label: If this issue only occurs in one browser, which browser is a problem?
|
||||
placeholder: Chrome, Firefox, Safari
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: bug-description
|
||||
attributes:
|
||||
|
|
|
@ -1,50 +1,100 @@
|
|||
/* eslint-disable no-console */
|
||||
import type yargs from 'yargs-parser';
|
||||
import * as colors from 'kleur/colors';
|
||||
import { arch, platform } from 'node:os';
|
||||
import whichPm from 'which-pm';
|
||||
import type yargs from 'yargs-parser';
|
||||
import prompts from 'prompts';
|
||||
import { resolveConfig } from '../../core/config/index.js';
|
||||
import { ASTRO_VERSION } from '../../core/constants.js';
|
||||
import { flagsToAstroInlineConfig } from '../flags.js';
|
||||
import { execSync } from 'node:child_process';
|
||||
|
||||
interface InfoOptions {
|
||||
flags: yargs.Arguments;
|
||||
}
|
||||
|
||||
export async function printInfo({ flags }: InfoOptions) {
|
||||
const rows: Array<[string, string | string[]]> = [
|
||||
['Astro', `v${ASTRO_VERSION}`],
|
||||
['Node', process.version],
|
||||
['System', getSystem()],
|
||||
['Package Manager', getPackageManager()],
|
||||
]
|
||||
|
||||
const inlineConfig = flagsToAstroInlineConfig(flags);
|
||||
const packageManager = await whichPm(process.cwd());
|
||||
let adapter = "Couldn't determine.";
|
||||
let integrations = [];
|
||||
|
||||
const MAX_PADDING = 25;
|
||||
function printRow(label: string, value: string) {
|
||||
const padding = MAX_PADDING - label.length;
|
||||
console.log(`${colors.bold(label)}` + ' '.repeat(padding) + `${colors.green(value)}`);
|
||||
}
|
||||
|
||||
try {
|
||||
const { userConfig } = await resolveConfig(inlineConfig, 'info');
|
||||
if (userConfig.adapter?.name) {
|
||||
adapter = userConfig.adapter.name;
|
||||
}
|
||||
if (userConfig.integrations) {
|
||||
integrations = (userConfig?.integrations ?? [])
|
||||
rows.push(['Output', userConfig.output ?? 'static'])
|
||||
rows.push(['Adapter', userConfig.adapter?.name ?? 'none'])
|
||||
const integrations = (userConfig?.integrations ?? [])
|
||||
.filter(Boolean)
|
||||
.flat()
|
||||
.map((i: any) => i?.name);
|
||||
.map((i: any) => i?.name)
|
||||
.filter(Boolean);
|
||||
rows.push(['Integrations', integrations.length > 0 ? integrations : 'none']);
|
||||
} catch {}
|
||||
|
||||
let output = '';
|
||||
for (const [label, value] of rows) {
|
||||
output += printRow(label, value);
|
||||
}
|
||||
} catch (_e) {}
|
||||
|
||||
await copyToClipboard(output.trim());
|
||||
}
|
||||
|
||||
const SUPPORTED_SYSTEM = new Set(['darwin', 'win32']);
|
||||
async function copyToClipboard(text: string) {
|
||||
const system = platform();
|
||||
if (!SUPPORTED_SYSTEM.has(system)) return;
|
||||
|
||||
console.log();
|
||||
const packageManagerName = packageManager?.name ?? "Couldn't determine.";
|
||||
printRow('Astro version', `v${ASTRO_VERSION}`);
|
||||
printRow('Package manager', packageManagerName);
|
||||
printRow('Platform', platform());
|
||||
printRow('Architecture', arch());
|
||||
printRow('Adapter', adapter);
|
||||
let integrationsString = "None or couldn't determine.";
|
||||
if (integrations.length > 0) {
|
||||
integrationsString = integrations.join(', ');
|
||||
const { shouldCopy } = await prompts({
|
||||
type: 'confirm',
|
||||
name: 'shouldCopy',
|
||||
message: 'Copy to clipboard?',
|
||||
initial: true,
|
||||
})
|
||||
if (!shouldCopy) return;
|
||||
const command = system === 'darwin' ? 'pbcopy' : 'clip';
|
||||
try {
|
||||
execSync(`echo ${JSON.stringify(text.trim())} | ${command}`, { encoding: 'utf8', stdio: 'ignore' });
|
||||
} catch (e) {
|
||||
console.error(colors.red(`\nSorry, something went wrong!`) + ` Please copy the text above manually.`);
|
||||
}
|
||||
printRow('Integrations', integrationsString);
|
||||
}
|
||||
|
||||
const PLATFORM_TO_OS: Partial<Record<ReturnType<typeof platform>, string>> = {
|
||||
darwin: 'macOS',
|
||||
win32: 'Windows',
|
||||
linux: 'Linux',
|
||||
}
|
||||
|
||||
function getSystem() {
|
||||
const system = PLATFORM_TO_OS[platform()] ?? platform();
|
||||
return `${system} (${arch()})`;
|
||||
}
|
||||
|
||||
function getPackageManager() {
|
||||
if (!process.env.npm_config_user_agent) {
|
||||
return 'unknown'
|
||||
}
|
||||
const specifier = process.env.npm_config_user_agent.split(' ')[0];
|
||||
const name = specifier.substring(0, specifier.lastIndexOf('/'));
|
||||
return name === 'npminstall' ? 'cnpm' : name;
|
||||
}
|
||||
|
||||
const MAX_PADDING = 25;
|
||||
function printRow(label: string, value: string | string[]) {
|
||||
const padding = MAX_PADDING - label.length;
|
||||
const [first, ...rest] = Array.isArray(value) ? value : [value];
|
||||
let plaintext = `${label}${' '.repeat(padding)}${first}`;
|
||||
let richtext = `${colors.bold(label)}${' '.repeat(padding)}${colors.green(first)}`;
|
||||
if (rest.length > 0) {
|
||||
for (const entry of rest) {
|
||||
plaintext += `\n${' '.repeat(MAX_PADDING)}${entry}`;
|
||||
richtext += `\n${' '.repeat(MAX_PADDING)}${colors.green(entry)}`
|
||||
}
|
||||
}
|
||||
plaintext += '\n';
|
||||
console.log(richtext);
|
||||
return plaintext;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue