This repository was archived by the owner on Dec 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBrowserUtil.d.ts
292 lines (292 loc) · 7.23 KB
/
BrowserUtil.d.ts
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
283
284
285
286
287
288
289
290
291
292
/**
* A helper class to detect OS and browsers.
*
* @class BrowserUtil
* @module StructureJS
* @submodule util
* @author Robert S. (www.codeBelt.com)
* @static
*/
declare class BrowserUtil {
/**
* A reference to the EventDispatcher object.
*
* @property _eventDispatcher
* @type {EventDispatcher}
* @private
* @static
*/
private static _eventDispatcher;
/**
* A reference to the browser window object.
*
* @property _window
* @type {Window}
* @private
* @static
*/
private static _window;
/**
* A reference to the getComputedStyle method.
*
* @property _styleDeclaration
* @type {any}
* @private
* @static
*/
private static _styleDeclaration;
/**
* TODO: YUIDoc_comment
*
* @property _onBreakpointChangeHandler
* @type {any}
* @private
* @static
*/
private static _onBreakpointChangeHandler;
/**
* The delay in milliseconds for the Util.{{#crossLink "Util/debounce:method"}}{{/crossLink}} method that dispatches
* the BaseEvent.RESIZE event to get the your browser breakpoints. See {{#crossLink "BrowserUtil/getBreakpoint:method"}}{{/crossLink}}.
*
* @property debounceDelay
* @type {number}
* @default 250
* @public
* @static
*/
static debounceDelay: number;
/**
* The isEnabled property is used to keep track of the enabled state of listening for Breakpoint changes.
*
* @property isEnabled
* @type {boolean}
* @public
* @static
*/
static isEnabled: boolean;
constructor();
/**
* Dispatches a breakpoint event.
*
* @method enable
* @public
* @static
*/
static enable(): void;
/**
* @overridden EventDispatcher.disable
*/
static disable(): void;
/**
* Returns the name of the browser.
*
* @method browserName
* @return {string}
* @public
* @static
* @example
* BrowserUtil.browserName();
* // 'Chrome'
*/
static browserName(): string;
/**
* Returns the version of the browser.
*
* @method browserVersion
* @param [majorVersion=true] {boolean}
* @return {number|string}
* @public
* @static
* @example
* BrowserUtil.browserVersion();
* // 39
*
* BrowserUtil.browserVersion(false);
* // '39.0.2171.99'
*/
static browserVersion(majorVersion?: boolean): any;
/**
* Gets the browser name a user agent.
*
* @method getBrowser
* @public
* @return {Array.<string>}
* @static
* @example
* BrowserUtil.getBrowser();
* // ["Chrome", "39.0.2171.99"]
*/
static getBrowser(): Array<string>;
/**
* Determines if the device OS is Android.
*
* @method isAndroid
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.isAndroid();
* // false
*/
static isAndroid(): boolean;
/**
* Determines if the device OS is Android.
*
* @method isBlackBerry
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.isBlackBerry();
* // false
*/
static isBlackBerry(): boolean;
/**
* Determines if the device OS is IOS.
*
* @method isIOS
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.isIOS();
* // false
*/
static isIOS(): boolean;
/**
* Determines if the device OS is Opera Mini.
*
* @method isOperaMini
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.isOperaMini();
* // false
*/
static isOperaMini(): boolean;
/**
* Determines if the device OS is IE Mobile.
*
* @method isIEMobile
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.isIEMobile();
* // false
*/
static isIEMobile(): boolean;
/**
* Determines if the it is run on a mobile or desktop device.
*
* @method isMobile
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.isMobile();
* // false
*/
static isMobile(): boolean;
/**
* Determines if the browser can you Browser History push states.
*
* @method hasBrowserHistory
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.hasBrowserHistory();
* // true
*/
static hasBrowserHistory(): boolean;
/**
* Determines if the browser can you Local Storage.
*
* @method hasLocalStorage
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.hasLocalStorage();
* // true
*/
static hasLocalStorage(): boolean;
/**
* Determines if the browser can you Session Storage.
*
* @method hasSessionStorage
* @returns {boolean}
* @public
* @static
* @example
* BrowserUtil.hasSessionStorage();
* // true
*/
static hasSessionStorage(): boolean;
/**
* Get the current breakpoint from the style sheets. You must add a body:after property with a specific content
* in each of your style sheets for this functionality to work.
*
* @method getBreakpoint
* @returns {string} The string value of the current style sheet.
* @public
* @static
* @example
* // For each of your different style sheets add something like below:
* // screen_lg.css
* body:after {
* content: 'screen_lg'; width: 1px; height: 1px; padding: 0; margin: -1px; border: 0; position: absolute; clip: rect(0 0 0 0); overflow: hidden;
* }
* // screen_sm.css
* body:after {
* content: 'screen_sm'; width: 1px; height: 1px; padding: 0; margin: -1px; border: 0; position: absolute; clip: rect(0 0 0 0); overflow: hidden;
* }
*
* BrowserUtil.getBreakpoint();
* // 'screen_lg'
*
* // Add a listener to get notified when the browser is resized:
* BrowserUtil.addEventListener(BaseEvent.RESIZE, this._onBreakpointChange, this);
* ...
* _onBreakpointChange(baseEvent) {
* console.log(baseEvent.data);
* // 'screen_sm'
* }
*/
static getBreakpoint(): any;
/**
* TODO: YUIDoc_comment
*
* @method addEventListener
* @public
* @static
*/
static addEventListener(type: string, callback: Function, scope: any, priority?: number): void;
/**
* TODO: YUIDoc_comment
*
* @method removeEventListener
* @public
* @static
*/
static removeEventListener(type: string, callback: Function, scope: any): void;
/**
* TODO: YUIDoc_comment
*
* @method dispatchEvent
* @public
* @static
*/
static dispatchEvent(type: any, data?: any): void;
/**
* Dispatches a breakpoint event.
*
* @method _onBreakpointChange
* @private
* @static
*/
private static _onBreakpointChange(event);
}
export default BrowserUtil;