mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 03:23:57 +08:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import { Command } from '../models/command';
|
|
const opn = require('opn');
|
|
|
|
export interface Options {
|
|
keyword: string;
|
|
search?: boolean;
|
|
}
|
|
|
|
export class DocCommand extends Command {
|
|
public readonly name = 'doc';
|
|
public readonly description = 'Opens the official Angular API documentation for a given keyword.';
|
|
public static aliases = ['d'];
|
|
public readonly arguments = ['keyword'];
|
|
public readonly options = [
|
|
{
|
|
name: 'search',
|
|
aliases: ['s'],
|
|
type: Boolean,
|
|
default: false,
|
|
description: 'Search whole angular.io instead of just api.',
|
|
},
|
|
];
|
|
|
|
public validate(options: Options) {
|
|
if (!options.keyword) {
|
|
this.logger.error(`keyword argument is required.`);
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public async run(options: Options) {
|
|
let searchUrl = `https://angular.io/api?query=${options.keyword}`;
|
|
if (options.search) {
|
|
searchUrl = `https://www.google.com/search?q=site%3Aangular.io+${options.keyword}`;
|
|
}
|
|
|
|
return opn(searchUrl);
|
|
}
|
|
}
|