Hans a0978b1db3 refactor: fix types to remove any
require() returns any so we were missing some typing errors.
2018-07-11 13:35:35 -07:00

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);
}
}