parcel-bundler
Version:
<p align="center"> <a href="https://parceljs.org/" target="_blank"> <img alt="Parcel" src="https://user-images.githubusercontent.com/19409/31321658-f6aed0f2-ac3d-11e7-8100-1587e676e0ec.png" width="749"> </a> </p>
77 lines (68 loc) • 1.84 kB
JavaScript
const Asset = require('../Asset');
const parse = require('posthtml-parser');
const api = require('posthtml/lib/api');
const path = require('path');
const url = require('url');
const render = require('posthtml-render');
const posthtmlTransform = require('../transforms/posthtml');
const isURL = require('../utils/is-url');
// A list of all attributes that should produce a dependency
// Based on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes
const ATTRS = {
src: [
'script',
'img',
'audio',
'video',
'source',
'track',
'iframe',
'embed'
],
href: ['link', 'a'],
poster: ['video']
};
class HTMLAsset extends Asset {
constructor(name, pkg, options) {
super(name, pkg, options);
this.type = 'html';
this.isAstDirty = false;
}
parse(code) {
let res = parse(code);
res.walk = api.walk;
res.match = api.match;
return res;
}
collectDependencies() {
this.ast.walk(node => {
if (node.attrs) {
for (let attr in node.attrs) {
let elements = ATTRS[attr];
if (elements && elements.includes(node.tag)) {
let assetPath = this.addURLDependency(node.attrs[attr]);
if (!isURL(assetPath)) {
// Use url.resolve to normalize path for windows
// from \path\to\res.js to /path/to/res.js
assetPath = url.resolve(
path.join(this.options.publicURL, assetPath),
''
);
}
node.attrs[attr] = assetPath;
this.isAstDirty = true;
}
}
}
return node;
});
}
async transform() {
await posthtmlTransform(this);
}
generate() {
let html = this.isAstDirty ? render(this.ast) : this.contents;
return {html};
}
}
module.exports = HTMLAsset;