mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
102 lines
3.4 KiB
TypeScript
102 lines
3.4 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 {h, JSX} from 'preact';
|
|
import {FunctionEntryRenderable, InitializerApiFunctionRenderable} from '../entities/renderables';
|
|
import {HeaderApi} from './header-api';
|
|
import {TabApi} from './tab-api';
|
|
import {TabUsageNotes} from './tab-usage-notes';
|
|
import {
|
|
REFERENCE_MEMBERS,
|
|
REFERENCE_MEMBERS_CONTAINER,
|
|
REFERENCE_MEMBER_CARD,
|
|
REFERENCE_MEMBER_CARD_BODY,
|
|
} from '../styling/css-classes';
|
|
import {printInitializerFunctionSignatureLine} from '../transforms/code-transforms';
|
|
import {HighlightTypeScript} from './highlight-ts';
|
|
import {ClassMethodInfo} from './class-method-info';
|
|
import {getFunctionRenderable} from '../transforms/function-transforms';
|
|
|
|
/** Component to render a constant API reference document. */
|
|
export function InitializerApiFunction(entry: InitializerApiFunctionRenderable) {
|
|
// Use signatures as header if there are multiple signatures.
|
|
const printSignaturesAsHeader =
|
|
entry.callFunction.signatures.length > 1 ||
|
|
entry.subFunctions.some((sub) => sub.signatures.length > 1);
|
|
|
|
// If the initializer API function is just a function, checked by existence of an
|
|
// implementation, and the descriptions of the "API" and the first function match,
|
|
// avoid rendering it another time in the member card.
|
|
if (
|
|
entry.callFunction.signatures.length === 1 &&
|
|
entry.callFunction.implementation !== null &&
|
|
entry.description === entry.callFunction.signatures[0].description
|
|
) {
|
|
entry.callFunction.signatures[0].description = '';
|
|
}
|
|
|
|
const signatureCard = (name: string, signature: FunctionEntryRenderable, opts: {id: string}) => {
|
|
return (
|
|
<div class={REFERENCE_MEMBER_CARD} id={opts.id} tabIndex={-1}>
|
|
<header>
|
|
{printSignaturesAsHeader ? (
|
|
<code>
|
|
<HighlightTypeScript
|
|
code={printInitializerFunctionSignatureLine(
|
|
name,
|
|
signature,
|
|
// Always omit types in signature headers, to keep them short.
|
|
true,
|
|
)}
|
|
/>
|
|
</code>
|
|
) : (
|
|
<h3>{`${name}()`}</h3>
|
|
)}
|
|
</header>
|
|
<div class={REFERENCE_MEMBER_CARD_BODY}>
|
|
<ClassMethodInfo entry={signature} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div class="api">
|
|
<HeaderApi entry={entry} showFullDescription={true} />
|
|
<TabApi entry={entry} />
|
|
<TabUsageNotes entry={entry} />
|
|
|
|
<div class={REFERENCE_MEMBERS_CONTAINER}>
|
|
<div class={REFERENCE_MEMBERS}>
|
|
{entry.callFunction.signatures.map((s, i) =>
|
|
signatureCard(s.name, getFunctionRenderable(s, entry.moduleName), {
|
|
id: `${s.name}_${i}`,
|
|
}),
|
|
)}
|
|
|
|
{entry.subFunctions.reduce(
|
|
(elements, subFunction) => [
|
|
...elements,
|
|
...subFunction.signatures.map((s, i) =>
|
|
signatureCard(
|
|
`${entry.name}.${s.name}`,
|
|
getFunctionRenderable(s, entry.moduleName),
|
|
{
|
|
id: `${entry.name}_${s.name}_${i}`,
|
|
},
|
|
),
|
|
),
|
|
],
|
|
[] as JSX.Element[],
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|