FIX: added legacy support for TabStop

This commit is contained in:
Ronit Ramdam BK
2022-10-14 17:01:41 +05:45
parent 629c586014
commit d053baef03

View File

@ -8,8 +8,11 @@ export interface TabStopDefinition {
}
export class TabStop extends XmlComponent {
public constructor(tabDefs: (TabStopDefinition[] | TabStopDefinition)) {
public constructor(tabDefs: (TabStopDefinition[] | TabStopDefinition | TabStopType), position?: number, leader?: LeaderType) {
super("w:tabs");
if (typeof tabDefs === "string"){
this.root.push(new TabStopItem(tabDefs, position, leader));
} else {
if (Array.isArray(tabDefs)) {
tabDefs.forEach((function(tabDef) {
this.root.push(new TabStopItem(tabDef));
@ -18,6 +21,7 @@ export class TabStop extends XmlComponent {
this.root.push(new TabStopItem(tabDefs));
}
}
}
}
export enum TabStopType {
@ -53,8 +57,19 @@ export class TabAttributes extends XmlAttributeComponent<{
}
export class TabStopItem extends XmlComponent {
public constructor(tabDef: TabStopDefinition) {
public constructor(tabDef: (TabStopDefinition | TabStopType), position?: number, leader?: LeaderType) {
super("w:tab");
if (typeof tabDef === "string") {
if (typeof position === "number")
this.root.push(
new TabAttributes({
val: tabDef,
pos: position,
leader,
}),
);
else throw Error("Undefined position: " + position);
} else {
this.root.push(
new TabAttributes({
val: tabDef.type,
@ -63,4 +78,5 @@ export class TabStopItem extends XmlComponent {
})
);
}
}
}