forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddressbarColor.js
More file actions
69 lines (58 loc) · 1.57 KB
/
Copy pathAddressbarColor.js
File metadata and controls
69 lines (58 loc) · 1.57 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
import { client } from './Platform.js'
import { noop } from '../utils/event.js'
import getCssVar from '../utils/get-css-var.js'
let metaValue
function getProp () {
return client.is.winphone
? 'msapplication-navbutton-color'
: (
client.is.safari
? 'apple-mobile-web-app-status-bar-style'
: 'theme-color' // Chrome, Firefox OS, Opera, Vivaldi, ...
)
}
function getMetaTag (v) {
const els = document.getElementsByTagName('META')
for (const i in els) {
if (els[ i ].name === v) {
return els[ i ]
}
}
}
function setColor (hexColor) {
if (metaValue === void 0) {
// cache it
metaValue = getProp()
}
let metaTag = getMetaTag(metaValue)
const newTag = metaTag === void 0
if (newTag) {
metaTag = document.createElement('meta')
metaTag.setAttribute('name', metaValue)
}
metaTag.setAttribute('content', hexColor)
if (newTag) {
document.head.appendChild(metaTag)
}
}
export default {
set: __QUASAR_SSR_SERVER__ !== true && client.is.mobile === true && (
client.is.nativeMobile === true
|| client.is.winphone === true || client.is.safari === true
|| client.is.webkit === true || client.is.vivaldi === true
)
? hexColor => {
const val = hexColor || getCssVar('primary')
if (client.is.nativeMobile === true && window.StatusBar) {
window.StatusBar.backgroundColorByHexString(val)
}
else {
setColor(val)
}
}
: noop,
install ({ $q }) {
$q.addressbarColor = this
$q.config.addressbarColor && this.set($q.config.addressbarColor)
}
}