@mpxjs/api-proxy 2.10.3-beta.4 → 2.10.4-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/common/js/promisify.js +1 -2
- package/src/platform/api/action-sheet/rnActionSheet.jsx +87 -19
- package/src/platform/api/clipboard-data/rnClipboard.js +45 -45
- package/src/platform/api/create-intersection-observer/rnIntersectionObserver.js +8 -15
- package/src/platform/api/modal/rnModal.jsx +9 -10
- package/src/platform/api/route/index.ios.js +2 -45
- package/src/platform/api/route/index.js +1 -7
- package/src/platform/api/route/index.web.js +2 -8
- package/src/platform/api/screen-brightness/index.ali.js +0 -1
- package/src/platform/api/screen-brightness/rnScreenBrightness.js +41 -41
- package/src/platform/api/system/index.ios.js +1 -1
- package/src/platform/api/toast/rnToast.jsx +18 -11
- package/src/platform/index.js +2 -2
- package/src/platform/api/clipboard-data/index.ios.js +0 -1
- package/src/platform/api/screen-brightness/index.ios.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/api-proxy",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.4-beta.1",
|
|
4
4
|
"description": "convert miniprogram API at each end",
|
|
5
5
|
"module": "src/index.js",
|
|
6
6
|
"types": "@types/index.d.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://github.com/didi/mpx#readme",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@mpxjs/utils": "^2.10.
|
|
40
|
+
"@mpxjs/utils": "^2.10.4",
|
|
41
41
|
"axios": "^1.7.3"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
@@ -76,7 +76,7 @@ const styles = StyleSheet.create({
|
|
|
76
76
|
}
|
|
77
77
|
})
|
|
78
78
|
|
|
79
|
-
function ActionSheet ({itemColor, height, success, fail, complete, alertText, itemList}) {
|
|
79
|
+
function ActionSheet ({ itemColor, height, success, fail, complete, alertText, itemList }) {
|
|
80
80
|
const slide = useSharedValue(height)
|
|
81
81
|
const fade = useSharedValue(0)
|
|
82
82
|
const [selectedIndex, setSelectedIndex] = useState(null)
|
|
@@ -131,20 +131,79 @@ function ActionSheet ({itemColor, height, success, fail, complete, alertText, it
|
|
|
131
131
|
return (
|
|
132
132
|
<View style={styles.actionAction}>
|
|
133
133
|
<Animated.View style={[styles.maskWrap, maskAnimatedStyles]}>
|
|
134
|
-
<View
|
|
134
|
+
<View
|
|
135
|
+
activeOpacity={1}
|
|
136
|
+
style={styles.actionActionMask}
|
|
137
|
+
onTouchEnd={cancelAction}
|
|
138
|
+
></View>
|
|
135
139
|
</Animated.View>
|
|
136
|
-
<Animated.View
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
140
|
+
<Animated.View
|
|
141
|
+
style={[styles.actionSheetContent, actionAnimatedStyles]}
|
|
142
|
+
>
|
|
143
|
+
{alertText
|
|
144
|
+
? (
|
|
145
|
+
<View style={styles.itemStyle}>
|
|
146
|
+
<Text
|
|
147
|
+
style={[styles.itemTextStyle, { color: '#666666' }]}
|
|
148
|
+
>
|
|
149
|
+
{alertText}
|
|
150
|
+
</Text>
|
|
151
|
+
</View>
|
|
152
|
+
)
|
|
153
|
+
: null}
|
|
154
|
+
{itemList.map((item, index) => (
|
|
155
|
+
<View
|
|
156
|
+
onTouchStart={() => startHandle(index)}
|
|
157
|
+
onTouchEnd={() => selectAction(index)}
|
|
158
|
+
key={index}
|
|
159
|
+
style={[
|
|
160
|
+
styles.itemStyle,
|
|
161
|
+
itemList.length - 1 === index
|
|
162
|
+
? {
|
|
163
|
+
borderBottomWidth: 6,
|
|
164
|
+
borderBottomStyle: 'solid',
|
|
165
|
+
borderBottomColor: '#f7f7f7'
|
|
166
|
+
}
|
|
167
|
+
: {},
|
|
168
|
+
selectedIndex === index
|
|
169
|
+
? {
|
|
170
|
+
backgroundColor: '#ececec'
|
|
171
|
+
}
|
|
172
|
+
: {}
|
|
173
|
+
]}
|
|
174
|
+
>
|
|
175
|
+
<Text
|
|
176
|
+
style={[styles.itemTextStyle, { color: itemColor }]}
|
|
177
|
+
>
|
|
178
|
+
{item}
|
|
179
|
+
</Text>
|
|
180
|
+
</View>
|
|
181
|
+
))}
|
|
182
|
+
<View
|
|
183
|
+
style={[
|
|
184
|
+
styles.buttonStyle,
|
|
185
|
+
selectedIndex === -1
|
|
186
|
+
? {
|
|
187
|
+
backgroundColor: '#ececec'
|
|
188
|
+
}
|
|
189
|
+
: {}
|
|
190
|
+
]}
|
|
191
|
+
onTouchStart={() => startHandle(-1)}
|
|
192
|
+
onTouchEnd={cancelAction}
|
|
193
|
+
>
|
|
194
|
+
<Text
|
|
195
|
+
style={{
|
|
196
|
+
color: '#000000',
|
|
197
|
+
fontSize: 18,
|
|
198
|
+
lineHeight: 22,
|
|
199
|
+
height: 22,
|
|
200
|
+
width: '100%',
|
|
201
|
+
textAlign: 'center'
|
|
202
|
+
}}
|
|
203
|
+
>
|
|
204
|
+
取消
|
|
205
|
+
</Text>
|
|
206
|
+
</View>
|
|
148
207
|
</Animated.View>
|
|
149
208
|
</View>
|
|
150
209
|
)
|
|
@@ -169,11 +228,20 @@ function showActionSheet (options = {}) {
|
|
|
169
228
|
return
|
|
170
229
|
}
|
|
171
230
|
const height = len * 53 + 46 + bottom + (alertText ? 52 : 0)
|
|
172
|
-
|
|
173
|
-
const actionSheetKey = Portal.add(
|
|
231
|
+
|
|
232
|
+
const actionSheetKey = Portal.add(
|
|
233
|
+
<ActionSheet
|
|
234
|
+
itemColor={itemColor}
|
|
235
|
+
height={height}
|
|
236
|
+
success={success}
|
|
237
|
+
fail={fail}
|
|
238
|
+
complete={complete}
|
|
239
|
+
alertText={alertText}
|
|
240
|
+
itemList={itemList}
|
|
241
|
+
/>,
|
|
242
|
+
id
|
|
243
|
+
)
|
|
174
244
|
actionSheetMap.set(id, actionSheetKey)
|
|
175
245
|
}
|
|
176
246
|
|
|
177
|
-
export {
|
|
178
|
-
showActionSheet
|
|
179
|
-
}
|
|
247
|
+
export { showActionSheet }
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
import { successHandle, failHandle } from '../../../common/js'
|
|
2
|
-
import { type } from '@mpxjs/utils'
|
|
3
|
-
import { getStringAsync, setStringAsync } from 'expo-clipboard'
|
|
1
|
+
// import { successHandle, failHandle } from '../../../common/js'
|
|
2
|
+
// import { type } from '@mpxjs/utils'
|
|
3
|
+
// import { getStringAsync, setStringAsync } from 'expo-clipboard'
|
|
4
4
|
|
|
5
|
-
const setClipboardData = function (options = {}) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
5
|
+
// const setClipboardData = function (options = {}) {
|
|
6
|
+
// const { data, success, fail, complete } = options
|
|
7
|
+
// if (!data || type(data) !== 'String') {
|
|
8
|
+
// const errStr = !data ? 'parameter.data should be String instead of Undefined;' : `parameter.data should be String instead of ${type(data)};`
|
|
9
|
+
// const result = {
|
|
10
|
+
// errno: 1001,
|
|
11
|
+
// errMsg: errStr
|
|
12
|
+
// }
|
|
13
|
+
// failHandle(result, fail, complete)
|
|
14
|
+
// return
|
|
15
|
+
// }
|
|
16
|
+
// setStringAsync(data).then(() => {
|
|
17
|
+
// const result = {
|
|
18
|
+
// errMsg: 'setClipboardData:ok'
|
|
19
|
+
// }
|
|
20
|
+
// successHandle(result, success, complete)
|
|
21
|
+
// }).catch((e) => {
|
|
22
|
+
// const result = {
|
|
23
|
+
// errMsg: `setClipboardData:fail ${e}`
|
|
24
|
+
// }
|
|
25
|
+
// failHandle(result, fail, complete)
|
|
26
|
+
// })
|
|
27
|
+
// }
|
|
28
28
|
|
|
29
|
-
const getClipboardData = function (options = {}) {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
29
|
+
// const getClipboardData = function (options = {}) {
|
|
30
|
+
// const { success, fail, complete } = options
|
|
31
|
+
// getStringAsync().then((data) => {
|
|
32
|
+
// const result = {
|
|
33
|
+
// data,
|
|
34
|
+
// errMsg: 'getClipboardData:ok'
|
|
35
|
+
// }
|
|
36
|
+
// successHandle(result, success, complete)
|
|
37
|
+
// }).catch((e) => {
|
|
38
|
+
// const result = {
|
|
39
|
+
// errMsg: `getClipboardData:fail ${e}`
|
|
40
|
+
// }
|
|
41
|
+
// failHandle(result, fail, complete)
|
|
42
|
+
// })
|
|
43
|
+
// }
|
|
44
44
|
|
|
45
|
-
export {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
45
|
+
// export {
|
|
46
|
+
// setClipboardData,
|
|
47
|
+
// getClipboardData
|
|
48
|
+
// }
|
|
@@ -105,7 +105,6 @@ class RNIntersectionObserver {
|
|
|
105
105
|
right: navigationLayout.width + this.margins.right,
|
|
106
106
|
bottom: navigationLayout.y + navigationLayout.height + this.margins.bottom
|
|
107
107
|
}
|
|
108
|
-
|
|
109
108
|
this.windowRect = windowRect
|
|
110
109
|
return this.windowRect
|
|
111
110
|
}
|
|
@@ -153,19 +152,16 @@ class RNIntersectionObserver {
|
|
|
153
152
|
return Math.min(Math.max(start, value), end)
|
|
154
153
|
}
|
|
155
154
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
let
|
|
155
|
+
_getRatioIndex (ratio, thresholds = []) {
|
|
156
|
+
if (ratio === 0 && thresholds.includes(0)) return -1
|
|
157
|
+
if (ratio === 1 && thresholds.includes(1)) return thresholds.length
|
|
158
|
+
let returnIndex = -1
|
|
160
159
|
thresholds.forEach((item, index) => {
|
|
161
|
-
if (
|
|
162
|
-
|
|
163
|
-
}
|
|
164
|
-
if (previousIntersectionRatio >= item) {
|
|
165
|
-
previousIndex = index
|
|
160
|
+
if (ratio >= item) {
|
|
161
|
+
returnIndex = index
|
|
166
162
|
}
|
|
167
163
|
})
|
|
168
|
-
return
|
|
164
|
+
return returnIndex
|
|
169
165
|
}
|
|
170
166
|
|
|
171
167
|
// 计算相交区域
|
|
@@ -180,10 +176,8 @@ class RNIntersectionObserver {
|
|
|
180
176
|
const targetArea = (observeRect.bottom - observeRect.top) * (observeRect.right - observeRect.left)
|
|
181
177
|
const visibleArea = (visibleRect.bottom - visibleRect.top) * (visibleRect.right - visibleRect.left)
|
|
182
178
|
const intersectionRatio = targetArea ? visibleArea / targetArea : 0
|
|
183
|
-
|
|
184
|
-
const isInsected = isInit ? intersectionRatio > this.initialRatio : this._isInsectedFn(intersectionRatio, this.previousIntersectionRatio[observeIndex], this.thresholds)
|
|
179
|
+
const isInsected = isInit ? intersectionRatio > this.initialRatio : !(this._getRatioIndex(intersectionRatio, this.thresholds) === this._getRatioIndex(this.previousIntersectionRatio[observeIndex], this.thresholds))
|
|
185
180
|
this.previousIntersectionRatio[observeIndex] = intersectionRatio
|
|
186
|
-
|
|
187
181
|
return {
|
|
188
182
|
intersectionRatio,
|
|
189
183
|
intersectionRect: {
|
|
@@ -217,7 +211,6 @@ class RNIntersectionObserver {
|
|
|
217
211
|
relativeRect,
|
|
218
212
|
isInit
|
|
219
213
|
})
|
|
220
|
-
// 初次调用的
|
|
221
214
|
if (isInsected) {
|
|
222
215
|
this.callback({
|
|
223
216
|
// index: index,
|
|
@@ -88,7 +88,7 @@ const showModal = function (options = {}) {
|
|
|
88
88
|
flex: 1,
|
|
89
89
|
textAlign: 'center',
|
|
90
90
|
paddingTop: width * 0.04,
|
|
91
|
-
paddingBottom: width * 0.04
|
|
91
|
+
paddingBottom: width * 0.04
|
|
92
92
|
},
|
|
93
93
|
modalButton: {
|
|
94
94
|
width: '100%',
|
|
@@ -98,14 +98,13 @@ const showModal = function (options = {}) {
|
|
|
98
98
|
cancelStyle: {
|
|
99
99
|
borderRightWidth: StyleSheet.hairlineWidth,
|
|
100
100
|
borderRightColor: 'rgba(0,0,0,0.2)',
|
|
101
|
-
borderStyle: 'solid'
|
|
101
|
+
borderStyle: 'solid'
|
|
102
102
|
}
|
|
103
103
|
})
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
let modalButton = [{
|
|
104
|
+
const modalTitle = []
|
|
105
|
+
const modalContent = []
|
|
106
|
+
const editableContent = []
|
|
107
|
+
const modalButton = [{
|
|
109
108
|
text: confirmText,
|
|
110
109
|
type: 'confirm',
|
|
111
110
|
color: confirmColor
|
|
@@ -116,7 +115,7 @@ const showModal = function (options = {}) {
|
|
|
116
115
|
}
|
|
117
116
|
const closeModal = function (buttonInfo) {
|
|
118
117
|
const modalKey = getCurrentModalKey()
|
|
119
|
-
if(modalKey) {
|
|
118
|
+
if (modalKey) {
|
|
120
119
|
Portal.remove(modalKey)
|
|
121
120
|
}
|
|
122
121
|
const result = {
|
|
@@ -153,7 +152,7 @@ const showModal = function (options = {}) {
|
|
|
153
152
|
color: cancelColor
|
|
154
153
|
})
|
|
155
154
|
}
|
|
156
|
-
ModalView = <View style={styles.modalTask}>
|
|
155
|
+
const ModalView = <View style={styles.modalTask}>
|
|
157
156
|
<View style={styles.modalContent}>
|
|
158
157
|
{modalTitle.map((item, index) => <View key={index}><Text style={styles.modalTitleText}>{item}</Text></View>)}
|
|
159
158
|
{modalContent.map((item, index) => <ScrollView key={index} style={styles.contentBox}><Text style={styles.modalContentText}>{item}</Text></ScrollView>)}
|
|
@@ -171,7 +170,7 @@ const showModal = function (options = {}) {
|
|
|
171
170
|
paddingRight: 10
|
|
172
171
|
}} onChangeText={text => onChangeText(text)} defaultValue={content}></TextInput></View>)}
|
|
173
172
|
<View style={styles.modalBtnBox}>
|
|
174
|
-
{modalButton.map((item, index) => <TouchableOpacity key={index} style={[
|
|
173
|
+
{modalButton.map((item, index) => <TouchableOpacity key={index} style={[styles.modalBtn, item.style]} onPress={() => closeModal(item)}><Text style={[styles.modalButton, { color: item.color }]}>{item.text}</Text></TouchableOpacity>)}
|
|
175
174
|
</View>
|
|
176
175
|
</View>
|
|
177
176
|
</View>
|
|
@@ -34,7 +34,7 @@ function resolvePath (relative, base) {
|
|
|
34
34
|
return stack.join('/')
|
|
35
35
|
}
|
|
36
36
|
let timerId = null
|
|
37
|
-
function isLock (navigationHelper
|
|
37
|
+
function isLock (navigationHelper, type, options) {
|
|
38
38
|
if (navigationHelper.lastSuccessCallback && navigationHelper.lastFailCallback) {
|
|
39
39
|
const res = { errMsg: `${type}:fail the previous routing event didn't complete` }
|
|
40
40
|
failHandle(res, options.fail, options.complete)
|
|
@@ -156,53 +156,10 @@ function switchTab () {
|
|
|
156
156
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
function reset (options = {}) {
|
|
160
|
-
const routes = options.routes || []
|
|
161
|
-
if (!routes.length) {
|
|
162
|
-
const res = { errMsg: 'reset:fail routes cannot be an empty array' }
|
|
163
|
-
failHandle(res, options.fail, options.complete)
|
|
164
|
-
return
|
|
165
|
-
}
|
|
166
|
-
const resetOption = Object.keys(options).reduce((resOpt, key) => {
|
|
167
|
-
if (key !== 'fail' && key !== 'complete' && key !== 'success') {
|
|
168
|
-
resOpt[key] = options[key]
|
|
169
|
-
}
|
|
170
|
-
return resOpt
|
|
171
|
-
}, {})
|
|
172
|
-
const navigation = Object.values(global.__mpxPagesMap || {})[0]?.[1]
|
|
173
|
-
const navigationHelper = global.__navigationHelper
|
|
174
|
-
if (isLock(navigationHelper, 'reset', options)) {
|
|
175
|
-
return
|
|
176
|
-
}
|
|
177
|
-
if (navigation && navigationHelper) {
|
|
178
|
-
navigation.reset(Object.assign(resetOption, {
|
|
179
|
-
index: routes.length - 1
|
|
180
|
-
}))
|
|
181
|
-
navigationHelper.lastSuccessCallback = () => {
|
|
182
|
-
const res = { errMsg: 'reset:ok' }
|
|
183
|
-
successHandle(res, options.success, options.complete)
|
|
184
|
-
}
|
|
185
|
-
navigationHelper.lastFailCallback = (msg) => {
|
|
186
|
-
const res = { errMsg: `reset:fail ${msg}` }
|
|
187
|
-
failHandle(res, options.fail, options.complete)
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
function getState () {
|
|
193
|
-
const navigation = Object.values(global.__mpxPagesMap || {})[0]?.[1]
|
|
194
|
-
if (navigation) {
|
|
195
|
-
return navigation.getState()
|
|
196
|
-
}
|
|
197
|
-
return {}
|
|
198
|
-
}
|
|
199
|
-
|
|
200
159
|
export {
|
|
201
160
|
redirectTo,
|
|
202
161
|
navigateTo,
|
|
203
162
|
navigateBack,
|
|
204
163
|
reLaunch,
|
|
205
|
-
switchTab
|
|
206
|
-
reset,
|
|
207
|
-
getState
|
|
164
|
+
switchTab
|
|
208
165
|
}
|
|
@@ -10,16 +10,10 @@ const reLaunch = ENV_OBJ.reLaunch || envError('reLaunch')
|
|
|
10
10
|
|
|
11
11
|
const switchTab = ENV_OBJ.switchTab || envError('switchTab')
|
|
12
12
|
|
|
13
|
-
const reset = envError('reset')
|
|
14
|
-
|
|
15
|
-
const getState = envError('getState')
|
|
16
|
-
|
|
17
13
|
export {
|
|
18
14
|
redirectTo,
|
|
19
15
|
navigateTo,
|
|
20
16
|
navigateBack,
|
|
21
17
|
reLaunch,
|
|
22
|
-
switchTab
|
|
23
|
-
reset,
|
|
24
|
-
getState
|
|
18
|
+
switchTab
|
|
25
19
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { successHandle, failHandle, isTabBarPage, throwSSRWarning, isBrowser
|
|
1
|
+
import { successHandle, failHandle, isTabBarPage, throwSSRWarning, isBrowser } from '../../../common/js'
|
|
2
2
|
import { EventChannel } from '../event-channel'
|
|
3
3
|
|
|
4
4
|
let routeCount = 0
|
|
@@ -183,16 +183,10 @@ function switchTab (options = {}) {
|
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
-
const reset = envError('reset')
|
|
187
|
-
|
|
188
|
-
const getState = envError('getState')
|
|
189
|
-
|
|
190
186
|
export {
|
|
191
187
|
redirectTo,
|
|
192
188
|
navigateTo,
|
|
193
189
|
navigateBack,
|
|
194
190
|
reLaunch,
|
|
195
|
-
switchTab
|
|
196
|
-
reset,
|
|
197
|
-
getState
|
|
191
|
+
switchTab
|
|
198
192
|
}
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
import * as Brightness from 'expo-brightness'
|
|
2
|
-
import { successHandle, failHandle, envError } from '../../../common/js'
|
|
1
|
+
// import * as Brightness from 'expo-brightness'
|
|
2
|
+
// import { successHandle, failHandle, envError } from '../../../common/js'
|
|
3
3
|
|
|
4
|
-
function getScreenBrightness (options = {}) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
4
|
+
// function getScreenBrightness (options = {}) {
|
|
5
|
+
// const { success, fail, complete } = options
|
|
6
|
+
// Brightness.getBrightnessAsync().then(value => {
|
|
7
|
+
// const result = {
|
|
8
|
+
// errMsg: 'getScreenBrightness:ok',
|
|
9
|
+
// value
|
|
10
|
+
// }
|
|
11
|
+
// successHandle(result, success, complete)
|
|
12
|
+
// }).catch(() => {
|
|
13
|
+
// const result = {
|
|
14
|
+
// errMsg: 'getScreenBrightness:fail'
|
|
15
|
+
// }
|
|
16
|
+
// failHandle(result, fail, complete)
|
|
17
|
+
// })
|
|
18
|
+
// }
|
|
19
19
|
|
|
20
|
-
function setScreenBrightness (options = {}) {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
20
|
+
// function setScreenBrightness (options = {}) {
|
|
21
|
+
// const { value, success, fail, complete } = options
|
|
22
|
+
// Brightness.setBrightnessAsync(value).then(() => {
|
|
23
|
+
// const result = {
|
|
24
|
+
// errMsg: 'setScreenBrightness:ok'
|
|
25
|
+
// }
|
|
26
|
+
// successHandle(result, success, complete)
|
|
27
|
+
// }).catch(() => {
|
|
28
|
+
// const result = {
|
|
29
|
+
// errMsg: 'setScreenBrightness:fail'
|
|
30
|
+
// }
|
|
31
|
+
// failHandle(result, fail, complete)
|
|
32
|
+
// })
|
|
33
|
+
// }
|
|
34
34
|
|
|
35
|
-
const setVisualEffectOnCapture = envError('setVisualEffectOnCapture')
|
|
35
|
+
// const setVisualEffectOnCapture = envError('setVisualEffectOnCapture')
|
|
36
36
|
|
|
37
|
-
const onUserCaptureScreen = envError('onUserCaptureScreen')
|
|
37
|
+
// const onUserCaptureScreen = envError('onUserCaptureScreen')
|
|
38
38
|
|
|
39
|
-
const offUserCaptureScreen = envError('offUserCaptureScreen')
|
|
39
|
+
// const offUserCaptureScreen = envError('offUserCaptureScreen')
|
|
40
40
|
|
|
41
|
-
export {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
41
|
+
// export {
|
|
42
|
+
// getScreenBrightness,
|
|
43
|
+
// setScreenBrightness,
|
|
44
|
+
// setVisualEffectOnCapture,
|
|
45
|
+
// onUserCaptureScreen,
|
|
46
|
+
// offUserCaptureScreen
|
|
47
|
+
// }
|
|
@@ -59,7 +59,7 @@ const getSystemInfo = function (options = {}) {
|
|
|
59
59
|
|
|
60
60
|
const getDeviceInfo = function () {
|
|
61
61
|
const deviceInfo = {}
|
|
62
|
-
if (__mpx_mode__
|
|
62
|
+
if (__mpx_mode__ !== 'ios') {
|
|
63
63
|
const deviceAbi = DeviceInfo.supported64BitAbisSync() || []
|
|
64
64
|
deviceInfo.deviceAbi = deviceAbi[0] || null
|
|
65
65
|
}
|
|
@@ -27,7 +27,7 @@ const styles = StyleSheet.create({
|
|
|
27
27
|
top: 0,
|
|
28
28
|
bottom: 0,
|
|
29
29
|
zIndex: 10000,
|
|
30
|
-
position:
|
|
30
|
+
position: 'absolute',
|
|
31
31
|
display: 'flex',
|
|
32
32
|
alignItems: 'center'
|
|
33
33
|
},
|
|
@@ -77,14 +77,14 @@ function showToast (options = {}) {
|
|
|
77
77
|
const pointerEvents = mask ? 'auto' : 'none'
|
|
78
78
|
isLoadingShow = isLoading
|
|
79
79
|
if (image || icon === 'success' || icon === 'error') {
|
|
80
|
-
ToastView = <View style={[styles.toastWrap, {pointerEvents}]}>
|
|
80
|
+
ToastView = <View style={[styles.toastWrap, { pointerEvents }]}>
|
|
81
81
|
<View style={[styles.toastContent, styles.toastHasIcon]}>
|
|
82
|
-
<Image style={ styles.toastImg } source={{uri: image || iconImg[icon]}}></Image>
|
|
82
|
+
<Image style={ styles.toastImg } source={{ uri: image || iconImg[icon] }}></Image>
|
|
83
83
|
{ title ? <Text style={styles.toastText}>{title}</Text> : null }
|
|
84
84
|
</View>
|
|
85
85
|
</View>
|
|
86
86
|
} else if (icon === 'loading') {
|
|
87
|
-
ToastView = <View
|
|
87
|
+
ToastView = <View style={[styles.toastWrap, { pointerEvents }]}>
|
|
88
88
|
<View style={[styles.toastContent, styles.toastHasIcon]}>
|
|
89
89
|
<ActivityIndicator
|
|
90
90
|
animating
|
|
@@ -94,13 +94,20 @@ function showToast (options = {}) {
|
|
|
94
94
|
{ title ? <Text style={styles.toastText}>{title}</Text> : null }
|
|
95
95
|
</View>
|
|
96
96
|
</View>
|
|
97
|
-
}
|
|
98
|
-
ToastView = <View style={[styles.toastWrap, {pointerEvents}]}>
|
|
97
|
+
} else {
|
|
98
|
+
ToastView = <View style={[styles.toastWrap, { pointerEvents }]}>
|
|
99
99
|
<View style={styles.toastContent}>
|
|
100
|
-
{ title
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
100
|
+
{ title
|
|
101
|
+
? <Text numberOfLines={2} style={{
|
|
102
|
+
...styles.toastText,
|
|
103
|
+
...(icon === 'none'
|
|
104
|
+
? {
|
|
105
|
+
height: 'auto',
|
|
106
|
+
marginTop: 0
|
|
107
|
+
}
|
|
108
|
+
: {})
|
|
109
|
+
}}>{title}</Text>
|
|
110
|
+
: null }
|
|
104
111
|
</View>
|
|
105
112
|
</View>
|
|
106
113
|
}
|
|
@@ -130,7 +137,7 @@ function showToast (options = {}) {
|
|
|
130
137
|
}
|
|
131
138
|
}
|
|
132
139
|
|
|
133
|
-
function hideToast(options = {}) {
|
|
140
|
+
function hideToast (options = {}) {
|
|
134
141
|
const id = getCurrentPageId()
|
|
135
142
|
const { noConflict = false, success, fail, complete } = options
|
|
136
143
|
|
package/src/platform/index.js
CHANGED
|
@@ -26,7 +26,7 @@ export * from './api/canvas'
|
|
|
26
26
|
export * from './api/check-session'
|
|
27
27
|
|
|
28
28
|
// setClipboardData, getClipboardData
|
|
29
|
-
|
|
29
|
+
export * from './api/clipboard-data'
|
|
30
30
|
|
|
31
31
|
// createIntersectionObserver
|
|
32
32
|
export * from './api/create-intersection-observer'
|
|
@@ -77,7 +77,7 @@ export * from './api/route'
|
|
|
77
77
|
export * from './api/scan-code'
|
|
78
78
|
|
|
79
79
|
// setScreenBrightness, getScreenBrightness
|
|
80
|
-
|
|
80
|
+
export * from './api/screen-brightness'
|
|
81
81
|
|
|
82
82
|
// setNavigationBarTitle, setNavigationBarColor
|
|
83
83
|
export * from './api/set-navigation-bar'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './rnClipboard'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './rnScreenBrightness'
|