forked from Kenshin/simpread
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowser.js
More file actions
69 lines (60 loc) · 1.28 KB
/
browser.js
File metadata and controls
69 lines (60 loc) · 1.28 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
console.log( "=== simpread browser load ===" )
const mode = {
chrome : "chrome",
sogou : "sogouExplorer",
firefox: "firefox",
}, userAgent = () => {
if ( window.navigator.userAgent.toLowerCase().includes( "firefox" ) ) {
return "firefox";
} else {
return "chrome"
}
};
let browser_type;
/**
* Chromium browser api adapter
*
* @class
*/
class Browser {
/**
* Browser adapter[read]
*
* @return {object} current chromium
*/
get adapter() {
switch ( browser_type ) {
case mode.chrome:
return chrome;
case mode.sogou:
return sogouExplorer;
case mode.firefox:
return browser;
}
}
/**
* Browser type[read]
*
* @return {string} browser type @see mode
*/
get type() {
return browser_type;
}
constructor( type ) {
browser_type = type;
}
/**
* Is firefox
*
* @return {boolean} true or false
*/
isFirefox() {
return browser_type == mode.firefox;
}
}
const br = new Browser( userAgent() ),
adapter = br.adapter;
export {
br,
adapter as browser
};