111 lines
3.3 KiB
JavaScript
111 lines
3.3 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.initPreContext = exports.getPreUVueContext = exports.getPreNVueContext = exports.getPreVueContext = void 0;
|
|
const shared_1 = require("@vue/shared");
|
|
const DEFAULT_KEYS = [
|
|
'UNI_APP_X',
|
|
'APP',
|
|
'APP_UVUE',
|
|
'APP_NVUE',
|
|
'APP_PLUS',
|
|
'APP_PLUS_NVUE',
|
|
'APP_VUE',
|
|
'APP_ANDROID',
|
|
'APP_IOS',
|
|
'H5',
|
|
'MP',
|
|
'MP_360',
|
|
'MP_ALIPAY',
|
|
'MP_BAIDU',
|
|
'MP_QQ',
|
|
'MP_LARK',
|
|
'MP_TOUTIAO',
|
|
'MP_WEIXIN',
|
|
'MP_KUAISHOU',
|
|
'MP_JD',
|
|
'QUICKAPP_NATIVE',
|
|
'QUICKAPP_WEBVIEW',
|
|
'QUICKAPP_WEBVIEW_HUAWEI',
|
|
'QUICKAPP_WEBVIEW_UNION',
|
|
'VUE2',
|
|
'VUE3',
|
|
'WEB',
|
|
];
|
|
const preVueContext = Object.create(null);
|
|
const preNVueContext = Object.create(null);
|
|
const preUVueContext = Object.create(null);
|
|
function getPreVueContext() {
|
|
return preVueContext;
|
|
}
|
|
exports.getPreVueContext = getPreVueContext;
|
|
function getPreNVueContext() {
|
|
return preNVueContext;
|
|
}
|
|
exports.getPreNVueContext = getPreNVueContext;
|
|
function getPreUVueContext() {
|
|
return preUVueContext;
|
|
}
|
|
exports.getPreUVueContext = getPreUVueContext;
|
|
function initPreContext(platform, userPreContext, utsPlatform, isX) {
|
|
const vueContext = Object.create(null);
|
|
const nvueContext = Object.create(null);
|
|
const uvueContext = Object.create(null);
|
|
const defaultContext = Object.create(null);
|
|
DEFAULT_KEYS.forEach((key) => {
|
|
defaultContext[key] = false;
|
|
});
|
|
defaultContext.uniVersion = parseFloat(process.env.UNI_COMPILER_VERSION) || 0;
|
|
defaultContext[normalizeKey(platform)] = true;
|
|
vueContext.VUE3 = true;
|
|
nvueContext.VUE3 = true;
|
|
uvueContext.VUE3 = true;
|
|
if (isX) {
|
|
vueContext.UNI_APP_X = true;
|
|
nvueContext.UNI_APP_X = true;
|
|
uvueContext.UNI_APP_X = true;
|
|
}
|
|
if (platform === 'app' || platform === 'app-plus') {
|
|
defaultContext.APP = true;
|
|
defaultContext.APP_PLUS = true;
|
|
vueContext.APP_VUE = true;
|
|
nvueContext.APP_NVUE = true;
|
|
nvueContext.APP_PLUS_NVUE = true;
|
|
uvueContext.APP_UVUE = true;
|
|
if (utsPlatform === 'app-android') {
|
|
uvueContext.APP_ANDROID = true;
|
|
}
|
|
else if (utsPlatform === 'app-ios') {
|
|
uvueContext.APP_IOS = true;
|
|
}
|
|
}
|
|
else if (platform.startsWith('mp-')) {
|
|
defaultContext.MP = true;
|
|
}
|
|
else if (platform.startsWith('quickapp-webview')) {
|
|
defaultContext.QUICKAPP_WEBVIEW = true;
|
|
}
|
|
else if (platform === 'h5') {
|
|
defaultContext.WEB = true;
|
|
}
|
|
if (userPreContext) {
|
|
if ((0, shared_1.isString)(userPreContext)) {
|
|
try {
|
|
userPreContext = JSON.parse(userPreContext);
|
|
}
|
|
catch (e) { }
|
|
}
|
|
if ((0, shared_1.isPlainObject)(userPreContext)) {
|
|
Object.keys(userPreContext).forEach((key) => {
|
|
defaultContext[normalizeKey(key)] = !!userPreContext[key];
|
|
});
|
|
}
|
|
}
|
|
(0, shared_1.extend)(preVueContext, defaultContext, vueContext);
|
|
(0, shared_1.extend)(preNVueContext, defaultContext, nvueContext);
|
|
(0, shared_1.extend)(preUVueContext, defaultContext, uvueContext);
|
|
}
|
|
exports.initPreContext = initPreContext;
|
|
function normalizeKey(name) {
|
|
return name.replace(/-/g, '_').toUpperCase();
|
|
}
|