/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
adev/shared-docs/pipeline/api-gen/rendering/templates/cli-reference.tsx
79 строк
3 KB
SkyZeroZx
docs(docs-infra): replace non-interactive buttons with spans
23 мар 2026, 20:24
23 мар 2026, 20:24
ad3991c
Код
Авторство
О чём код?
/*! * @license * Copyright Google LLC 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.dev/license */ import {Fragment, h} from 'preact'; import {CliCommandRenderable} from '../entities/renderables.mjs'; import {REFERENCE_MEMBERS} from '../styling/css-classes.mjs'; import {CliCard} from './cli-card'; import {HeaderCli} from './header-cli'; import {RawHtml} from './raw-html'; import {SectionHeading} from './section-heading'; /** Component to render a CLI command reference document. */ export function CliCommandReference(entry: CliCommandRenderable) { return ( <div className="docs-cli"> <div className="docs-reference-cli-content"> <HeaderCli command={entry} /> {[entry.name, ...entry.aliases].map((command) => ( <div class="docs-code docs-reference-cli-toc"> <pre class="docs-mini-scroll-track"> <code> <div className={'shiki line cli'}> ng {commandName(entry, command)} {entry.argumentsLabel && ( <span member-id={'Arguments'} className="shiki-ln-line-argument"> {entry.argumentsLabel} </span> )} {entry.optionsLabel && ( <span member-id={'Options'} className="shiki-ln-line-option"> {entry.optionsLabel} </span> )} </div> </code> </pre> </div> ))} <RawHtml value={entry.htmlDescription} /> {entry.subcommands && entry.subcommands?.length > 0 ? ( <> <h3>Sub-commands</h3> <p>This command has the following sub-commands</p> <ul> {entry.subcommands.map((subcommand) => ( <li> <a href={`cli/${entry.name}/${subcommand.name}`}>{subcommand.name}</a> </li> ))} </ul> </> ) : ( <></> )} </div> <div className={REFERENCE_MEMBERS}> {entry.cards.map((card) => ( <> <SectionHeading name={card.type} /> <CliCard card={card} /> </> ))} </div> </div> ); } function commandName(entry: CliCommandRenderable, command: string) { if (entry.parentCommand?.name) { return `${entry.parentCommand?.name} ${command}`; } else { return command; } }