Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Sep 29, 2013
0 parents commit 7a1a22d
Show file tree
Hide file tree
Showing 6 changed files with 433 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
node_modules
tmp
*.sublime-*

test
22 changes: 22 additions & 0 deletions LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2013 Jon Schlinkert

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
258 changes: 258 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,258 @@
# {{compose}} [![NPM version](https://badge.fury.io/js/helper-compose.png)](http://badge.fury.io/js/helper-compose)

> {{compose}} handlebars helper. Inlines content from multiple files optionally using wildcard (globbing/minimatch) patterns, extracts YAML front matter to pass to context for each file. Accepts compare function as 3rd parameter for sorting inlined files.
## Quickstart
In the root of your project, run the following in the command line:

```bash
npm i helper-compose --save-dev
```

Next, in your Gruntfile, simply add `helper-compose` to the `helpers` property in the [Assemble](http://assemble.io) task or target options:

```javascript
grunt.initConfig({
assemble: {
options: {
// the 'helper-compose' modules must also be listed in devDependencies
// for assemble to automatically resolve the helper
helpers: ['helper-compose']
}
files: {...}
}
});
```

With that completed, you may now use the `{{compose}}` helper in your templates:

```handlebars
{{compose 'path/to/files/*.hbs'}}
<h1>Title: {{title}}</h1>
{{{content}}}</p>
{{/compose}}
```


## Context & Lo-Dash templates

The helper will also process any valid Lo-Dash templates in the YAML front matter of targeted files, using `grunt.config.data` and the context of the "current" file. For example:

```handlebars
---
title: <%= blog.title %>
post: 1
heading: <%= blog.title %> | Blog <%= post %>
---
<h1>{{title}}</h1>
<p class="heading">{{heading}}</p>
```




## Options

### cwd
Type: `String` (optional)
Default value: `''`

The `cwd` for paths defined in the helper.

### sep
Type: `String`
Default value: `\n`

The separator to append after each inlined file.

### compare
Type: `Function`
Default value: `function(a, b) {return a.index >= b.index ? 1 : -1;}`

Compare function for sorting the aggregated files.





## Defining options

### "assemble" task options

> If you use Grunt and [Assemble](http://assemble.io), you can pass options from the `assemble` task in the Gruntfile to the helper.
In your project's Gruntfile, options for the `{{#compose}}...{{/compose}}` helper can be defined in the Assemble task options:

```javascript
assemble: {
options: {
helpers: ['helper-compose', 'other/helpers/*.js'],
compose: {
cwd: 'test/fixtures/includes',
sep: '<!-- include -->',
compare_fn: function(a, b) {
return a.index >= b.index ? 1 : -1;
}
}
},
files: {}
}
```

Note that the options are defined in `options: {compose: {}}`, which is a [custom property](http://assemble.io/docs/Custom-Helpers.html) in the Assemble options.



## Examples

See examples of the `{{compose}}` helper being used in the [yfm project](https://github.com/assemble/yfm):

### example templates and content
* [the helper itself](https://github.com/assemble/yfm/blob/master/test/fixtures/compose.hbs)
* [content being composed by the helper](https://github.com/assemble/yfm/tree/master/test/fixtures/compose)
* [the compiled result](https://github.com/assemble/yfm/blob/master/test/actual/compose.html)

### example options and context
* [defining helper options](https://github.com/assemble/yfm/blob/master/Gruntfile.js#L31-L35)
* [config data used in examples](https://github.com/assemble/yfm/blob/master/Gruntfile.js#L19)


### all options

```js
assemble: {
options: {
compose: {
cwd: 'test/fixtures/compose',
sep: '<!-- include -->',
compare: function(a, b) {
return a.index >= b.index ? 1 : -1;
}
}
}
}
```

### cwd option

Instead of doing this:

```handlebars
{{compose 'path/to/my/blog/posts/*.hbs'}}
<h1>{{post.title}}</h1>
...
{{/compose}}
```

You could define the `cwd` in the `compose` options in your project's Gruntfile:

```javascript
assemble: {
options: {
helpers: ['helper-compose'],
compose: {
cwd: 'path/to/my/blog'
}
}
}
```
and then define paths in the templates like this:

```handlebars
{{compose 'posts/*.hbs'}}
<h1>{{post.title}}</h1>
...
{{/compose}}
```

## Usage example

Given you have this config in your project's gruntfile:

```js
// Project configuration.
grunt.initConfig({

// Metadata for our blog.
blog: require('./test/fixtures/blog/blog.yml'),

assemble: {
options: {
helpers: ['helper-compose'],
compose: {
cwd: 'blog',
sep: '<!-- post -->'
},
blog: {
src: ['index.hbs'],
dest: 'blog/'
}
}
}
});
```

Our `index.hbs` file contains the following:


```handlebars
<!-- post -->
{{#compose 'posts/*.hbs'}}
<h1>{{blog.title}}</h1>
<h2>Post title: {{title}}</h2>
<p>Post {{{content}}}</p>
{{/compose}}
```

And the files we want to compose include these Lo-Dash and Handlebars templates:


```handlebars
---
title: Alpha post
---
This is the {{title}}, which should be inserted in the composed result.
```

The result, `blog/index.html` would contain something like:

```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Brilliant Blog</title>
</head>
<body>

<!-- post -->
<h1>My Brilliant Blog</h1>
<h2>Post title: Alpha</h2>
<p>Post This is the Alpha post, which should be inserted in the composed result. </p>

<!-- post -->
<h1>My Brilliant Blog</h1>
<h2>Post title: Beta</h2>
<p>Post This is the Beta post, which should be inserted in the composed result. </p>

<!-- post -->
<h1>My Brilliant Blog</h1>
<h2>Post title: Gamma</h2>
<p>Post This is the Gamma post, which should be inserted in the composed result. </p>
</body>
</html>
```


## Author

**Jon Schlinkert**

+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
+ [github/jonschlinkert](http://github.com/jonschlinkert)


## License and Copyright
Licensed under the [MIT License](./LICENSE-MIT)
Copyright (c) Jon Schlinkert, contributors.
9 changes: 9 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "helper-compose",
"version": "0.1.0",
"dependencies": {
"lodash": "~2.1.0",
"globule": "~0.1.0",
"assemble-yaml": "~0.1.5"
}
}
79 changes: 79 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/**
* {{compose}}
*
* https://github.com/helpers/compose
* Copyright (c) 2013 Jon Schlinkert, contributors.
* Licensed under the MIT license.
*/


'use strict';

// Node.js modules
var path = require('path');

// node_modules
var grunt = require('grunt');
var glob = require('globule');
var yfm = require('assemble-yaml');
var _ = require('lodash');


module.exports.register = function(Handlebars, options) {

// If the 'assemble.options' object exists, use it
var assembleOpts = options || {};

Handlebars.registerHelper("compose", function(src, options, compare_fn) {

// Default options
var opts = {
sep: '\n',
cwd: '',
glob: {}
};
options = _.defaults(options, assembleOpts.compose, opts);

var content;
compare_fn = (compare_fn || options.compare || compareFn);
var index = 0;

// Join path to 'cwd' if defined in the helper's options
var cwd = path.join.bind(null, options.cwd, '');

return glob.find(cwd(src), options.glob).map(function (path) {
var context = yfm.extract(path).context;
var content = yfm.extract(path).content;
index += 1;
return {
index: index,
path: path,
context: processContext(grunt, _.defaults({content: content}, context)),
content: content
};
}).sort(compare_fn).map(function (obj) {
var template = Handlebars.compile(options.fn(obj.context));
return new Handlebars.SafeString(template(obj.context));
}).join(options.sep);
});

};


/**
* Process templates using grunt config data and context
*/
var processContext = function(grunt, context) {
grunt.config.data = _.defaults(context || {}, _.cloneDeep(grunt.config.data));
return grunt.config.process(grunt.config.data);
};

/**
* Accepts two objects (a, b),
* @param {Object} a
* @param {Object} b
* @return {Number} returns 1 if (a >= b), otherwise -1
*/
var compareFn = function(a, b) {
return a.index >= b.index ? 1 : -1;
};
Loading

0 comments on commit 7a1a22d

Please sign in to comment.