made express packer work

This commit is contained in:
Dolan Miu
2016-05-18 17:09:50 +01:00
parent 6047957bbf
commit 57680159fc

View File

@ -2,12 +2,27 @@ import {Packer} from "./packer";
import * as fs from "fs";
import * as express from "express";
import {Document} from "../../docx/document";
import {Properties} from "../../properties";
import {DefaultStylesFactory} from "../../styles/factory"
export class ExpressPacker extends Packer {
private res: express.Response;
constructor(document: Document, res: express.Response) {
super(document, null, null);
constructor(document: Document, res: express.Response, styles?: any, properties?: Properties) {
if (!styles) {
var stylesFactory = new DefaultStylesFactory();
styles = stylesFactory.newInstance()
}
if (!properties) {
properties = new Properties({
creator: "Shan Fu",
revision: "1",
lastModifiedBy: "Shan Fu"
});
}
super(document, styles, properties);
this.res = res;
this.res.on('close', () => {
@ -15,7 +30,7 @@ export class ExpressPacker extends Packer {
});
}
pack() {
pack(name: string): void {
this.res.attachment(name + ".docx");
super.pack(this.res);
}