fn.js
5.87 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
* Copyright 2014,2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
ONOS GUI -- Util -- General Purpose Functions
*/
(function () {
'use strict';
var $window;
function isF(f) {
return typeof f === 'function' ? f : null;
}
function isA(a) {
// NOTE: Array.isArray() is part of EMCAScript 5.1
return Array.isArray(a) ? a : null;
}
function isS(s) {
return typeof s === 'string' ? s : null;
}
function isO(o) {
return (o && typeof o === 'object' && o.constructor === Object) ? o : null;
}
function contains(a, x) {
return isA(a) && a.indexOf(x) > -1;
}
// Returns true if all names in the array are defined as functions
// on the given api object; false otherwise.
// Also returns false if there are properties on the api that are NOT
// listed in the array of names.
function areFunctions(api, fnNames) {
var fnLookup = {},
extraFound = false;
if (!isA(fnNames)) {
return false;
}
var n = fnNames.length,
i, name;
for (i=0; i<n; i++) {
name = fnNames[i];
if (!isF(api[name])) {
return false;
}
fnLookup[name] = true;
}
// check for properties on the API that are not listed in the array,
angular.forEach(api, function (value, key) {
if (!fnLookup[key]) {
extraFound = true;
}
});
return !extraFound;
}
// Returns true if all names in the array are defined as functions
// on the given api object; false otherwise. This is a non-strict version
// that does not care about other properties on the api.
function areFunctionsNonStrict(api, fnNames) {
if (!isA(fnNames)) {
return false;
}
var n = fnNames.length,
i, name;
for (i=0; i<n; i++) {
name = fnNames[i];
if (!isF(api[name])) {
return false;
}
}
return true;
}
// Returns width and height of window inner dimensions.
// offH, offW : offset width/height are subtracted, if present
function windowSize(offH, offW) {
var oh = offH || 0,
ow = offW || 0;
return {
height: $window.innerHeight - oh,
width: $window.innerWidth - ow
};
}
// Returns true if current browser determined to be a mobile device
function isMobile() {
var ua = $window.navigator.userAgent,
patt = /iPhone|iPod|iPad|Silk|Android|BlackBerry|Opera Mini|IEMobile/;
return patt.test(ua);
}
// search through an array of objects, looking for the one with the
// tagged property matching the given key. tag defaults to 'id'.
// returns the index of the matching object, or -1 for no match.
function find(key, array, tag) {
var _tag = tag || 'id',
idx, n, d;
for (idx = 0, n = array.length; idx < n; idx++) {
d = array[idx];
if (d[_tag] === key) {
return idx;
}
}
return -1;
}
// search through array to find (the first occurrence of) item,
// returning its index if found; otherwise returning -1.
function inArray(item, array) {
var i;
if (isA(array)) {
for (i=0; i<array.length; i++) {
if (array[i] === item) {
return i;
}
}
}
return -1;
}
// remove (the first occurrence of) the specified item from the given
// array, if any. Return true if the removal was made; false otherwise.
function removeFromArray(item, array) {
var found = false,
i = inArray(item, array);
if (i >= 0) {
array.splice(i, 1);
found = true;
}
return found;
}
// return true if the object is empty, return false otherwise
function isEmptyObject(obj) {
var key;
for (key in obj) {
return false;
}
return true;
}
// return the given string with the first character capitalized.
function cap(s) {
return s.toLowerCase().replace(/^[a-z]/, function (m) {
return m.toUpperCase();
});
}
// return the parameter without a px suffix
function noPx(num) {
return Number(num.replace(/px$/, ''));
}
// return an element's given style property without px suffix
function noPxStyle(elem, prop) {
return Number(elem.style(prop).replace(/px$/, ''));
}
angular.module('onosUtil')
.factory('FnService', ['$window', function (_$window_) {
$window = _$window_;
return {
isF: isF,
isA: isA,
isS: isS,
isO: isO,
contains: contains,
areFunctions: areFunctions,
areFunctionsNonStrict: areFunctionsNonStrict,
windowSize: windowSize,
isMobile: isMobile,
find: find,
inArray: inArray,
removeFromArray: removeFromArray,
isEmptyObject: isEmptyObject,
cap: cap,
noPx: noPx,
noPxStyle: noPxStyle
};
}]);
}());