-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.js
100 lines (83 loc) · 2.49 KB
/
helpers.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
93
94
95
96
97
98
99
var helpers = module.exports = {};
Number.prototype.pad = function() {
if(this < 10)
return "0" + this;
return this.toString();
};
helpers.currency = function(amount) {
return "$" + amount.toFixed(2);
};
helpers.date = function(datetime, fmt) {
if(typeof datetime !== 'object') datetime = new Date(datetime);
if(typeof fmt === 'undefined')
return datetime.toLocaleDateString() + " at " + datetime.toLocaleTimeString();
else if(fmt === 'short')
return [(datetime.getMonth()+1).pad(), datetime.getDate().pad(), datetime.getFullYear()].join('-');
};
// Adds a .toCurrency() method to numbers.
// Example: (5.2).toCurrency() => "$5.20"
Number.prototype.toCurrency = function() {
return helpers.currency(this);
};
String.prototype.toCurrency = function() {
return Number(this.split(' ')[0]).toCurrency();
};
// Formats lines of an address using a join character.
helpers.address = function(address, joiner) {
return address.lines.join(joiner || '\n');
};
// Format a dimensions object
helpers.dimensions = function(dimensions) {
var dims = [],
bits,
units = {inches: "″", feet: "′"};
['length', 'width', 'height'].forEach(function(dim) {
bits = dimensions[dim].split(' ');
dims.push(bits[0] + units[bits[1]]);
});
return dims.join(' x ');
};
Object.values = function(object) {
var values = [];
for(prop in object) {
if(object.hasOwnProperty(prop)) {
values.push(object[prop]);
}
}
return values;
};
helpers.status_label = function(object) {
var state = object.state || "Unknown";
return '<span class="status ' + state.toLowerCase() + '">' + state + '</span>';
};
// Tests if a value is blank.
helpers.isBlank = function(value) {
if(value === null || typeof value === 'undefined') return true;
// If value is an Object, check for "blankness" by
// seeing if it has any properties.
if(typeof value === 'object') {
value = Object.keys(value);
}
// Strings & Arrays
if(typeof value.length !== 'undefined') {
if(typeof value === 'string') {
return value.trim().length === 0;
} else {
return value.length === 0;
}
}
};
helpers.isPresent = function(value) {
return !helpers.isBlank(value);
};
helpers.linkTo = function(text, href, options) {
options = options || {};
options.href = href;
var attrs = [];
for(attr in options) {
if(options.hasOwnProperty(attr)) {
attrs.push(attr + '="' + options[attr] + '"');
}
};
return '<a ' + attrs.join(' ') + '>' + text + '</a>';
};