HackMyResume/dist/utils/string-transformer.js

62 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-01-27 10:29:26 +00:00
(function() {
2018-02-12 05:05:29 +00:00
/**
Object string transformation.
@module utils/string-transformer
@license MIT. See LICENSE.md for details.
*/
2016-01-27 10:29:26 +00:00
var _, moment;
_ = require('underscore');
moment = require('moment');
/**
Create a copy of this object in which all string fields have been run through
a transformation function (such as a Markdown filter or XML encoder).
2018-02-12 05:05:29 +00:00
*/
2016-01-27 10:29:26 +00:00
module.exports = function(ret, filt, transformer) {
var that, transformStringsInObject;
that = this;
2018-02-12 05:05:29 +00:00
// TODO: refactor recursion
2016-01-27 10:29:26 +00:00
transformStringsInObject = function(obj, filters) {
if (!obj) {
return;
}
if (moment.isMoment(obj)) {
return;
}
if (_.isArray(obj)) {
return obj.forEach(function(elem, idx, ar) {
if (typeof elem === 'string' || elem instanceof String) {
return ar[idx] = transformer(null, elem);
} else if (_.isObject(elem)) {
return transformStringsInObject(elem, filters);
}
});
} else if (_.isObject(obj)) {
return Object.keys(obj).forEach(function(k) {
var sub;
if (filters.length && _.contains(filters, k)) {
return;
}
sub = obj[k];
if (typeof sub === 'string' || sub instanceof String) {
return obj[k] = transformer(k, sub);
} else if (_.isObject(sub)) {
return transformStringsInObject(sub, filters);
}
});
}
};
Object.keys(ret).forEach(function(member) {
if (!filt || !filt.length || !_.contains(filt, member)) {
return transformStringsInObject(ret[member], filt || []);
}
});
return ret;
};
}).call(this);
2016-02-02 02:14:36 +00:00
//# sourceMappingURL=string-transformer.js.map