mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 23:40:23 +00:00
76 lines
1.8 KiB
JavaScript
76 lines
1.8 KiB
JavaScript
/**
|
|
* All writing related code here. This is so that we can separate the async code from sync code
|
|
* for testability
|
|
*/
|
|
require.paths.push(__dirname);
|
|
var fs = require('fs');
|
|
var OUTPUT_DIR = "build/docs/";
|
|
|
|
function output(docs, content, callback){
|
|
callback();
|
|
}
|
|
|
|
exports.output = function(file, content, callback){
|
|
//console.log('writing', OUTPUT_DIR + file, '...');
|
|
fs.writeFile(
|
|
OUTPUT_DIR + file,
|
|
exports.toString(content),
|
|
callback);
|
|
};
|
|
|
|
|
|
exports.toString = function toString(obj){
|
|
switch (typeof obj) {
|
|
case 'string':
|
|
return obj;
|
|
case 'object':
|
|
if (obj instanceof Array) {
|
|
obj.forEach(function (value, key){
|
|
obj[key] = toString(value);
|
|
});
|
|
return obj.join('');
|
|
} else {
|
|
return JSON.stringify(obj);
|
|
}
|
|
}
|
|
return obj;
|
|
};
|
|
|
|
exports.makeDir = function (path, callback) {
|
|
var parts = path.split(/\//);
|
|
path = '.';
|
|
(function next(){
|
|
if (parts.length) {
|
|
path += '/' + parts.shift();
|
|
fs.mkdir(path, 0777, next);
|
|
} else {
|
|
callback();
|
|
}
|
|
})();
|
|
};
|
|
|
|
exports.copy = function(filename, callback){
|
|
copy('docs/src/templates/' + filename, OUTPUT_DIR + filename, callback);
|
|
};
|
|
|
|
function copy(from, to, callback) {
|
|
//console.log('writing', to, '...');
|
|
fs.readFile(from, function(err, content){
|
|
if (err) return callback.error(err);
|
|
fs.writeFile(to, content, callback);
|
|
});
|
|
}
|
|
|
|
exports.copyImages = function(callback) {
|
|
exports.makeDir(OUTPUT_DIR + '/img', callback.waitFor(function(){
|
|
fs.readdir('docs/img', callback.waitFor(function(err, files){
|
|
if (err) return this.error(err);
|
|
files.forEach(function(file){
|
|
if (file.match(/\.(png|gif|jpg|jpeg)$/)) {
|
|
copy('docs/img/' + file, OUTPUT_DIR + '/img/' + file, callback.waitFor());
|
|
}
|
|
});
|
|
callback();
|
|
}));
|
|
}));
|
|
};
|