forked from helpers/handlebars-helpers
-
Notifications
You must be signed in to change notification settings - Fork 15
/
misc.js
92 lines (79 loc) · 1.94 KB
/
misc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
'use strict';
var util = require('./utils/handlebarsUtils');
var helpers = module.exports;
const getValue = require('get-value');
const createFrame = require('./utils/createFrame');
/**
* Block helper for exposing private `@` variables on the context
*/
helpers.frame = function(context, options) {
if (typeof(context) === 'object' && context.hash) {
options = context;
context = options.data;
}
var frame = createFrame(context);
if (typeof(options) !== 'object') {
options = {};
}
// extend the frame with hash arguments
frame.extend(options.hash);
return options.fn(this, { data: frame });
};
/**
* Return the given value of `prop` from `this.options`.
*
* ```handlebars
* <!-- context = {options: {a: {b: {c: 'ddd'}}}} -->
* {{option 'a.b.c'}}
* <!-- results => `ddd` -->
* ```
* @param {String} `prop`
* @return {any}
* @api public
*/
helpers.option = function(prop, locals, options) {
return getValue(util.options(this, locals, options), prop);
};
/**
* Block helper that renders the block without taking any arguments.
*
* @param {Object} `options`
* @return {String}
* @block
* @api public
*/
helpers.noop = function(options) {
return options.fn(this);
};
/**
* Get the native type of the given `value`
*
* ```handlebars
* {{typeOf 1}}
* //=> 'number'
* {{typeOf '1'}}
* //=> 'string'
* {{typeOf 'foo'}}
* //=> 'string'
* ```
* @param {any} `value`
* @return {String} Returns the type of value.
* @api public
*/
helpers.typeOf = function(val) { return typeof val; };
/**
* Block helper that builds the context for the block
* from the options hash.
*
* @param {Object} `options` Handlebars provided options object.
* @contributor Vladimir Kuznetsov <https://github.com/mistakster>
* @block
* @api public
*/
helpers.withHash = function(options) {
if (options.hash && Object.keys(options.hash).length) {
return options.fn(options.hash);
} else {
return options.inverse(this);
}
};