mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
With this change non-overloaded functions also show the params + return type in a dedicated block.
(cherry picked from commit 872853fbcb)
103 lines
3.2 KiB
TypeScript
103 lines
3.2 KiB
TypeScript
/*!
|
|
* @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 {
|
|
FunctionEntryRenderable,
|
|
FunctionSignatureMetadataRenderable,
|
|
} from '../entities/renderables.mjs';
|
|
import {
|
|
API_REFERENCE_CONTAINER,
|
|
REFERENCE_MEMBERS,
|
|
REFERENCE_MEMBER_CARD,
|
|
REFERENCE_MEMBER_CARD_BODY,
|
|
REFERENCE_MEMBER_CARD_HEADER,
|
|
} from '../styling/css-classes.mjs';
|
|
import {printInitializerFunctionSignatureLine} from '../transforms/code-transforms.mjs';
|
|
import {getFunctionMetadataRenderable} from '../transforms/function-transforms.mjs';
|
|
import {ClassMethodInfo} from './class-method-info';
|
|
import {CodeSymbol} from './code-symbols';
|
|
import {DeprecationWarning} from './deprecation-warning';
|
|
import {HeaderApi} from './header-api';
|
|
import {HighlightTypeScript} from './highlight-ts';
|
|
import {SectionApi} from './section-api';
|
|
import {SectionDescription} from './section-description';
|
|
import {SectionUsageNotes} from './section-usage-notes';
|
|
|
|
export const signatureCard = (
|
|
name: string,
|
|
signature: FunctionSignatureMetadataRenderable,
|
|
opts: {
|
|
id: string;
|
|
printSignaturesAsHeader: boolean;
|
|
hideUsageNotes?: boolean;
|
|
hideHeader?: boolean;
|
|
hideDescription?: boolean;
|
|
},
|
|
) => {
|
|
return (
|
|
<div id={opts.id} class={REFERENCE_MEMBER_CARD}>
|
|
{!opts.hideHeader && (
|
|
<header class={REFERENCE_MEMBER_CARD_HEADER}>
|
|
{opts.printSignaturesAsHeader ? (
|
|
<HighlightTypeScript
|
|
code={printInitializerFunctionSignatureLine(
|
|
name,
|
|
signature,
|
|
// Always omit types in signature headers, to keep them short.
|
|
true,
|
|
)}
|
|
/>
|
|
) : (
|
|
<>
|
|
<h3>{name}</h3>
|
|
<div>
|
|
<CodeSymbol code={signature.returnType} />
|
|
</div>
|
|
</>
|
|
)}
|
|
</header>
|
|
)}
|
|
<div class={REFERENCE_MEMBER_CARD_BODY}>
|
|
<ClassMethodInfo
|
|
entry={signature}
|
|
hideUsageNotes={opts.hideUsageNotes}
|
|
hideDescription={opts.hideDescription}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
/** Component to render a function API reference document. */
|
|
export function FunctionReference(entry: FunctionEntryRenderable) {
|
|
const printSignaturesAsHeader = entry.signatures.length > 1;
|
|
const hideSignatureCardDescription = !printSignaturesAsHeader;
|
|
|
|
return (
|
|
<div className={API_REFERENCE_CONTAINER}>
|
|
<HeaderApi entry={entry} />
|
|
<DeprecationWarning entry={entry} />
|
|
<SectionApi entry={entry} />
|
|
<div className={REFERENCE_MEMBERS}>
|
|
{entry.signatures.map((s, i) =>
|
|
signatureCard(s.name, getFunctionMetadataRenderable(s, entry.moduleName, entry.repo), {
|
|
id: `${s.name}_${i}`,
|
|
printSignaturesAsHeader,
|
|
hideHeader: !printSignaturesAsHeader,
|
|
hideUsageNotes: hideSignatureCardDescription,
|
|
hideDescription: hideSignatureCardDescription,
|
|
}),
|
|
)}
|
|
</div>
|
|
|
|
<SectionDescription entry={entry} />
|
|
<SectionUsageNotes entry={entry} />
|
|
</div>
|
|
);
|
|
}
|