You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.9 KiB
62 lines
1.9 KiB
11 years ago
|
module.exports = function(grunt) {
|
||
|
|
||
|
// Project configuration.
|
||
|
grunt.initConfig({
|
||
|
pkg: grunt.file.readJSON('../package.json')
|
||
|
});
|
||
|
|
||
|
function writeToLiveSampleJS(matchedJS) {
|
||
|
|
||
|
grunt.file.write('js/cookbook/' + componentName + '.js', liveEditJS);
|
||
|
}
|
||
|
|
||
|
function readFromCookbookEntry(abspath, rootdir, subdir, filename) {
|
||
|
|
||
|
var markdown = grunt.file.read(abspath),
|
||
|
|
||
|
// read markdown file for code sample
|
||
|
matchedJS = markdown.match(/`{3}[\s\S]*?`{3}/g),
|
||
|
trimmedJS,
|
||
|
componentName,
|
||
|
componentNameCamelCase,
|
||
|
componentNameUpperCase,
|
||
|
liveEditJS;
|
||
|
|
||
|
// File has no code sample
|
||
|
if (matchedJS === null) {
|
||
|
return;
|
||
|
};
|
||
|
|
||
|
matchedJS = matchedJS[0];
|
||
|
|
||
|
// Remove markdown syntax
|
||
|
matchedJS = matchedJS.slice(5, -3);
|
||
|
|
||
|
// remove file extension
|
||
|
componentName = filename.slice(0, -3);
|
||
|
|
||
|
|
||
|
componentNameCamelCase = componentName;
|
||
|
|
||
|
componentNameUpperCase = componentName.toUpperCase().replace("-","_");
|
||
|
|
||
|
componentNameCamelCase = componentNameCamelCase.replace(/-([a-z])/g, function (g) { return g[1].toUpperCase() });
|
||
|
|
||
|
// Add code sample to live edit
|
||
|
liveEditJS = '/**\n * @jsx React.DOM\n */\n\n var ' + componentNameUpperCase + '_COMPONENT = "' + matchedJS + '";\n React.renderComponent(\n ReactPlayground( {codeText:' + componentNameUpperCase + '_COMPONENT} ),\n document.getElementById("' + componentNameCamelCase + 'Example")\n );'
|
||
|
|
||
|
writeToLiveSampleJS(liveEditJS, componentName);
|
||
|
}
|
||
|
|
||
|
grunt.registerTask('makeLiveSamples', 'Out live edit JS file for code samples in React Cookbook entries', function() {
|
||
|
var rootdir = 'cookbook/';
|
||
|
|
||
|
// Recurse through cookbook directory
|
||
|
grunt.file.recurse(rootdir, readFromCookbookEntry);
|
||
|
|
||
|
});
|
||
|
|
||
|
// Default task(s).
|
||
|
grunt.registerTask('default', ['makeLiveSamples']);
|
||
|
|
||
|
};
|