forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocTable.ts
More file actions
80 lines (67 loc) · 2.07 KB
/
DocTable.ts
File metadata and controls
80 lines (67 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import {
IDocNodeParameters,
DocNode
} from '@microsoft/tsdoc';
import { CustomDocNodeKind } from './CustomDocNodeKind';
import { DocTableRow } from './DocTableRow';
import { DocTableCell } from './DocTableCell';
/**
* Constructor parameters for {@link DocTable}.
*/
export interface IDocTableParameters extends IDocNodeParameters {
headerCells?: ReadonlyArray<DocTableCell>;
headerTitles?: string[];
}
/**
* Represents table, similar to an HTML `<table>` element.
*/
export class DocTable extends DocNode {
public readonly header: DocTableRow;
private _rows: DocTableRow[];
public constructor(parameters: IDocTableParameters, rows?: ReadonlyArray<DocTableRow>) {
super(parameters);
this.header = new DocTableRow({ configuration: this.configuration });
this._rows = [];
if (parameters) {
if (parameters.headerTitles) {
if (parameters.headerCells) {
throw new Error('IDocTableParameters.headerCells and IDocTableParameters.headerTitles'
+ ' cannot both be specified');
}
for (const cellText of parameters.headerTitles) {
this.header.addPlainTextCell(cellText);
}
} else if (parameters.headerCells) {
for (const cell of parameters.headerCells) {
this.header.addCell(cell);
}
}
}
if (rows) {
for (const row of rows) {
this.addRow(row);
}
}
}
/** @override */
public get kind(): string {
return CustomDocNodeKind.Table;
}
public get rows(): ReadonlyArray<DocTableRow> {
return this._rows;
}
public addRow(row: DocTableRow): void {
this._rows.push(row);
}
public createAndAddRow(): DocTableRow {
const row: DocTableRow = new DocTableRow({ configuration: this.configuration });
this.addRow(row);
return row;
}
/** @override */
protected onGetChildNodes(): ReadonlyArray<DocNode | undefined> {
return [this.header, ...this._rows];
}
}