freeCodeCamp/utils/polyvinyl.js

157 lines
3.5 KiB
JavaScript
Raw Normal View History

2018-04-06 13:51:52 +00:00
// originally based off of https://github.com/gulpjs/vinyl
const invariant = require('invariant');
2018-04-06 13:51:52 +00:00
// interface PolyVinyl {
// source: String,
// contents: String,
// name: String,
// ext: String,
// path: String,
// key: String,
// head: String,
// tail: String,
// history: [...String],
// error: Null|Object|Error
// }
// createPoly({
// name: String,
// ext: String,
// contents: String,
// history?: [...String],
// }) => PolyVinyl, throws
function createPoly({ name, ext, contents, history, ...rest } = {}) {
2018-04-06 13:51:52 +00:00
invariant(typeof name === 'string', 'name must be a string but got %s', name);
invariant(typeof ext === 'string', 'ext must be a string, but was %s', ext);
invariant(
typeof contents === 'string',
'contents must be a string but got %s',
contents
);
return {
...rest,
history: Array.isArray(history) ? history : [name + '.' + ext],
2018-04-06 13:51:52 +00:00
name,
ext,
path: name + '.' + ext,
fileKey: name + ext,
2018-04-06 13:51:52 +00:00
contents,
error: null
};
}
// isPoly(poly: Any) => Boolean
function isPoly(poly) {
2018-04-06 13:51:52 +00:00
return (
poly &&
typeof poly.contents === 'string' &&
typeof poly.name === 'string' &&
typeof poly.ext === 'string' &&
Array.isArray(poly.history)
);
}
// checkPoly(poly: Any) => Void, throws
function checkPoly(poly) {
2018-04-06 13:51:52 +00:00
invariant(
isPoly(poly),
'function should receive a PolyVinyl, but got %s',
poly
);
}
// setContent(contents: String, poly: PolyVinyl) => PolyVinyl
// setContent will loose source if set
function setContent(contents, poly) {
2018-04-06 13:51:52 +00:00
checkPoly(poly);
return {
...poly,
contents,
source: null
};
}
// setExt(ext: String, poly: PolyVinyl) => PolyVinyl
function setExt(ext, poly) {
2018-04-06 13:51:52 +00:00
checkPoly(poly);
const newPoly = {
...poly,
ext,
path: poly.name + '.' + ext,
fileKey: poly.name + ext
2018-04-06 13:51:52 +00:00
};
newPoly.history = [...poly.history, newPoly.path];
return newPoly;
}
// setImportedFiles(importedFiles: String[], poly: PolyVinyl) => PolyVinyl
function setImportedFiles(importedFiles, poly) {
checkPoly(poly);
const newPoly = {
...poly,
importedFiles: [...importedFiles]
};
return newPoly;
}
2018-04-06 13:51:52 +00:00
// clearHeadTail(poly: PolyVinyl) => PolyVinyl
function clearHeadTail(poly) {
2018-04-06 13:51:52 +00:00
checkPoly(poly);
return {
...poly,
head: '',
tail: ''
};
}
// compileHeadTail(padding: String, poly: PolyVinyl) => PolyVinyl
function compileHeadTail(padding = '', poly) {
2018-04-06 13:51:52 +00:00
return clearHeadTail(
transformContents(
() => [poly.head, poly.contents, poly.tail].join(padding),
poly
)
);
}
// transformContents(
// wrap: (contents: String) => String,
// poly: PolyVinyl
// ) => PolyVinyl
// transformContents will keep a copy of the original
// code in the `source` property. If the original polyvinyl
// already contains a source, this version will continue as
// the source property
function transformContents(wrap, poly) {
2018-04-06 13:51:52 +00:00
const newPoly = setContent(wrap(poly.contents), poly);
// if no source exist, set the original contents as source
newPoly.source = poly.source || poly.contents;
return newPoly;
}
// transformHeadTailAndContents(
// wrap: (source: String) => String,
// poly: PolyVinyl
// ) => PolyVinyl
function transformHeadTailAndContents(wrap, poly) {
2018-04-06 13:51:52 +00:00
return {
...transformContents(wrap, poly),
head: wrap(poly.head),
tail: wrap(poly.tail)
};
}
module.exports = {
createPoly,
isPoly,
setContent,
setExt,
setImportedFiles,
compileHeadTail,
transformContents,
transformHeadTailAndContents
};