-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmatch-media.js
282 lines (223 loc) · 8.45 KB
/
match-media.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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
(function () {
'use strict';
/*
* Angular matchMedia Module
* Version 0.6.0
* Uses Bootstrap 3 breakpoint sizes
* Exposes service "screenSize" which returns true if breakpoint(s) matches.
* Includes matchMedia polyfill for backward compatibility.
* Copyright © Jack Tarantino <https://jack.ofspades.com>.
**/
var app = angular.module('matchMedia', []);
app.run(function initializeNgMatchMedia() {
/*! matchMedia() polyfill - Test a CSS media type/query in JS.
* Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas, David Knight.
* Dual MIT/BSD license
**/
window.matchMedia || (window.matchMedia = function matchMediaPolyfill() {
// For browsers that support matchMedium api such as IE 9 and webkit
var styleMedia = (window.styleMedia || window.media);
// For those that don't support matchMedium
if (!styleMedia) {
var style = document.createElement('style'),
script = document.getElementsByTagName('script')[0],
info = null;
style.type = 'text/css';
style.id = 'matchmediajs-test';
script.parentNode.insertBefore(style, script);
// 'style.currentStyle' is used by IE <= 8
// 'window.getComputedStyle' for all other browsers
info = ('getComputedStyle' in window) && window.getComputedStyle(style, null) || style.currentStyle;
styleMedia = {
matchMedium: function (media) {
var text = '@media ' + media + '{ #matchmediajs-test { width: 1px; } }';
// 'style.styleSheet' is used by IE <= 8
// 'style.textContent' for all other browsers
if (style.styleSheet) {
style.styleSheet.cssText = text;
} else {
style.textContent = text;
}
// Test if media query is true or false
return info.width === '1px';
}
};
}
return function (media) {
return {
matches: styleMedia.matchMedium(media || 'all'),
media: media || 'all'
};
};
}());
});
//Service to use in controllers
app.service('screenSize', screenSize);
screenSize.$inject = ['$rootScope'];
function screenSize($rootScope) {
var defaultRules = {
lg: '(min-width: 1200px)',
md: '(min-width: 992px) and (max-width: 1199px)',
sm: '(min-width: 768px) and (max-width: 991px)',
xs: '(max-width: 767px)'
};
this.isRetina = (
window.devicePixelRatio > 1 ||
(window.matchMedia && window.matchMedia('(-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5),(min-resolution: 192dpi),(min-resolution: 2dppx)').matches)
);
var that = this;
// Executes Angular $apply in a safe way
var safeApply = function (fn, scope) {
scope = scope || $rootScope;
var phase = scope.$root.$$phase;
if (phase === '$apply' || phase === '$digest') {
if (fn && (typeof (fn) === 'function')) {
fn();
}
} else {
scope.$apply(fn);
}
};
// Validates that we're getting a string or array.
// When string: converts string(comma seperated) to an array.
var assureList = function (list) {
if (typeof list !== 'string' && Object.prototype.toString.call(list) !== '[object Array]') {
throw new Error('screenSize requires array or comma-separated list');
}
return typeof list === 'string' ? list.split(/\s*,\s*/) : list;
};
var getCurrentMatch = function () {
var rules = that.rules || defaultRules;
for (var property in rules) {
if (rules.hasOwnProperty(property)) {
if (window.matchMedia(rules[property]).matches) {
return property;
}
}
}
};
// Return the actual size (it's string name defined in the rules)
this.get = getCurrentMatch;
this.restoreDefaultRules = function () {
this.rules = angular.extend({}, defaultRules);
};
this.restoreDefaultRules();
this.is = function (list) {
list = assureList(list);
return list.indexOf(getCurrentMatch()) !== -1;
};
// Executes the callback function on window resize with the match truthiness as the first argument.
// Returns the current match truthiness.
// The 'scope' parameter is optional. If it's not passed in, '$rootScope' is used.
this.on = function (list, callback, scope) {
window.addEventListener('resize', listenerFunc);
if (scope) {
scope.$on('$destroy', function () {
window.removeEventListener('resize', listenerFunc);
});
}
return that.is(list);
function listenerFunc() {
safeApply(callback(that.is(list)), scope);
}
};
// Executes the callback function ONLY when the match differs from previous match.
// Returns the current match truthiness.
// The 'scope' parameter is required for cleanup reasons (destroy event).
this.onChange = function (scope, list, callback) {
var currentMatch = getCurrentMatch();
list = assureList(list);
if (!scope) {
throw 'scope has to be applied for cleanup reasons. (destroy)';
}
window.addEventListener('resize', listenerFunc);
scope.$on('$destroy', function () {
window.removeEventListener('resize', listenerFunc);
});
return that.is(list);
function listenerFunc() {
var previousMatch = currentMatch;
currentMatch = getCurrentMatch();
var wasPreviousMatch = list.indexOf(previousMatch) !== -1;
var doesCurrentMatch = list.indexOf(currentMatch) !== -1;
if (wasPreviousMatch !== doesCurrentMatch) {
safeApply(callback(doesCurrentMatch), scope);
}
}
};
// Executes the callback function ONLY when the matched rule changes.
// Returns the current match rule name.
// The 'scope' parameter is required for cleanup reasons (destroy event).
this.onRuleChange = function (scope, callback) {
var currentMatch = getCurrentMatch();
if (!scope) {
throw 'scope has to be applied for cleanup reasons. (destroy)';
}
window.addEventListener('resize', listenerFunc);
scope.$on('$destroy', function () {
window.removeEventListener('resize', listenerFunc);
});
return currentMatch;
function listenerFunc() {
var previousMatch = currentMatch;
currentMatch = getCurrentMatch();
if (previousMatch !== currentMatch) {
safeApply(callback(currentMatch), scope);
}
}
};
// Executes the callback only when inside of the particular screensize.
// The 'scope' parameter is optional. If it's not passed in, '$rootScope' is used.
this.when = function (list, callback, scope) {
window.addEventListener('resize', listenerFunc);
if (scope) {
scope.$on('$destroy', function () {
window.removeEventListener('resize', listenerFunc);
});
}
return that.is(list);
function listenerFunc() {
if (that.is(list) === true) {
safeApply(callback(that.is(list)), scope);
}
}
};
}
app.filter('media', ['screenSize', function (screenSize) {
var mediaFilter = function (inputValue, options) {
// Get actual size
var size = screenSize.get();
// Variable for the value being return (either a size/rule name or a group name)
var returnedName = '';
if (!options) {
// Return the size/rule name
return size;
}
// Replace placeholder with group name in input value
if (options.groups) {
for (var prop in options.groups) {
if (options.groups.hasOwnProperty(prop)) {
var index = options.groups[prop].indexOf(size);
if (index >= 0) {
returnedName = prop;
}
}
}
// If no group name is found for size use the size itself
if (returnedName === '') {
returnedName = size;
}
}
// Replace or return size/rule name?
if (options.replace && typeof options.replace === 'string' && options.replace.length > 0) {
return inputValue.replace(options.replace, returnedName);
} else {
return returnedName;
}
};
// Since AngularJS 1.3, filters which are not stateless (depending at the scope)
// have to explicit define this behavior.
mediaFilter.$stateful = true;
return mediaFilter;
}]);
})();