mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-31 10:58:33 +00:00
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
/* eslint-env browser */
|
|
import halfmoon from 'halfmoon'
|
|
halfmoon.showModal = id => {
|
|
const t = document.getElementById(id)
|
|
t && t.classList.add('show')
|
|
}
|
|
halfmoon.hideModal = id => {
|
|
const t = document.getElementById(id)
|
|
t && t.classList.remove('show')
|
|
}
|
|
export const searchParams = new URLSearchParams(location.href)
|
|
if (searchParams.get('access_token')) {
|
|
localStorage.setItem('ALtoken', searchParams.get('access_token'))
|
|
window.location = '/app/#home'
|
|
}
|
|
export const userBrowser = (() => {
|
|
if (window.chrome) {
|
|
return (navigator.userAgent.indexOf('Edg') !== -1) ? 'edge' : 'chromium'
|
|
}
|
|
return 'firefox'
|
|
})()
|
|
export function countdown (s) {
|
|
const d = Math.floor(s / (3600 * 24))
|
|
s -= d * 3600 * 24
|
|
const h = Math.floor(s / 3600)
|
|
s -= h * 3600
|
|
const m = Math.floor(s / 60)
|
|
s -= m * 60
|
|
const tmp = []
|
|
if (d) tmp.push(d + 'd')
|
|
if (d || h) tmp.push(h + 'h')
|
|
if (d || h || m) tmp.push(m + 'm')
|
|
return tmp.join(' ')
|
|
}
|
|
|
|
export function flattenObj (obj) {
|
|
const result = {}
|
|
|
|
for (const key in obj) {
|
|
if (obj[key] && obj[key].constructor === Object) {
|
|
const childObj = flattenObj(obj[key])
|
|
|
|
for (const childObjKey in childObj) {
|
|
result[childObjKey] = childObj[childObjKey]
|
|
}
|
|
} else {
|
|
result[key] = obj[key]
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
export const DOMPARSER = new DOMParser().parseFromString.bind(new DOMParser())
|