/** Definition of the HtmlPngGenerator class. @module generators/html-png-generator @license MIT. See LICENSE.MD for details. */ (function() { var FS, HTML, HtmlPngGenerator, PATH, SLASH, SPAWN, TemplateGenerator, phantom, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty; TemplateGenerator = require('./template-generator'); FS = require('fs-extra'); HTML = require('html'); SLASH = require('slash'); SPAWN = require('../utils/safe-spawn'); PATH = require('path'); /** An HTML-based PNG resume generator for HackMyResume. */ module.exports = HtmlPngGenerator = (function(superClass) { extend(HtmlPngGenerator, superClass); function HtmlPngGenerator() { HtmlPngGenerator.__super__.constructor.call(this, 'png', 'html'); } HtmlPngGenerator.prototype.invoke = function(rez, themeMarkup, cssInfo, opts) {}; HtmlPngGenerator.prototype.generate = function(rez, f, opts) { var htmlFile, htmlResults; htmlResults = opts.targets.filter(function(t) { return t.fmt.outFormat === 'html'; }); htmlFile = htmlResults[0].final.files.filter(function(fl) { return fl.info.ext === 'html'; }); phantom(htmlFile[0].data, f); }; return HtmlPngGenerator; })(TemplateGenerator); /** Generate a PDF from HTML using Phantom's CLI interface. Spawns a child process with `phantomjs