forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocTableRow.ts
More file actions
67 lines (56 loc) · 1.66 KB
/
DocTableRow.ts
File metadata and controls
67 lines (56 loc) · 1.66 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
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import {
IDocNodeParameters,
DocNode,
DocPlainText
} from '@microsoft/tsdoc';
import { CustomDocNodeKind } from './CustomDocNodeKind';
import { DocTableCell } from './DocTableCell';
/**
* Constructor parameters for {@link DocTableRow}.
*/
export interface IDocTableRowParameters extends IDocNodeParameters {
}
/**
* Represents table row, similar to an HTML `<tr>` element.
*/
export class DocTableRow extends DocNode {
private readonly _cells: DocTableCell[];
public constructor(parameters: IDocTableRowParameters, cells?: ReadonlyArray<DocTableCell>) {
super(parameters);
this._cells = [];
if (cells) {
for (const cell of cells) {
this.addCell(cell);
}
}
}
/** @override */
public get kind(): string {
return CustomDocNodeKind.TableRow;
}
public get cells(): ReadonlyArray<DocTableCell> {
return this._cells;
}
public addCell(cell: DocTableCell): void {
this._cells.push(cell);
}
public createAndAddCell(): DocTableCell {
const newCell: DocTableCell = new DocTableCell({ configuration: this.configuration });
this.addCell(newCell);
return newCell;
}
public addPlainTextCell(cellContent: string): DocTableCell {
const cell: DocTableCell = this.createAndAddCell();
cell.content.appendNodeInParagraph(new DocPlainText({
configuration: this.configuration,
text: cellContent
}));
return cell;
}
/** @override */
protected onGetChildNodes(): ReadonlyArray<DocNode | undefined> {
return this._cells;
}
}