-
Notifications
You must be signed in to change notification settings - Fork 9
/
app.js
executable file
·86 lines (75 loc) · 2.13 KB
/
app.js
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*!
* Fresns 微信小程序 (https://fresns.cn)
* Copyright 2021-Present 唐杰
* Licensed under the Apache-2.0 license
*/
require('./libs/Mixins.js');
import { fresnsInit } from './sdk/services/init';
const listeners = []; // 监听事件
App({
/** 全局数据 **/
globalData: {
theme: 'light', // dark
mode: '', // 模式(care:关怀模式)
},
/** 监听小程序初始化 **/
onLaunch: async function () {
// 版本检测
if (wx.canIUse('getUpdateManager')) {
const updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate(function (res) {
if (res.hasUpdate) {
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,重新进入小程序使用新版',
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate();
}
},
});
});
updateManager.onUpdateFailed(function () {
wx.showModal({
title: '已经有新版本了哟~',
content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~',
showCancel: false,
confirmText: false,
});
});
}
});
}
},
/** 监听小程序启动 **/
onShow: async function () {
await fresnsInit();
},
/** 注册监听函数 **/
watchGlobalDataChanged(listener) {
if (listeners.indexOf(listener) < 0) {
listeners.push(listener);
}
},
/** 注销监听函数 **/
unWatchGlobalDataChanged(listener) {
const index = listeners.indexOf(listener);
if (index > -1) {
listeners.splice(index, 1);
}
},
/** 监听系统主题改变事件 **/
onThemeChange: function (result) {
this.changeGlobalData({
theme: result.theme,
});
},
/** 更新全局数据 **/
changeGlobalData(data) {
this.globalData = Object.assign({}, this.globalData, data);
listeners.forEach((listener) => {
listener(this.globalData);
});
},
});