Moving gulp task down in file, adding default values and support for multi-line values

Fixing issue with html encoding and splitting on all colons. This fixes
the svg default value. References #122
This commit is contained in:
Brandy Carney
2015-09-21 16:53:46 -04:00
parent 88c547c535
commit 6d402a9428
2 changed files with 63 additions and 38 deletions

View File

@ -10,11 +10,11 @@
"angular2": "2.0.0-alpha.37",
"reflect-metadata": "0.1.1",
"rtts_assert": "2.0.0-alpha.37",
"rx": "2.5.1",
"swiper": "^3.1.2",
"systemjs": "0.18.10",
"traceur": "0.0.91",
"zone.js": "0.5.4",
"rx": "2.5.1"
"zone.js": "0.5.4"
},
"devDependencies": {
"canonical-path": "0.0.2",
@ -39,6 +39,7 @@
"gulp-typescript": "^2.7.7",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.2.4",
"html-entities": "^1.1.3",
"htmlparser2": "^3.8.3",
"js-yaml": "^3.4.2",
"karma": "^0.12.31",

View File

@ -29,42 +29,7 @@ module.exports = function(gulp, flags) {
'!dist/src/**/*'
])
.pipe(gulp.dest('dist/ionic-site/docs/v2/dist'));
})
gulp.task('docs.sass-variables', function() {
var fs = require('fs');
var gutil = require('gulp-util');
var es = require('event-stream');
var path = require('path');
var variables = [];
var outputFile = 'dist/ionic-site/docs/v2/data/sass.json';
return gulp.src('ionic/**/*.scss')
.pipe(es.map(function(file, callback) {
var contents = file.contents.toString();
fs.createReadStream(file.path, {flags: 'r'})
.pipe(es.split())
.pipe(es.map(function (line, callback) {
if (line.charAt(0) == '$') {
var variableLine = line.split(":");
// TODO this pushes the file it is defined in, not the file used in
// not sure if we should include all of them
variables.push({
"name": variableLine[0],
"file": path.basename(file.path)
});
}
callback();
}));
callback();
}).on('end', function() {
gutil.log("Writing to file", gutil.colors.cyan(outputFile));
fs.writeFileSync(outputFile, JSON.stringify(variables));
}));
})
});
gulp.task('docs.index', function() {
var lunr = require('lunr');
@ -204,4 +169,63 @@ module.exports = function(gulp, flags) {
);
});
});
gulp.task('docs.sass-variables', function() {
var fs = require('fs');
var gutil = require('gulp-util');
var es = require('event-stream');
var path = require('path');
var Entities = require('html-entities').AllHtmlEntities;
entities = new Entities();
var variables = [];
var outputFile = 'dist/ionic-site/docs/v2/data/sass.json';
// TODO this pushes the file it is defined in, not any files used in
// not sure if we should include both
function addVariable(variableName, defaultValue, file) {
defaultValue = entities.encode(defaultValue);
variables.push({
"name": variableName,
"defaultValue": defaultValue.trim(),
"file": path.basename(file.path)
});
}
return gulp.src('ionic/**/*.scss')
.pipe(es.map(function(file, callback) {
var contents = file.contents.toString();
var variableLine, variableName, defaultValue, multiline;
fs.createReadStream(file.path, {flags: 'r'})
.pipe(es.split())
.pipe(es.map(function (line, callback) {
if (line.charAt(0) == '$') {
variableLine = line.split(/:(.+)/);
variableName = variableLine[0];
defaultValue = variableLine[1];
// If there is a semicolon then it isn't a multiline value
multiline = line.indexOf(';') > -1 ? false : true;
if (!multiline)
addVariable(variableName, defaultValue, file);
} else if (multiline == true) {
defaultValue += '\n' + line;
// If the line has a semicolon then we've found the end of the default value
if (line.indexOf(';') > -1) {
addVariable(variableName, defaultValue, file);
multiline = false;
}
}
callback();
}));
callback();
}).on('end', function() {
gutil.log("Writing to file at", gutil.colors.cyan("/driftyco/ionic2/" + outputFile));
gutil.log("Place this file in", gutil.colors.cyan("/driftyco/ionic-site/docs/v2/data"), "in order to update the docs");
fs.writeFileSync(outputFile, JSON.stringify(variables));
}));
});
}