-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublic.js
183 lines (165 loc) · 3.03 KB
/
public.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/**
* 显示消息提示框
* @param {String} title 提示内容
* @param {Object} param 可选
*/
// 阻止Toast展示期间被request的loading hide
// 导致toast一闪而过
let isShowToast = false
function showToast(title, param) {
if (!showToast.isEnable) return
const options = {
title,
icon: 'none',
mask: true,
duration: 1500,
...param
}
wx.showToast(options)
isShowToast = true
setTimeout(() => (isShowToast = false), options.duration)
}
function hideToast() {
isShowToast = false
wx.hideToast()
}
showToast.isEnable = true
/**
* Loading 加载
*/
class Loading {
static show(title = '加载中', param) {
isShowToast = false
wx.showLoading({
title,
...param
})
}
static hide() {
if (isShowToast) return
wx.hideLoading()
}
}
/**
* 显示模态弹窗
* @param {Object} param
* title: 标题
* content: 提示内容
* param: 剩余参数
*/
let isShow = false
function showModal(title = '提示', content, { success, fail, complete, ...param } = {}) {
return new Promise((resolve, reject) => {
if (!isShow) {
isShow = true
wx.showModal({
title,
content,
success: res => {
if (success) success(res)
resolve(res)
},
fail: error => {
if (fail) fail(error)
reject(error)
},
complete: data => {
if (complete) complete(data)
isShow = false
},
...param
})
}
})
}
/**
* 获取地理位置
* @param {String} type
*/
function getLocation(type = 'gcj02') {
return new Promise((resolve, reject) => {
wx.getLocation({
type,
success(res) {
resolve(res)
},
fail(res) {
reject(res)
}
})
})
}
class Storage {
/**
* 异步存储
* @param {String} key key
* @param {Object/String} data 存储的内容
* @param {Object} param 可选
*/
static set(key, data, param) {
wx.setStorage({
key,
data,
...param
})
}
/**
* 同步存储
* @param {String} key key
* @param {Object/String} data 存储的内容
*/
static setSync(key, data) {
wx.setStorageSync(key, data)
}
/**
* 异步获取
* @param {Object} param
* key: key
* success: 成功回调
* param: 剩余参数
*/
static get({ key, success, ...param }) {
wx.getStorage({
key,
success: res => {
success(res.data)
},
...param
})
}
/**
* 同步获取
* @param {String} key key
*/
static getSync(key) {
return wx.getStorageSync(key)
}
/**
* 异步删除
* @param {String} key key
*/
static remove({ key, success, ...param }) {
return wx.removeStorage({
key,
success(res) {
success && success(res)
},
...param
})
}
/**
* 同步删除
* @param {String} key key
*/
static removeSync(key) {
return wx.removeStorageSync(key)
}
}
export {
showToast,
hideToast,
Loading,
showModal,
getLocation,
Storage
}