@mpxjs/api-proxy 2.10.3 → 2.10.4
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/@types/index.d.ts +3 -0
- package/package.json +3 -3
- package/src/platform/api/action-sheet/rnActionSheet.jsx +87 -19
- package/src/platform/api/clipboard-data/rnClipboard.js +45 -45
- package/src/platform/api/modal/rnModal.jsx +9 -10
- package/src/platform/api/screen-brightness/index.ali.js +11 -3
- package/src/platform/api/screen-brightness/index.js +10 -1
- package/src/platform/api/screen-brightness/rnScreenBrightness.js +44 -35
- package/src/platform/api/system/index.ios.js +1 -1
- package/src/platform/api/toast/rnToast.jsx +18 -11
- package/src/platform/api/vibrate/index.ios.js +1 -0
- 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/@types/index.d.ts
CHANGED
|
@@ -83,6 +83,9 @@ export const switchTab: WechatMiniprogram.Wx['switchTab']
|
|
|
83
83
|
export const scanCode: WechatMiniprogram.Wx['scanCode']
|
|
84
84
|
export const setScreenBrightness: WechatMiniprogram.Wx['setScreenBrightness']
|
|
85
85
|
export const getScreenBrightness: WechatMiniprogram.Wx['getScreenBrightness']
|
|
86
|
+
export const setVisualEffectOnCapture: WechatMiniprogram.Wx['setVisualEffectOnCapture']
|
|
87
|
+
export const onUserCaptureScreen: WechatMiniprogram.Wx['onUserCaptureScreen']
|
|
88
|
+
export const offUserCaptureScreen: WechatMiniprogram.Wx['offUserCaptureScreen']
|
|
86
89
|
export const setNavigationBarTitle: WechatMiniprogram.Wx['setNavigationBarTitle']
|
|
87
90
|
export const setNavigationBarColor: WechatMiniprogram.Wx['setNavigationBarColor']
|
|
88
91
|
export const connectSocket: WechatMiniprogram.Wx['connectSocket']
|
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",
|
|
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": {
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"optional": true
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "c877bcebc894c75fe107f7b997cee5b494932e43"
|
|
72
72
|
}
|
|
@@ -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
|
+
// }
|
|
@@ -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>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ENV_OBJ, changeOpts, handleSuccess } from '../../../common/js'
|
|
1
|
+
import { ENV_OBJ, changeOpts, handleSuccess, envError } from '../../../common/js'
|
|
2
2
|
|
|
3
3
|
function setScreenBrightness (options = {}) {
|
|
4
4
|
const opts = changeOpts(options, {
|
|
@@ -16,11 +16,19 @@ function getScreenBrightness (options = {}) {
|
|
|
16
16
|
handleSuccess(opts, res => {
|
|
17
17
|
return changeOpts(res, { brightness: 'value' }, { errMsg: 'getScreenBrightness:ok' })
|
|
18
18
|
})
|
|
19
|
-
|
|
20
19
|
return ENV_OBJ.getScreenBrightness(opts)
|
|
21
20
|
}
|
|
22
21
|
|
|
22
|
+
const setVisualEffectOnCapture = ENV_OBJ.setVisualEffectOnCapture || envError('setVisualEffectOnCapture')
|
|
23
|
+
|
|
24
|
+
const onUserCaptureScreen = ENV_OBJ.onUserCaptureScreen || envError('onUserCaptureScreen')
|
|
25
|
+
|
|
26
|
+
const offUserCaptureScreen = ENV_OBJ.offUserCaptureScreen || envError('offUserCaptureScreen')
|
|
27
|
+
|
|
23
28
|
export {
|
|
24
29
|
setScreenBrightness,
|
|
25
|
-
getScreenBrightness
|
|
30
|
+
getScreenBrightness,
|
|
31
|
+
setVisualEffectOnCapture,
|
|
32
|
+
onUserCaptureScreen,
|
|
33
|
+
offUserCaptureScreen
|
|
26
34
|
}
|
|
@@ -4,7 +4,16 @@ const setScreenBrightness = ENV_OBJ.setScreenBrightness || envError('setScreenBr
|
|
|
4
4
|
|
|
5
5
|
const getScreenBrightness = ENV_OBJ.getScreenBrightness || envError('getScreenBrightness')
|
|
6
6
|
|
|
7
|
+
const setVisualEffectOnCapture = ENV_OBJ.setVisualEffectOnCapture || envError('setVisualEffectOnCapture')
|
|
8
|
+
|
|
9
|
+
const onUserCaptureScreen = ENV_OBJ.onUserCaptureScreen || envError('onUserCaptureScreen')
|
|
10
|
+
|
|
11
|
+
const offUserCaptureScreen = ENV_OBJ.offUserCaptureScreen || envError('offUserCaptureScreen')
|
|
12
|
+
|
|
7
13
|
export {
|
|
8
14
|
setScreenBrightness,
|
|
9
|
-
getScreenBrightness
|
|
15
|
+
getScreenBrightness,
|
|
16
|
+
setVisualEffectOnCapture,
|
|
17
|
+
onUserCaptureScreen,
|
|
18
|
+
offUserCaptureScreen
|
|
10
19
|
}
|
|
@@ -1,38 +1,47 @@
|
|
|
1
|
-
import * as Brightness from 'expo-brightness'
|
|
2
|
-
import { successHandle, failHandle } 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
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
// const setVisualEffectOnCapture = envError('setVisualEffectOnCapture')
|
|
36
|
+
|
|
37
|
+
// const onUserCaptureScreen = envError('onUserCaptureScreen')
|
|
38
|
+
|
|
39
|
+
// const offUserCaptureScreen = envError('offUserCaptureScreen')
|
|
40
|
+
|
|
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
|
|
|
@@ -9,6 +9,7 @@ const vibrateShort = function (options = {}) {
|
|
|
9
9
|
const { type = 'light', success, fail, complete } = options
|
|
10
10
|
try {
|
|
11
11
|
ReactNativeHapticFeedback.trigger(getType(type), {
|
|
12
|
+
// harmony RN 属性不变
|
|
12
13
|
ignoreAndroidSystemSettings: true,
|
|
13
14
|
enableVibrateFallback: true
|
|
14
15
|
})
|
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'
|