Files
docx-js/src/file/document/document.ts

89 lines
4.4 KiB
TypeScript
Raw Normal View History

2017-09-19 15:36:41 +01:00
// http://officeopenxml.com/WPdocument.php
import { XmlComponent } from "file/xml-components";
import { ConcreteHyperlink, Paragraph } from "../paragraph";
2019-06-25 01:21:28 +01:00
import { Table } from "../table";
import { TableOfContents } from "../table-of-contents";
2017-09-19 15:36:41 +01:00
import { Body } from "./body";
import { DocumentAttributes } from "./document-attributes";
2020-10-27 01:54:40 +00:00
import { DocumentBackground, IDocumentBackgroundOptions } from "./document-background";
export interface IDocumentOptions {
2020-10-27 01:54:40 +00:00
readonly background: IDocumentBackgroundOptions;
}
2017-09-19 15:36:41 +01:00
// <xsd:element name="document" type="CT_Document"/>
//
// <xsd:complexType name="CT_Document">
// <xsd:complexContent>
// <xsd:extension base="CT_DocumentBase">
// <xsd:sequence>
// <xsd:element name="body" type="CT_Body" minOccurs="0" maxOccurs="1"/>
// </xsd:sequence>
// <xsd:attribute name="conformance" type="s:ST_ConformanceClass"/>
// <xsd:attribute ref="mc:Ignorable" use="optional" />
// </xsd:extension>
// </xsd:complexContent>
// </xsd:complexType>
//
// <xsd:complexType name="CT_DocumentBase">
// <xsd:sequence>
// <xsd:element name="background" type="CT_Background" minOccurs="0"/>
// </xsd:sequence>
// </xsd:complexType>
2017-09-19 15:36:41 +01:00
export class Document extends XmlComponent {
2018-01-29 01:55:25 +00:00
private readonly body: Body;
2017-09-19 15:36:41 +01:00
2020-10-27 01:54:40 +00:00
constructor(options: IDocumentOptions) {
2017-09-19 15:36:41 +01:00
super("w:document");
2018-01-23 01:33:12 +00:00
this.root.push(
new DocumentAttributes({
wpc: "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas",
mc: "http://schemas.openxmlformats.org/markup-compatibility/2006",
o: "urn:schemas-microsoft-com:office:office",
r: "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
m: "http://schemas.openxmlformats.org/officeDocument/2006/math",
v: "urn:schemas-microsoft-com:vml",
wp14: "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing",
wp: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing",
w10: "urn:schemas-microsoft-com:office:word",
w: "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
w14: "http://schemas.microsoft.com/office/word/2010/wordml",
w15: "http://schemas.microsoft.com/office/word/2012/wordml",
wpg: "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup",
wpi: "http://schemas.microsoft.com/office/word/2010/wordprocessingInk",
wne: "http://schemas.microsoft.com/office/word/2006/wordml",
wps: "http://schemas.microsoft.com/office/word/2010/wordprocessingShape",
cx: "http://schemas.microsoft.com/office/drawing/2014/chartex",
cx1: "http://schemas.microsoft.com/office/drawing/2015/9/8/chartex",
cx2: "http://schemas.microsoft.com/office/drawing/2015/10/21/chartex",
cx3: "http://schemas.microsoft.com/office/drawing/2016/5/9/chartex",
cx4: "http://schemas.microsoft.com/office/drawing/2016/5/10/chartex",
cx5: "http://schemas.microsoft.com/office/drawing/2016/5/11/chartex",
cx6: "http://schemas.microsoft.com/office/drawing/2016/5/12/chartex",
cx7: "http://schemas.microsoft.com/office/drawing/2016/5/13/chartex",
cx8: "http://schemas.microsoft.com/office/drawing/2016/5/14/chartex",
aink: "http://schemas.microsoft.com/office/drawing/2016/ink",
am3d: "http://schemas.microsoft.com/office/drawing/2017/model3d",
w16cex: "http://schemas.microsoft.com/office/word/2018/wordml/cex",
w16cid: "http://schemas.microsoft.com/office/word/2016/wordml/cid",
w16: "http://schemas.microsoft.com/office/word/2018/wordml",
w16sdtdh: "http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash",
w16se: "http://schemas.microsoft.com/office/word/2015/wordml/symex",
2018-01-23 01:33:12 +00:00
Ignorable: "w14 w15 wp14",
}),
);
2019-07-31 08:48:02 +01:00
this.body = new Body();
2020-10-27 01:54:40 +00:00
this.root.push(new DocumentBackground(options.background));
2017-09-19 15:36:41 +01:00
this.root.push(this.body);
}
public add(item: Paragraph | Table | TableOfContents | ConcreteHyperlink): Document {
2019-07-31 08:48:02 +01:00
this.body.push(item);
return this;
}
2018-08-03 02:29:58 +01:00
public get Body(): Body {
return this.body;
}
2017-09-19 15:36:41 +01:00
}