forked from google/santa-tracker-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.js
More file actions
162 lines (149 loc) · 4.09 KB
/
Copy pathutils.js
File metadata and controls
162 lines (149 loc) · 4.09 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
/*
* Copyright 2015 Google Inc. All rights reserved.
*
* 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.
*/
/**
* Pads an integer to have two digits.
* @param {number} n
* @return {string}
* @export
*/
function padDigits(n) {
if (n > 9) {
return '' + n;
}
return '0' + n;
}
/**
* Returns a random number in the range [min,max).
* @param {number} min
* @param {number=} opt_max
* @return {number}
* @export
*/
function randomRange(min, opt_max) {
var max = opt_max || 0;
return min + Math.random() * (max - min);
}
/**
* Returns a random choice from the given array or array-like.
* @param {!IArrayLike} array
* @return {*}
* @export
*/
function randomChoice(array) {
if (array.length) {
var idx = Math.floor(Math.random() * array.length);
return array[idx];
}
return null;
}
/**
* Shuffles an array.
* @param {!IArrayLike<T>} opts to shuffle
* @param {number=} opt_limit return only this many elements
* @return {!Array<T>}
* @template T
* @export
*/
function shuffleArray(opts, opt_limit) {
opts = Array.prototype.slice.call(opts);
opts.sort(function(a, b) {
return Math.random() - 0.5;
});
if (opt_limit !== undefined) {
return opts.slice(0, Math.floor(opt_limit));
}
return opts;
}
/**
* Checks whether the passed dates are the same calendar day.
* @param {!Date} date1
* @param {!Date} date2
* @return {boolean} whether the dates are the same calendar day
* @export
*/
function isSameDay(date1, date2) {
return date1.getMonth() == date2.getMonth() &&
date1.getDate() == date2.getDate() &&
date1.getYear() == date2.getYear();
}
/**
* @param {string} param URL parameter to look for.
* @return {string|undefined} undefined if the URL parameter does not exist.
* @export
*/
function getUrlParameter(param) {
return getUrlParameters()[param];
}
/**
* @return {!Object<string>} params from the current URL
* @export
*/
function getUrlParameters() {
const out = {};
const search = window.location.search || '?';
search.substr(1).split('&').forEach(part => {
if (!part) {
return;
}
const p = part.split('=');
const key = window.decodeURIComponent(p[0]);
if (!(key in out)) {
// match URLSearchParams.get(), return the 1st param only.
out[key] = window.decodeURIComponent(p[1] || '');
}
});
return out;
}
/**
* Throttle calls to a function
* @param {function(...*)} func
* @param {number} ms at most one per this many ms
* @return {function(...*)}
* @export
*/
function throttle(func, ms) {
var timeout, last = 0;
return function() {
var a = arguments, t = this, now = +(new Date);
var fn = function() { last = now; func.apply(t,a); };
window.clearTimeout(timeout);
(now >= last + ms) ? fn() : timeout = window.setTimeout(fn, ms);
}
}
/**
* Returns an array of all scene IDs (e.g., dorf, boatload) which are cached.
* @export
* @return {!Promise<!Array<string>>}
*/
function getCachedScenes() {
const caches = window.caches;
if (typeof caches === 'undefined') { return Promise.resolve([]); }
return caches.open('persistent')
.then(cache => cache.match(window.location.origin + '/manifest.json'))
.then(response => response.json())
.then(json => json.version)
.then(version => caches.open(version))
.then(cache => cache.keys())
.then(requests => {
const urls = requests.map(r => r.url);
const matches = urls.map(url => url.match(/\/scenes\/(\w+)\//));
return [...new Set(matches.filter(m => m).map(m => m[1]))];
})
.catch(error => {
console.error('Couldn\'t retrieve cached scenes.', error);
return [];
});
}