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

Astro add docs #2958

Merged
merged 11 commits into from
Apr 6, 2022
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
5 changes: 5 additions & 0 deletions .changeset/strange-avocados-double.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': patch
---

Add `astro docs` command which opens the Astro docs in your preferred browser.
15 changes: 12 additions & 3 deletions packages/astro/src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ import add from '../core/add/index.js';
import devServer from '../core/dev/index.js';
import preview from '../core/preview/index.js';
import { check } from './check.js';
import { openInBrowser } from './open.js';
import { loadConfig } from '../core/config.js';
import { printHelp, formatErrorMessage, formatConfigErrorMessage } from '../core/messages.js';
import { createSafeError } from '../core/util.js';

type Arguments = yargs.Arguments;
type CLICommand = 'help' | 'version' | 'add' | 'dev' | 'build' | 'preview' | 'reload' | 'check';
type CLICommand = 'help' | 'version' | 'add' | 'docs' | 'dev' | 'build' | 'preview' | 'reload' | 'check';

/** Display --help flag */
function printAstroHelp() {
Expand All @@ -26,6 +27,7 @@ function printAstroHelp() {
headline: 'Futuristic web development tool.',
commands: [
['add', 'Add an integration to your configuration.'],
['docs', 'Launch Astro\'s Doc site directly from the terminal. '],
['dev', 'Run Astro in development mode.'],
['build', 'Build a pre-compiled production-ready site.'],
['preview', 'Preview your build locally before deploying.'],
Expand Down Expand Up @@ -58,11 +60,10 @@ async function printVersion() {
function resolveCommand(flags: Arguments): CLICommand {
const cmd = flags._[2] as string;
if (cmd === 'add') return 'add';

if (flags.version) return 'version';
else if (flags.help) return 'help';
aFuzzyBear marked this conversation as resolved.
Show resolved Hide resolved

const supportedCommands = new Set(['dev', 'build', 'preview', 'check']);
const supportedCommands = new Set(['dev', 'build', 'preview', 'check', 'docs']);
if (supportedCommands.has(cmd)) {
return cmd as CLICommand;
}
Expand Down Expand Up @@ -145,6 +146,14 @@ export async function cli(args: string[]) {
}
}

case 'docs': {
try {
return await openInBrowser('https://docs.astro.build/')
} catch (err) {
return throwAndExit(err)
}
}

default: {
throw new Error(`Error running ${cmd}`);
}
Expand Down
32 changes: 32 additions & 0 deletions packages/astro/src/cli/open.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import type { ExecaChildProcess } from 'execa';
import { execa } from 'execa';

/**
* Credit: Azhar22
* @see https://github.com/azhar22k/ourl/blob/master/index.js
*/
const getPlatformSpecificCommand = (): [string]|[string, string[]] => {
const isGitPod = Boolean(process.env.GITPOD_REPO_ROOT);
const platform = isGitPod ? 'gitpod' : process.platform;

switch (platform) {
case 'android':
case 'linux':
return ['xdg-open'];
case 'darwin':
return ['open'];
case 'win32':
return ['cmd', ['/c', 'start']];
case 'gitpod':
return ['/ide/bin/remote-cli/gitpod-code', ['--openExternal']];
default:
throw new Error(
`It looks like your platform ("${platform}") isn't supported!\nTo view Astro's docs, please visit https://docs.astro.build`
);
}
};

export async function openInBrowser(url: string): Promise<ExecaChildProcess> {
const [command, args = []] = getPlatformSpecificCommand();
return execa(command, [...args, encodeURI(url)]);
};