aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/dtl/filter/misc.js
blob: 0704d252114c9f10a8e0aedefcb4c35d148a6d29 (plain)
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
if(!dojo._hasResource["dojox.dtl.filter.misc"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.dtl.filter.misc"] = true;
dojo.provide("dojox.dtl.filter.misc");

dojo.mixin(dojox.dtl.filter.misc, {
	filesizeformat: function(value){
		// summary: Format the value like a 'human-readable' file size (i.e. 13 KB, 4.1 MB, 102bytes, etc).
		value = parseFloat(value);
		if(value < 1024){
			return (value == 1) ? value + " byte" : value + " bytes";
		}else if(value < 1024 * 1024){
			return (value / 1024).toFixed(1) + " KB";
		}else if(value < 1024 * 1024 * 1024){
			return (value / 1024 / 1024).toFixed(1) + " MB";
		}
		return (value / 1024 / 1024 / 1024).toFixed(1) + " GB";
	},
	pluralize: function(value, arg){
		// summary:
		//		Returns a plural suffix if the value is not 1, for '1 vote' vs. '2 votes'
		//	description:
		//		By default, 's' is used as a suffix; if an argument is provided, that string
		//		is used instead. If the provided argument contains a comma, the text before
		//		the comma is used for the singular case.
		arg = arg || 's';
		if(arg.indexOf(",") == -1){
			arg = "," + arg;
		}
		var parts = arg.split(",");
		if(parts.length > 2){
			return "";
		}
		var singular = parts[0];
		var plural = parts[1];

		if(parseInt(value) != 1){
			return plural;
		}
		return singular;
	},
	_phone2numeric: { a: 2, b: 2, c: 2, d: 3, e: 3, f: 3, g: 4, h: 4, i: 4, j: 5, k: 5, l: 5, m: 6, n: 6, o: 6, p: 7, r: 7, s: 7, t: 8, u: 8, v: 8, w: 9, x: 9, y: 9 },
	phone2numeric: function(value){
		// summary: Takes a phone number and converts it in to its numerical equivalent
		var dm = dojox.dtl.filter.misc;
		value = value + "";
		var output = "";
		for(var i = 0; i < value.length; i++){
			var chr = value.charAt(i).toLowerCase();
			(dm._phone2numeric[chr]) ? output += dm._phone2numeric[chr] : output += value.charAt(i);
		}
		return output;
	},
	pprint: function(value){
		// summary: A wrapper around toJson unless something better comes along
		return dojo.toJson(value);
	}
});

}