提交 17a0c3ab 编写于 作者: Q qiang

chore: build

上级 95bf60f7
...@@ -725,11 +725,6 @@ const customize = cached((str) => { ...@@ -725,11 +725,6 @@ const customize = cached((str) => {
}); });
function initTriggerEvent (mpInstance) { function initTriggerEvent (mpInstance) {
{
if (!wx.canIUse || !wx.canIUse('nextTick')) {
return
}
}
const oldTriggerEvent = mpInstance.triggerEvent; const oldTriggerEvent = mpInstance.triggerEvent;
mpInstance.triggerEvent = function (event, ...args) { mpInstance.triggerEvent = function (event, ...args) {
return oldTriggerEvent.apply(mpInstance, [customize(event), ...args]) return oldTriggerEvent.apply(mpInstance, [customize(event), ...args])
......
import Vue from 'vue'; import Vue from 'vue';
import { initVueI18n } from '@dcloudio/uni-i18n'; import { initVueI18n } from '@dcloudio/uni-i18n';
let realAtob; let realAtob;
const b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; const b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
const b64re = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/; const b64re = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/;
if (typeof atob !== 'function') { if (typeof atob !== 'function') {
realAtob = function (str) { realAtob = function (str) {
str = String(str).replace(/[\t\n\f\r ]+/g, ''); str = String(str).replace(/[\t\n\f\r ]+/g, '');
if (!b64re.test(str)) { throw new Error("Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.") } if (!b64re.test(str)) { throw new Error("Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.") }
// Adding the padding if missing, for semplicity // Adding the padding if missing, for semplicity
str += '=='.slice(2 - (str.length & 3)); str += '=='.slice(2 - (str.length & 3));
var bitmap; var result = ''; var r1; var r2; var i = 0; var bitmap; var result = ''; var r1; var r2; var i = 0;
for (; i < str.length;) { for (; i < str.length;) {
bitmap = b64.indexOf(str.charAt(i++)) << 18 | b64.indexOf(str.charAt(i++)) << 12 | bitmap = b64.indexOf(str.charAt(i++)) << 18 | b64.indexOf(str.charAt(i++)) << 12 |
(r1 = b64.indexOf(str.charAt(i++))) << 6 | (r2 = b64.indexOf(str.charAt(i++))); (r1 = b64.indexOf(str.charAt(i++))) << 6 | (r2 = b64.indexOf(str.charAt(i++)));
result += r1 === 64 ? String.fromCharCode(bitmap >> 16 & 255) result += r1 === 64 ? String.fromCharCode(bitmap >> 16 & 255)
: r2 === 64 ? String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255) : r2 === 64 ? String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255)
: String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255, bitmap & 255); : String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255, bitmap & 255);
} }
return result return result
}; };
} else { } else {
// 注意atob只能在全局对象上调用,例如:`const Base64 = {atob};Base64.atob('xxxx')`是错误的用法 // 注意atob只能在全局对象上调用,例如:`const Base64 = {atob};Base64.atob('xxxx')`是错误的用法
realAtob = atob; realAtob = atob;
} }
function b64DecodeUnicode (str) { function b64DecodeUnicode (str) {
return decodeURIComponent(realAtob(str).split('').map(function (c) { return decodeURIComponent(realAtob(str).split('').map(function (c) {
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2) return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2)
}).join('')) }).join(''))
} }
function getCurrentUserInfo () { function getCurrentUserInfo () {
const token = ( wx).getStorageSync('uni_id_token') || ''; const token = ( wx).getStorageSync('uni_id_token') || '';
const tokenArr = token.split('.'); const tokenArr = token.split('.');
if (!token || tokenArr.length !== 3) { if (!token || tokenArr.length !== 3) {
return { return {
uid: null, uid: null,
role: [], role: [],
permission: [], permission: [],
tokenExpired: 0 tokenExpired: 0
} }
} }
let userInfo; let userInfo;
try { try {
userInfo = JSON.parse(b64DecodeUnicode(tokenArr[1])); userInfo = JSON.parse(b64DecodeUnicode(tokenArr[1]));
} catch (error) { } catch (error) {
throw new Error('获取当前用户信息出错,详细错误信息为:' + error.message) throw new Error('获取当前用户信息出错,详细错误信息为:' + error.message)
} }
userInfo.tokenExpired = userInfo.exp * 1000; userInfo.tokenExpired = userInfo.exp * 1000;
delete userInfo.exp; delete userInfo.exp;
delete userInfo.iat; delete userInfo.iat;
return userInfo return userInfo
} }
function uniIdMixin (Vue) { function uniIdMixin (Vue) {
Vue.prototype.uniIDHasRole = function (roleId) { Vue.prototype.uniIDHasRole = function (roleId) {
const { const {
role role
} = getCurrentUserInfo(); } = getCurrentUserInfo();
return role.indexOf(roleId) > -1 return role.indexOf(roleId) > -1
}; };
Vue.prototype.uniIDHasPermission = function (permissionId) { Vue.prototype.uniIDHasPermission = function (permissionId) {
const { const {
permission permission
} = getCurrentUserInfo(); } = getCurrentUserInfo();
return this.uniIDHasRole('admin') || permission.indexOf(permissionId) > -1 return this.uniIDHasRole('admin') || permission.indexOf(permissionId) > -1
}; };
Vue.prototype.uniIDTokenValid = function () { Vue.prototype.uniIDTokenValid = function () {
const { const {
tokenExpired tokenExpired
} = getCurrentUserInfo(); } = getCurrentUserInfo();
return tokenExpired > Date.now() return tokenExpired > Date.now()
}; };
} }
const _toString = Object.prototype.toString; const _toString = Object.prototype.toString;
...@@ -546,37 +546,37 @@ var previewImage = { ...@@ -546,37 +546,37 @@ var previewImage = {
} }
}; };
const UUID_KEY = '__DC_STAT_UUID'; const UUID_KEY = '__DC_STAT_UUID';
let deviceId; let deviceId;
function addUuid (result) { function addUuid (result) {
deviceId = deviceId || wx.getStorageSync(UUID_KEY); deviceId = deviceId || wx.getStorageSync(UUID_KEY);
if (!deviceId) { if (!deviceId) {
deviceId = Date.now() + '' + Math.floor(Math.random() * 1e7); deviceId = Date.now() + '' + Math.floor(Math.random() * 1e7);
wx.setStorage({ wx.setStorage({
key: UUID_KEY, key: UUID_KEY,
data: deviceId data: deviceId
}); });
} }
result.deviceId = deviceId; result.deviceId = deviceId;
} }
function addSafeAreaInsets (result) { function addSafeAreaInsets (result) {
if (result.safeArea) { if (result.safeArea) {
const safeArea = result.safeArea; const safeArea = result.safeArea;
result.safeAreaInsets = { result.safeAreaInsets = {
top: safeArea.top, top: safeArea.top,
left: safeArea.left, left: safeArea.left,
right: result.windowWidth - safeArea.right, right: result.windowWidth - safeArea.right,
bottom: result.windowHeight - safeArea.bottom bottom: result.windowHeight - safeArea.bottom
}; };
} }
} }
var getSystemInfo = { var getSystemInfo = {
returnValue: function (result) { returnValue: function (result) {
addUuid(result); addUuid(result);
addSafeAreaInsets(result); addSafeAreaInsets(result);
} }
}; };
// import navigateTo from 'uni-helpers/navigate-to' // import navigateTo from 'uni-helpers/navigate-to'
...@@ -1431,172 +1431,172 @@ function getEventChannel (id) { ...@@ -1431,172 +1431,172 @@ function getEventChannel (id) {
return eventChannelStack.shift() return eventChannelStack.shift()
} }
const hooks = [ const hooks = [
'onShow', 'onShow',
'onHide', 'onHide',
'onError', 'onError',
'onPageNotFound', 'onPageNotFound',
'onThemeChange', 'onThemeChange',
'onUnhandledRejection' 'onUnhandledRejection'
]; ];
function initEventChannel () { function initEventChannel () {
Vue.prototype.getOpenerEventChannel = function () { Vue.prototype.getOpenerEventChannel = function () {
// 微信小程序使用自身getOpenerEventChannel // 微信小程序使用自身getOpenerEventChannel
{ {
return this.$scope.getOpenerEventChannel() return this.$scope.getOpenerEventChannel()
} }
}; };
const callHook = Vue.prototype.__call_hook; const callHook = Vue.prototype.__call_hook;
Vue.prototype.__call_hook = function (hook, args) { Vue.prototype.__call_hook = function (hook, args) {
if (hook === 'onLoad' && args && args.__id__) { if (hook === 'onLoad' && args && args.__id__) {
this.__eventChannel__ = getEventChannel(args.__id__); this.__eventChannel__ = getEventChannel(args.__id__);
delete args.__id__; delete args.__id__;
} }
return callHook.call(this, hook, args) return callHook.call(this, hook, args)
}; };
} }
function initScopedSlotsParams () { function initScopedSlotsParams () {
const center = {}; const center = {};
const parents = {}; const parents = {};
Vue.prototype.$hasScopedSlotsParams = function (vueId) { Vue.prototype.$hasScopedSlotsParams = function (vueId) {
const has = center[vueId]; const has = center[vueId];
if (!has) { if (!has) {
parents[vueId] = this; parents[vueId] = this;
this.$on('hook:destory', () => { this.$on('hook:destory', () => {
delete parents[vueId]; delete parents[vueId];
}); });
} }
return has return has
}; };
Vue.prototype.$getScopedSlotsParams = function (vueId, name, key) { Vue.prototype.$getScopedSlotsParams = function (vueId, name, key) {
const data = center[vueId]; const data = center[vueId];
if (data) { if (data) {
const object = data[name] || {}; const object = data[name] || {};
return key ? object[key] : object return key ? object[key] : object
} else { } else {
parents[vueId] = this; parents[vueId] = this;
this.$on('hook:destory', () => { this.$on('hook:destory', () => {
delete parents[vueId]; delete parents[vueId];
}); });
} }
}; };
Vue.prototype.$setScopedSlotsParams = function (name, value) { Vue.prototype.$setScopedSlotsParams = function (name, value) {
const vueIds = this.$options.propsData.vueId; const vueIds = this.$options.propsData.vueId;
if (vueIds) { if (vueIds) {
const vueId = vueIds.split(',')[0]; const vueId = vueIds.split(',')[0];
const object = center[vueId] = center[vueId] || {}; const object = center[vueId] = center[vueId] || {};
object[name] = value; object[name] = value;
if (parents[vueId]) { if (parents[vueId]) {
parents[vueId].$forceUpdate(); parents[vueId].$forceUpdate();
} }
} }
}; };
Vue.mixin({ Vue.mixin({
destroyed () { destroyed () {
const propsData = this.$options.propsData; const propsData = this.$options.propsData;
const vueId = propsData && propsData.vueId; const vueId = propsData && propsData.vueId;
if (vueId) { if (vueId) {
delete center[vueId]; delete center[vueId];
delete parents[vueId]; delete parents[vueId];
} }
} }
}); });
} }
function parseBaseApp (vm, { function parseBaseApp (vm, {
mocks, mocks,
initRefs initRefs
}) { }) {
initEventChannel(); initEventChannel();
{ {
initScopedSlotsParams(); initScopedSlotsParams();
} }
if (vm.$options.store) { if (vm.$options.store) {
Vue.prototype.$store = vm.$options.store; Vue.prototype.$store = vm.$options.store;
} }
uniIdMixin(Vue); uniIdMixin(Vue);
Vue.prototype.mpHost = "mp-weixin"; Vue.prototype.mpHost = "mp-weixin";
Vue.mixin({ Vue.mixin({
beforeCreate () { beforeCreate () {
if (!this.$options.mpType) { if (!this.$options.mpType) {
return return
} }
this.mpType = this.$options.mpType; this.mpType = this.$options.mpType;
this.$mp = { this.$mp = {
data: {}, data: {},
[this.mpType]: this.$options.mpInstance [this.mpType]: this.$options.mpInstance
}; };
this.$scope = this.$options.mpInstance; this.$scope = this.$options.mpInstance;
delete this.$options.mpType; delete this.$options.mpType;
delete this.$options.mpInstance; delete this.$options.mpInstance;
if (this.mpType === 'page' && typeof getApp === 'function') { // hack vue-i18n if (this.mpType === 'page' && typeof getApp === 'function') { // hack vue-i18n
const app = getApp(); const app = getApp();
if (app.$vm && app.$vm.$i18n) { if (app.$vm && app.$vm.$i18n) {
this._i18n = app.$vm.$i18n; this._i18n = app.$vm.$i18n;
} }
} }
if (this.mpType !== 'app') { if (this.mpType !== 'app') {
initRefs(this); initRefs(this);
initMocks(this, mocks); initMocks(this, mocks);
} }
} }
}); });
const appOptions = { const appOptions = {
onLaunch (args) { onLaunch (args) {
if (this.$vm) { // 已经初始化过了,主要是为了百度,百度 onShow 在 onLaunch 之前 if (this.$vm) { // 已经初始化过了,主要是为了百度,百度 onShow 在 onLaunch 之前
return return
} }
{ {
if (wx.canIUse && !wx.canIUse('nextTick')) { // 事实 上2.2.3 即可,简单使用 2.3.0 的 nextTick 判断 if (wx.canIUse && !wx.canIUse('nextTick')) { // 事实 上2.2.3 即可,简单使用 2.3.0 的 nextTick 判断
console.error('当前微信基础库版本过低,请将 微信开发者工具-详情-项目设置-调试基础库版本 更换为`2.3.0`以上'); console.error('当前微信基础库版本过低,请将 微信开发者工具-详情-项目设置-调试基础库版本 更换为`2.3.0`以上');
} }
} }
this.$vm = vm; this.$vm = vm;
this.$vm.$mp = { this.$vm.$mp = {
app: this app: this
}; };
this.$vm.$scope = this; this.$vm.$scope = this;
// vm 上也挂载 globalData // vm 上也挂载 globalData
this.$vm.globalData = this.globalData; this.$vm.globalData = this.globalData;
this.$vm._isMounted = true; this.$vm._isMounted = true;
this.$vm.__call_hook('mounted', args); this.$vm.__call_hook('mounted', args);
this.$vm.__call_hook('onLaunch', args); this.$vm.__call_hook('onLaunch', args);
} }
}; };
// 兼容旧版本 globalData // 兼容旧版本 globalData
appOptions.globalData = vm.$options.globalData || {}; appOptions.globalData = vm.$options.globalData || {};
// 将 methods 中的方法挂在 getApp() 中 // 将 methods 中的方法挂在 getApp() 中
const methods = vm.$options.methods; const methods = vm.$options.methods;
if (methods) { if (methods) {
Object.keys(methods).forEach(name => { Object.keys(methods).forEach(name => {
appOptions[name] = methods[name]; appOptions[name] = methods[name];
}); });
} }
initAppLocale(Vue, vm, wx.getSystemInfoSync().language || 'zh-Hans'); initAppLocale(Vue, vm, wx.getSystemInfoSync().language || 'zh-Hans');
initHooks(appOptions, hooks); initHooks(appOptions, hooks);
return appOptions return appOptions
} }
const mocks = ['__route__', '__wxExparserNodeId__', '__wxWebviewId__']; const mocks = ['__route__', '__wxExparserNodeId__', '__wxWebviewId__'];
...@@ -1932,23 +1932,23 @@ function createSubpackageApp (vm) { ...@@ -1932,23 +1932,23 @@ function createSubpackageApp (vm) {
return vm return vm
} }
function createPlugin (vm) { function createPlugin (vm) {
const appOptions = parseApp(vm); const appOptions = parseApp(vm);
if (isFn(appOptions.onShow) && wx.onAppShow) { if (isFn(appOptions.onShow) && wx.onAppShow) {
wx.onAppShow((...args) => { wx.onAppShow((...args) => {
appOptions.onShow.apply(vm, args); appOptions.onShow.apply(vm, args);
}); });
} }
if (isFn(appOptions.onHide) && wx.onAppHide) { if (isFn(appOptions.onHide) && wx.onAppHide) {
wx.onAppHide((...args) => { wx.onAppHide((...args) => {
appOptions.onHide.apply(vm, args); appOptions.onHide.apply(vm, args);
}); });
} }
if (isFn(appOptions.onLaunch)) { if (isFn(appOptions.onLaunch)) {
const args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync(); const args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync();
appOptions.onLaunch.call(vm, args); appOptions.onLaunch.call(vm, args);
} }
return vm return vm
} }
todos.forEach(todoApi => { todos.forEach(todoApi => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册