Files
docx-js/src/file/styles/factory.ts

71 lines
2.4 KiB
TypeScript
Raw Normal View History

2018-05-06 03:19:36 +01:00
import { DocumentAttributes } from "../document/document-attributes";
2017-12-20 00:52:41 +00:00
import { Color, Italics, Size } from "../paragraph/run/formatting";
2017-03-09 09:45:01 +01:00
import { Styles } from "./";
2017-03-09 09:45:01 +01:00
import {
2018-01-23 01:33:12 +00:00
Heading1Style,
Heading2Style,
Heading3Style,
Heading4Style,
Heading5Style,
Heading6Style,
2018-05-06 22:23:04 -05:00
HyperlinkStyle,
2018-01-23 01:33:12 +00:00
ListParagraph,
TitleStyle,
2017-03-09 09:45:01 +01:00
} from "./style";
export class DefaultStylesFactory {
2017-03-09 09:45:01 +01:00
public newInstance(): Styles {
const documentAttributes = new DocumentAttributes({
mc: "http://schemas.openxmlformats.org/markup-compatibility/2006",
r: "http://schemas.openxmlformats.org/officeDocument/2006/relationships",
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",
Ignorable: "w14 w15",
});
const styles = new Styles(documentAttributes);
styles.createDocumentDefaults();
2017-03-09 09:45:01 +01:00
const titleStyle = new TitleStyle();
2016-05-10 00:32:00 +01:00
titleStyle.addRunProperty(new Size(56));
styles.push(titleStyle);
2017-03-09 09:45:01 +01:00
const heading1Style = new Heading1Style();
2016-05-10 00:32:00 +01:00
heading1Style.addRunProperty(new Color("2E74B5"));
heading1Style.addRunProperty(new Size(32));
styles.push(heading1Style);
2017-03-09 09:45:01 +01:00
const heading2Style = new Heading2Style();
2016-05-10 00:32:00 +01:00
heading2Style.addRunProperty(new Color("2E74B5"));
heading2Style.addRunProperty(new Size(26));
styles.push(heading2Style);
2017-03-09 09:45:01 +01:00
const heading3Style = new Heading3Style();
2016-05-10 00:41:36 +01:00
heading3Style.addRunProperty(new Color("1F4D78"));
heading3Style.addRunProperty(new Size(24));
styles.push(heading3Style);
2017-03-09 09:45:01 +01:00
const heading4Style = new Heading4Style();
2016-05-10 00:41:36 +01:00
heading4Style.addRunProperty(new Color("2E74B5"));
heading4Style.addRunProperty(new Italics());
styles.push(heading4Style);
2017-03-09 09:45:01 +01:00
const heading5Style = new Heading5Style();
2016-05-10 00:41:36 +01:00
heading5Style.addRunProperty(new Color("2E74B5"));
styles.push(heading5Style);
2017-03-09 09:45:01 +01:00
const heading6Style = new Heading6Style();
2016-05-10 00:41:36 +01:00
heading6Style.addRunProperty(new Color("1F4D78"));
styles.push(heading6Style);
2016-05-26 15:08:34 +01:00
2017-03-09 09:45:01 +01:00
const listParagraph = new ListParagraph();
2016-05-26 15:08:34 +01:00
// listParagraph.addParagraphProperty();
styles.push(listParagraph);
2016-05-10 00:41:36 +01:00
2018-05-06 22:23:04 -05:00
const hyperLinkStyle = new HyperlinkStyle();
styles.push(hyperLinkStyle);
return styles;
}
}