-
-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5619 from ErisDS/issue-4439-get
The {{#get}} helper
- Loading branch information
Showing
3 changed files
with
415 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
// # Get Helper | ||
// Usage: `{{#get "posts" limit="5"}}`, `{{#get "tags" limit="all"}}` | ||
// Fetches data from the API | ||
var _ = require('lodash'), | ||
hbs = require('express-hbs'), | ||
Promise = require('bluebird'), | ||
errors = require('../errors'), | ||
api = require('../api'), | ||
resources, | ||
get; | ||
|
||
// Endpoints that the helper is able to access | ||
resources = ['posts', 'tags', 'users']; | ||
|
||
/** | ||
* ## Is Browse | ||
* Is this a Browse request or a Read request? | ||
* @param {Object} context | ||
* @param {Object} options | ||
* @returns {boolean} | ||
*/ | ||
function isBrowse(context, options) { | ||
var browse = true; | ||
|
||
if (options.id || options.slug) { | ||
browse = false; | ||
} | ||
|
||
return browse; | ||
} | ||
|
||
/** | ||
* ## Parse Options | ||
* Ensure options passed in make sense | ||
* | ||
* @param {Object} data | ||
* @param {Object} options | ||
* @returns {*} | ||
*/ | ||
function parseOptions(data, options) { | ||
if (_.isArray(options.tag)) { | ||
options.tag = _.pluck(options.tag, 'slug').join(','); | ||
} | ||
|
||
if (_.isObject(options.author)) { | ||
options.author = options.author.slug; | ||
} | ||
|
||
return options; | ||
} | ||
|
||
/** | ||
* ## Get | ||
* @param {Object} context | ||
* @param {Object} options | ||
* @returns {Promise} | ||
*/ | ||
get = function get(context, options) { | ||
options = options || {}; | ||
options.hash = options.hash || {}; | ||
options.data = options.data || {}; | ||
|
||
var self = this, | ||
data = hbs.handlebars.createFrame(options.data), | ||
apiOptions = _.omit(options.hash, 'context'), | ||
apiMethod; | ||
|
||
if (!options.fn) { | ||
data.error = 'Get helper must be called as a block'; | ||
errors.logWarn(data.error); | ||
return Promise.resolve(); | ||
} | ||
|
||
if (!_.contains(resources, context)) { | ||
data.error = 'Invalid resource given to get helper'; | ||
errors.logWarn(data.error); | ||
return Promise.resolve(options.inverse(self, {data: data})); | ||
} | ||
|
||
// Determine if this is a read or browse | ||
apiMethod = isBrowse(context, apiOptions) ? api[context].browse : api[context].read; | ||
// Parse the options we're going to pass to the API | ||
apiOptions = parseOptions(this, apiOptions); | ||
|
||
return apiMethod(apiOptions).then(function success(result) { | ||
result = _.merge(self, result); | ||
if (_.isEmpty(result[context])) { | ||
return options.inverse(self, {data: data}); | ||
} | ||
|
||
return options.fn(result, { | ||
data: data, | ||
blockParams: [result[context]] | ||
}); | ||
}).catch(function error(err) { | ||
data.error = err.message; | ||
return options.inverse(self, {data: data}); | ||
}); | ||
}; | ||
|
||
module.exports = get; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.