quasar
Version:
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
68 lines (58 loc) • 1.54 kB
JavaScript
import Vue from 'vue'
import Platform from '../plugins/Platform.js'
import { noop } from '../utils/event.js'
function parseFeatures (winFeatures) {
const cfg = Object.assign({ noopener: true }, winFeatures)
const feat = []
Object.keys(cfg).forEach(key => {
if (cfg[key] === true) {
feat.push(key)
}
})
return feat.join(',')
}
function openWindow (url, reject, windowFeatures) {
let open = window.open
if (Platform.is.cordova === true) {
if (cordova !== void 0 && cordova.InAppBrowser !== void 0 && cordova.InAppBrowser.open !== void 0) {
open = cordova.InAppBrowser.open
}
else if (navigator !== void 0 && navigator.app !== void 0) {
return navigator.app.loadUrl(url, {
openExternal: true
})
}
}
else if (Vue.prototype.$q.electron !== void 0) {
return Vue.prototype.$q.electron.shell.openExternal(url)
}
const win = open(url, '_blank', parseFeatures(windowFeatures))
if (win) {
Platform.is.desktop && win.focus()
return win
}
else {
reject && reject()
}
}
export default (url, reject, windowFeatures) => {
if (
Platform.is.ios === true &&
window.SafariViewController !== void 0
) {
window.SafariViewController.isAvailable(available => {
if (available) {
window.SafariViewController.show(
{ url },
noop,
reject
)
}
else {
openWindow(url, reject, windowFeatures)
}
})
return
}
return openWindow(url, reject, windowFeatures)
}