Files
docx-js/src/file/paragraph/run/run.ts

165 lines
4.4 KiB
TypeScript
Raw Normal View History

2017-09-19 15:42:40 +01:00
// http://officeopenxml.com/WPtext.php
2019-08-06 21:37:33 +01:00
import { ShadingType } from "file/table";
import { XmlComponent } from "file/xml-components";
2017-09-19 15:42:40 +01:00
import { Break } from "./break";
import { Caps, SmallCaps } from "./caps";
import { Begin, End, Separate } from "./field";
import {
Bold,
BoldComplexScript,
Color,
DoubleStrike,
2019-08-05 13:42:45 +03:00
Highlight,
HighlightComplexScript,
Italics,
ItalicsComplexScript,
RightToLeft,
2019-08-05 13:42:45 +03:00
Shadow,
ShadowComplexScript,
Size,
SizeComplexScript,
Strike,
} from "./formatting";
2019-01-15 02:09:38 +00:00
import { NumberOfPages, Page } from "./page-number";
2017-09-19 15:42:40 +01:00
import { RunProperties } from "./properties";
import { RunFonts } from "./run-fonts";
import { SubScript, SuperScript } from "./script";
import { Style } from "./style";
import { Tab } from "./tab";
2019-06-17 01:51:57 +01:00
import { Underline, UnderlineType } from "./underline";
2017-09-19 15:42:40 +01:00
2019-06-17 01:51:57 +01:00
export interface IRunOptions {
readonly bold?: true;
readonly italics?: true;
readonly underline?: {
readonly color?: string;
readonly type?: UnderlineType;
};
readonly color?: string;
readonly size?: number;
readonly rightToLeft?: boolean;
readonly smallCaps?: boolean;
readonly allCaps?: boolean;
readonly strike?: boolean;
readonly doubleStrike?: boolean;
readonly subScript?: boolean;
readonly superScript?: boolean;
readonly style?: string;
readonly font?: {
readonly name: string;
readonly hint?: string;
};
2019-08-06 21:37:33 +01:00
readonly highlight?: string;
readonly shadow?: {
readonly type: ShadingType;
readonly fill: string;
readonly color: string;
};
2019-06-17 01:51:57 +01:00
}
2017-09-19 15:42:40 +01:00
export class Run extends XmlComponent {
protected readonly properties: RunProperties;
2017-09-19 15:42:40 +01:00
2019-06-17 01:51:57 +01:00
constructor(options: IRunOptions) {
2017-09-19 15:42:40 +01:00
super("w:r");
this.properties = new RunProperties();
this.root.push(this.properties);
2019-06-17 01:51:57 +01:00
if (options.bold) {
this.properties.push(new Bold());
this.properties.push(new BoldComplexScript());
}
2017-09-19 15:42:40 +01:00
2019-06-17 01:51:57 +01:00
if (options.italics) {
this.properties.push(new Italics());
this.properties.push(new ItalicsComplexScript());
}
2017-09-19 15:42:40 +01:00
2019-06-17 01:51:57 +01:00
if (options.underline) {
this.properties.push(new Underline(options.underline.type, options.underline.color));
}
2017-09-19 15:42:40 +01:00
2019-06-17 01:51:57 +01:00
if (options.color) {
this.properties.push(new Color(options.color));
}
2017-09-19 15:42:40 +01:00
2019-06-17 01:51:57 +01:00
if (options.size) {
this.properties.push(new Size(options.size));
this.properties.push(new SizeComplexScript(options.size));
}
2017-09-19 15:42:40 +01:00
2019-06-17 01:51:57 +01:00
if (options.rightToLeft) {
this.properties.push(new RightToLeft());
}
if (options.smallCaps) {
this.properties.push(new SmallCaps());
}
if (options.allCaps) {
this.properties.push(new Caps());
}
if (options.strike) {
this.properties.push(new Strike());
}
if (options.doubleStrike) {
this.properties.push(new DoubleStrike());
}
if (options.subScript) {
this.properties.push(new SubScript());
}
if (options.superScript) {
this.properties.push(new SuperScript());
}
if (options.style) {
this.properties.push(new Style(options.style));
}
if (options.font) {
this.properties.push(new RunFonts(options.font.name, options.font.hint));
}
2019-08-06 21:37:33 +01:00
if (options.highlight) {
this.properties.push(new Highlight(options.highlight));
this.properties.push(new HighlightComplexScript(options.highlight));
}
if (options.shadow) {
this.properties.push(new Shadow(options.shadow.type, options.shadow.fill, options.shadow.color));
this.properties.push(new ShadowComplexScript(options.shadow.type, options.shadow.fill, options.shadow.color));
}
2018-07-24 18:52:45 +03:00
}
2017-09-19 15:42:40 +01:00
public break(): Run {
this.root.splice(1, 0, new Break());
return this;
}
public tab(): Run {
this.root.splice(1, 0, new Tab());
return this;
}
2018-05-12 20:04:54 -04:00
public pageNumber(): Run {
this.root.push(new Begin());
this.root.push(new Page());
this.root.push(new Separate());
this.root.push(new End());
return this;
}
2019-01-15 02:09:38 +00:00
public numberOfTotalPages(): Run {
this.root.push(new Begin());
this.root.push(new NumberOfPages());
this.root.push(new Separate());
this.root.push(new End());
return this;
}
2017-09-19 15:42:40 +01:00
}