@mpxjs/api-proxy 2.10.5 → 2.10.6-beta.3
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 +5 -0
- package/package.json +3 -4
- package/src/common/js/utils.js +6 -5
- package/src/platform/api/animation/animation.ios.js +9 -8
- package/src/platform/api/app/index.web.js +17 -2
- package/src/platform/api/create-intersection-observer/IntersectionObserver.js +2 -2
- package/src/platform/api/create-intersection-observer/rnIntersectionObserver.js +17 -21
- package/src/platform/api/image/index.ali.js +6 -3
- package/src/platform/api/image/index.ios.js +4 -1
- package/src/platform/api/image/index.js +4 -1
- package/src/platform/api/image/index.web.js +4 -1
- package/src/platform/api/location/index.ali.js +15 -3
- package/src/platform/api/location/index.ios.js +13 -1
- package/src/platform/api/location/index.js +13 -1
- package/src/platform/api/location/index.web.js +13 -1
- package/src/platform/api/set-navigation-bar/index.ios.js +6 -6
- package/src/platform/api/system/index.ali.js +36 -2
- package/src/platform/api/system/rnSystem.js +1 -2
- package/src/platform/api/toast/rnToast.jsx +3 -7
- package/src/platform/api/video/index.web.js +6 -6
- package/src/platform/index.js +2 -2
- package/LICENSE +0 -433
package/@types/index.d.ts
CHANGED
|
@@ -121,12 +121,17 @@ export const enableAlertBeforeUnload: WechatMiniprogram.Wx['enableAlertBeforeUnl
|
|
|
121
121
|
export const disableAlertBeforeUnload: WechatMiniprogram.Wx['disableAlertBeforeUnload']
|
|
122
122
|
export const getMenuButtonBoundingClientRect: WechatMiniprogram.Wx['getMenuButtonBoundingClientRect']
|
|
123
123
|
export const getImageInfo: WechatMiniprogram.Wx['getImageInfo']
|
|
124
|
+
export const chooseMedia: WechatMiniprogram.Wx['chooseMedia']
|
|
124
125
|
export const vibrateShort: WechatMiniprogram.Wx['vibrateShort']
|
|
125
126
|
export const vibrateLong: WechatMiniprogram.Wx['vibrateLong']
|
|
126
127
|
export const getExtConfig: WechatMiniprogram.Wx['getExtConfig']
|
|
127
128
|
export const getExtConfigSync: WechatMiniprogram.Wx['getExtConfigSync']
|
|
128
129
|
export const openLocation: WechatMiniprogram.Wx['openLocation']
|
|
129
130
|
export const chooseLocation: WechatMiniprogram.Wx['chooseLocation']
|
|
131
|
+
export const onLocationChange: WechatMiniprogram.Wx['onLocationChange']
|
|
132
|
+
export const offLocationChange: WechatMiniprogram.Wx['offLocationChange']
|
|
133
|
+
export const startLocationUpdate: WechatMiniprogram.Wx['startLocationUpdate']
|
|
134
|
+
export const stopLocationUpdate: WechatMiniprogram.Wx['stopLocationUpdate']
|
|
130
135
|
|
|
131
136
|
declare const install: (...args: any) => any
|
|
132
137
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/api-proxy",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.6-beta.3",
|
|
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.6 | ^2.10.6-beta.1",
|
|
41
41
|
"axios": "^1.7.3"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
@@ -67,6 +67,5 @@
|
|
|
67
67
|
"react-native-haptic-feedback": {
|
|
68
68
|
"optional": true
|
|
69
69
|
}
|
|
70
|
-
}
|
|
71
|
-
"gitHead": "80a4120733a1ee64e394ae58240497ea6721f435"
|
|
70
|
+
}
|
|
72
71
|
}
|
package/src/common/js/utils.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { hasOwn, noop, getEnvObj, getFocusedNavigation } from '@mpxjs/utils'
|
|
1
|
+
import { hasOwn, noop, getEnvObj, getFocusedNavigation, error as errorHandler, warn as warnHandler } from '@mpxjs/utils'
|
|
2
2
|
import { getCurrentInstance } from '@mpxjs/core'
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -47,15 +47,16 @@ const handleSuccess = (opts, getOptions = noop, thisObj) => {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
function warn (msg) {
|
|
50
|
-
|
|
50
|
+
warnHandler(msg, '@mpxjs/api-proxy')
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
function error (msg) {
|
|
54
|
-
|
|
54
|
+
errorHandler(msg, '@mpxjs/api-proxy')
|
|
55
55
|
}
|
|
56
|
+
|
|
56
57
|
function envError (method) {
|
|
57
58
|
return () => {
|
|
58
|
-
|
|
59
|
+
errorHandler(`\n ${__mpx_mode__}环境不支持${method}方法`, '@mpxjs/api-proxy')
|
|
59
60
|
}
|
|
60
61
|
}
|
|
61
62
|
|
|
@@ -90,7 +91,7 @@ function failHandle (result, fail, complete) {
|
|
|
90
91
|
|
|
91
92
|
function getCurrentPageId () {
|
|
92
93
|
const currentInstance = getCurrentInstance()
|
|
93
|
-
const id = currentInstance?.getPageId() || getFocusedNavigation()?.pageId || null
|
|
94
|
+
const id = currentInstance?.proxy?.getPageId() || getFocusedNavigation()?.pageId || null
|
|
94
95
|
return id
|
|
95
96
|
}
|
|
96
97
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { error } from '../../../common/js'
|
|
1
2
|
class Animation {
|
|
2
3
|
constructor (
|
|
3
4
|
{
|
|
@@ -47,7 +48,7 @@ class Animation {
|
|
|
47
48
|
steps = []
|
|
48
49
|
|
|
49
50
|
matrix (a, b, c, d, tx, ty) { // Todo
|
|
50
|
-
|
|
51
|
+
error('React Native 不支持 matrix 动画')
|
|
51
52
|
// this.transform.set('matrix', [a, b, c, d, tx, ty])
|
|
52
53
|
return this
|
|
53
54
|
}
|
|
@@ -57,7 +58,7 @@ class Animation {
|
|
|
57
58
|
a3, b3, c3, d3,
|
|
58
59
|
a4, b4, c4, d4
|
|
59
60
|
) {
|
|
60
|
-
|
|
61
|
+
error('React Native 不支持 matrix3d 动画')
|
|
61
62
|
// this.transform.set('matrix3d', [ // Todo
|
|
62
63
|
// a1, b1, c1, d1,
|
|
63
64
|
// a2, b2, c2, d2,
|
|
@@ -78,7 +79,7 @@ class Animation {
|
|
|
78
79
|
// this.rotateY(y)
|
|
79
80
|
// this.rotateZ(z)
|
|
80
81
|
// this.rotate(angle)
|
|
81
|
-
|
|
82
|
+
error('React Native 不支持 transform rotate3d')
|
|
82
83
|
return this
|
|
83
84
|
}
|
|
84
85
|
|
|
@@ -116,13 +117,13 @@ class Animation {
|
|
|
116
117
|
}
|
|
117
118
|
|
|
118
119
|
scaleZ (scale) { // Todo Invariant Violation: Invalid transform scaleZ: {"scaleZ":0}
|
|
119
|
-
|
|
120
|
+
error('React Native 不支持 transform scaleZ')
|
|
120
121
|
// this.transform.set('scaleZ', scale)
|
|
121
122
|
return this
|
|
122
123
|
}
|
|
123
124
|
|
|
124
125
|
scale3d (x, y, z) { // Todo Invariant Violation: Invalid transform scaleZ: {"scaleZ":0}
|
|
125
|
-
|
|
126
|
+
error('React Native 不支持 transform scaleZ,故不支持 scale3d')
|
|
126
127
|
// this.scaleX(x)
|
|
127
128
|
// this.scaleY(y)
|
|
128
129
|
// this.scaleZ(z)
|
|
@@ -167,14 +168,14 @@ class Animation {
|
|
|
167
168
|
}
|
|
168
169
|
|
|
169
170
|
translateZ (translate) { // Todo Invariant Violation: Invalid transform translateZ: {"translateZ":0}
|
|
170
|
-
|
|
171
|
+
error('React Native 不支持 transform translateZ')
|
|
171
172
|
// [translate] = this._transformUnit(translate)
|
|
172
173
|
// this.transform.set('translateZ', translate)
|
|
173
174
|
return this
|
|
174
175
|
}
|
|
175
176
|
|
|
176
177
|
translate3d (x, y, z) { // Todo Invariant Violation: Invalid transform translateZ: {"translateZ":0}
|
|
177
|
-
|
|
178
|
+
error('React Native 不支持 transform translateZ,故无法支持 translate3d')
|
|
178
179
|
// [x, y, z] = this._transformUnit(x, y, z)
|
|
179
180
|
// // this.transform.set('translate3d', [x, y, z])
|
|
180
181
|
// this.translateX(x)
|
|
@@ -239,7 +240,7 @@ class Animation {
|
|
|
239
240
|
transformOrigin = DEFAULT.transformOrigin
|
|
240
241
|
} = arg
|
|
241
242
|
if (typeof transformOrigin !== 'string') {
|
|
242
|
-
|
|
243
|
+
error('Value of transformOrigin only support string type, please check again')
|
|
243
244
|
transformOrigin = DEFAULT.transformOrigin
|
|
244
245
|
}
|
|
245
246
|
this.steps.push({
|
|
@@ -4,7 +4,8 @@ global.__mpxAppCbs = global.__mpxAppCbs || {
|
|
|
4
4
|
show: [],
|
|
5
5
|
hide: [],
|
|
6
6
|
error: [],
|
|
7
|
-
rejection: []
|
|
7
|
+
rejection: [],
|
|
8
|
+
lazyLoad: []
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
function off (cbs, cb) {
|
|
@@ -56,6 +57,18 @@ function offAppHide (callback) {
|
|
|
56
57
|
off(global.__mpxAppCbs.hide, callback)
|
|
57
58
|
}
|
|
58
59
|
|
|
60
|
+
function onLazyLoadError (callback) {
|
|
61
|
+
if (isReact) {
|
|
62
|
+
global.__mpxAppCbs.lazyLoad.push(callback)
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function offLazyLoadError (callback) {
|
|
67
|
+
if (isReact) {
|
|
68
|
+
off(global.__mpxAppCbs.lazyLoad, callback)
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
59
72
|
export {
|
|
60
73
|
onAppShow,
|
|
61
74
|
onAppHide,
|
|
@@ -64,5 +77,7 @@ export {
|
|
|
64
77
|
onError,
|
|
65
78
|
offError,
|
|
66
79
|
onUnhandledRejection,
|
|
67
|
-
offUnhandledRejection
|
|
80
|
+
offUnhandledRejection,
|
|
81
|
+
onLazyLoadError,
|
|
82
|
+
offLazyLoadError
|
|
68
83
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { nextTick } from '../next-tick'
|
|
2
|
-
import { parseDataset } from '@mpxjs/utils'
|
|
2
|
+
import { parseDataset, warn } from '@mpxjs/utils'
|
|
3
3
|
|
|
4
4
|
let isInit = true
|
|
5
5
|
|
|
@@ -68,7 +68,7 @@ class WebIntersectionObserver {
|
|
|
68
68
|
observe (targetSelector, callback) {
|
|
69
69
|
nextTick(() => {
|
|
70
70
|
if (!document.querySelector(targetSelector)) {
|
|
71
|
-
|
|
71
|
+
warn(`Node ${JSON.stringify(targetSelector)} is not found. Intersection observer will not trigger.`)
|
|
72
72
|
return
|
|
73
73
|
}
|
|
74
74
|
this._observer = this.initObserver()
|
|
@@ -93,24 +93,25 @@ class RNIntersectionObserver {
|
|
|
93
93
|
const navigation = getFocusedNavigation() || {}
|
|
94
94
|
const screen = Dimensions.get('screen')
|
|
95
95
|
const navigationLayout = navigation.layout || {
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
top: 0,
|
|
97
|
+
left: 0,
|
|
98
98
|
width: screen.width,
|
|
99
99
|
height: screen.height
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
const windowRect = {
|
|
103
|
-
top: navigationLayout.
|
|
103
|
+
top: navigationLayout.top - this.margins.top,
|
|
104
104
|
left: 0 - this.margins.left,
|
|
105
105
|
right: navigationLayout.width + this.margins.right,
|
|
106
|
-
bottom: navigationLayout.
|
|
106
|
+
bottom: navigationLayout.top + navigationLayout.height + this.margins.bottom
|
|
107
107
|
}
|
|
108
|
-
|
|
109
108
|
this.windowRect = windowRect
|
|
110
109
|
return this.windowRect
|
|
111
110
|
}
|
|
112
111
|
|
|
113
112
|
_getReferenceRect (targetRef) {
|
|
113
|
+
const navigation = getFocusedNavigation() || {}
|
|
114
|
+
const layout = navigation.layout || {}
|
|
114
115
|
const targetRefs = isArray(targetRef) ? targetRef : [targetRef]
|
|
115
116
|
const targetPromiseQueue = []
|
|
116
117
|
targetRefs.forEach((targetRefItem) => {
|
|
@@ -128,11 +129,12 @@ class RNIntersectionObserver {
|
|
|
128
129
|
targetPromiseQueue.push(new Promise((resolve) => {
|
|
129
130
|
target.measureInWindow(
|
|
130
131
|
(x, y, width, height) => {
|
|
132
|
+
// 安卓measureInWindow的参考值在android下为statubar的左下角,因此top需要调整一下
|
|
131
133
|
const boundingClientRect = {
|
|
132
134
|
left: x,
|
|
133
|
-
top: y,
|
|
135
|
+
top: y + layout.statusBarHeight || 0,
|
|
134
136
|
right: x + width,
|
|
135
|
-
bottom: y + height,
|
|
137
|
+
bottom: y + height + layout.statusBarHeight || 0,
|
|
136
138
|
width: width,
|
|
137
139
|
height: height
|
|
138
140
|
}
|
|
@@ -153,19 +155,16 @@ class RNIntersectionObserver {
|
|
|
153
155
|
return Math.min(Math.max(start, value), end)
|
|
154
156
|
}
|
|
155
157
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
let
|
|
158
|
+
_getRatioIndex (ratio, thresholds = []) {
|
|
159
|
+
if (ratio === 0 && thresholds.includes(0)) return -1
|
|
160
|
+
if (ratio === 1 && thresholds.includes(1)) return thresholds.length
|
|
161
|
+
let returnIndex = -1
|
|
160
162
|
thresholds.forEach((item, index) => {
|
|
161
|
-
if (
|
|
162
|
-
|
|
163
|
-
}
|
|
164
|
-
if (previousIntersectionRatio >= item) {
|
|
165
|
-
previousIndex = index
|
|
163
|
+
if (ratio >= item) {
|
|
164
|
+
returnIndex = index
|
|
166
165
|
}
|
|
167
166
|
})
|
|
168
|
-
return
|
|
167
|
+
return returnIndex
|
|
169
168
|
}
|
|
170
169
|
|
|
171
170
|
// 计算相交区域
|
|
@@ -180,10 +179,8 @@ class RNIntersectionObserver {
|
|
|
180
179
|
const targetArea = (observeRect.bottom - observeRect.top) * (observeRect.right - observeRect.left)
|
|
181
180
|
const visibleArea = (visibleRect.bottom - visibleRect.top) * (visibleRect.right - visibleRect.left)
|
|
182
181
|
const intersectionRatio = targetArea ? visibleArea / targetArea : 0
|
|
183
|
-
|
|
184
|
-
const isInsected = isInit ? intersectionRatio > this.initialRatio : this._isInsectedFn(intersectionRatio, this.previousIntersectionRatio[observeIndex], this.thresholds)
|
|
182
|
+
const isInsected = isInit ? intersectionRatio > this.initialRatio : !(this._getRatioIndex(intersectionRatio, this.thresholds) === this._getRatioIndex(this.previousIntersectionRatio[observeIndex], this.thresholds))
|
|
185
183
|
this.previousIntersectionRatio[observeIndex] = intersectionRatio
|
|
186
|
-
|
|
187
184
|
return {
|
|
188
185
|
intersectionRatio,
|
|
189
186
|
intersectionRect: {
|
|
@@ -217,7 +214,6 @@ class RNIntersectionObserver {
|
|
|
217
214
|
relativeRect,
|
|
218
215
|
isInit
|
|
219
216
|
})
|
|
220
|
-
// 初次调用的
|
|
221
217
|
if (isInsected) {
|
|
222
218
|
this.callback({
|
|
223
219
|
// index: index,
|
|
@@ -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 previewImage (options = {}) {
|
|
4
4
|
const opts = changeOpts(options)
|
|
@@ -30,10 +30,13 @@ function compressImage (options = {}) {
|
|
|
30
30
|
return ENV_OBJ.compressImage(opts)
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
const getImageInfo = ENV_OBJ.getImageInfo
|
|
33
|
+
const getImageInfo = ENV_OBJ.getImageInfo || envError('getImageInfo')
|
|
34
|
+
|
|
35
|
+
const chooseMedia = envError('chooseMedia')
|
|
34
36
|
|
|
35
37
|
export {
|
|
36
38
|
previewImage,
|
|
37
39
|
compressImage,
|
|
38
|
-
getImageInfo
|
|
40
|
+
getImageInfo,
|
|
41
|
+
chooseMedia
|
|
39
42
|
}
|
|
@@ -6,8 +6,11 @@ const compressImage = ENV_OBJ.compressImage || envError('compressImage')
|
|
|
6
6
|
|
|
7
7
|
const getImageInfo = ENV_OBJ.getImageInfo || envError('getImageInfo')
|
|
8
8
|
|
|
9
|
+
const chooseMedia = ENV_OBJ.chooseMedia || envError('chooseMedia')
|
|
10
|
+
|
|
9
11
|
export {
|
|
10
12
|
previewImage,
|
|
11
13
|
compressImage,
|
|
12
|
-
getImageInfo
|
|
14
|
+
getImageInfo,
|
|
15
|
+
chooseMedia
|
|
13
16
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ENV_OBJ, changeOpts, handleSuccess, defineUnsupportedProps } from '../../../common/js'
|
|
1
|
+
import { ENV_OBJ, changeOpts, handleSuccess, defineUnsupportedProps, envError } from '../../../common/js'
|
|
2
2
|
|
|
3
3
|
function getLocation (options = {}) {
|
|
4
4
|
const opts = Object.assign(options, {
|
|
@@ -22,10 +22,22 @@ function openLocation (options = {}) {
|
|
|
22
22
|
return ENV_OBJ.openLocation(opts)
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
const chooseLocation = ENV_OBJ.chooseLocation
|
|
25
|
+
const chooseLocation = ENV_OBJ.chooseLocation || envError('chooseLocation')
|
|
26
|
+
|
|
27
|
+
const onLocationChange = envError('onLocationChange')
|
|
28
|
+
|
|
29
|
+
const offLocationChange = envError('offLocationChange')
|
|
30
|
+
|
|
31
|
+
const startLocationUpdate = envError('startLocationUpdate')
|
|
32
|
+
|
|
33
|
+
const stopLocationUpdate = envError('stopLocationUpdate')
|
|
26
34
|
|
|
27
35
|
export {
|
|
28
36
|
getLocation,
|
|
29
37
|
openLocation,
|
|
30
|
-
chooseLocation
|
|
38
|
+
chooseLocation,
|
|
39
|
+
onLocationChange,
|
|
40
|
+
offLocationChange,
|
|
41
|
+
startLocationUpdate,
|
|
42
|
+
stopLocationUpdate
|
|
31
43
|
}
|
|
@@ -24,8 +24,20 @@ const openLocation = envError('openLocation')
|
|
|
24
24
|
|
|
25
25
|
const chooseLocation = envError('chooseLocation')
|
|
26
26
|
|
|
27
|
+
const onLocationChange = envError('onLocationChange')
|
|
28
|
+
|
|
29
|
+
const offLocationChange = envError('offLocationChange')
|
|
30
|
+
|
|
31
|
+
const startLocationUpdate = envError('startLocationUpdate')
|
|
32
|
+
|
|
33
|
+
const stopLocationUpdate = envError('stopLocationUpdate')
|
|
34
|
+
|
|
27
35
|
export {
|
|
28
36
|
getLocation,
|
|
29
37
|
openLocation,
|
|
30
|
-
chooseLocation
|
|
38
|
+
chooseLocation,
|
|
39
|
+
onLocationChange,
|
|
40
|
+
offLocationChange,
|
|
41
|
+
startLocationUpdate,
|
|
42
|
+
stopLocationUpdate
|
|
31
43
|
}
|
|
@@ -6,8 +6,20 @@ const openLocation = ENV_OBJ.openLocation || envError('openLocation')
|
|
|
6
6
|
|
|
7
7
|
const chooseLocation = ENV_OBJ.chooseLocation || envError('chooseLocation')
|
|
8
8
|
|
|
9
|
+
const onLocationChange = ENV_OBJ.onLocationChange || envError('onLocationChange')
|
|
10
|
+
|
|
11
|
+
const offLocationChange = ENV_OBJ.offLocationChange || envError('offLocationChange')
|
|
12
|
+
|
|
13
|
+
const startLocationUpdate = ENV_OBJ.startLocationUpdate || envError('startLocationUpdate')
|
|
14
|
+
|
|
15
|
+
const stopLocationUpdate = ENV_OBJ.stopLocationUpdate || envError('stopLocationUpdate')
|
|
16
|
+
|
|
9
17
|
export {
|
|
10
18
|
getLocation,
|
|
11
19
|
openLocation,
|
|
12
|
-
chooseLocation
|
|
20
|
+
chooseLocation,
|
|
21
|
+
onLocationChange,
|
|
22
|
+
offLocationChange,
|
|
23
|
+
startLocationUpdate,
|
|
24
|
+
stopLocationUpdate
|
|
13
25
|
}
|
|
@@ -29,8 +29,20 @@ const openLocation = envError('openLocation')
|
|
|
29
29
|
|
|
30
30
|
const chooseLocation = envError('chooseLocation')
|
|
31
31
|
|
|
32
|
+
const onLocationChange = envError('onLocationChange')
|
|
33
|
+
|
|
34
|
+
const offLocationChange = envError('offLocationChange')
|
|
35
|
+
|
|
36
|
+
const startLocationUpdate = envError('startLocationUpdate')
|
|
37
|
+
|
|
38
|
+
const stopLocationUpdate = envError('stopLocationUpdate')
|
|
39
|
+
|
|
32
40
|
export {
|
|
33
41
|
getLocation,
|
|
34
42
|
openLocation,
|
|
35
|
-
chooseLocation
|
|
43
|
+
chooseLocation,
|
|
44
|
+
onLocationChange,
|
|
45
|
+
offLocationChange,
|
|
46
|
+
startLocationUpdate,
|
|
47
|
+
stopLocationUpdate
|
|
36
48
|
}
|
|
@@ -7,7 +7,9 @@ function setNavigationBarTitle (options = {}) {
|
|
|
7
7
|
failHandle({ errMsg: 'setNavigationBarTitle:fail' }, fail, complete)
|
|
8
8
|
} else {
|
|
9
9
|
nextTick(() => {
|
|
10
|
-
navigation.
|
|
10
|
+
navigation.setPageConfig({
|
|
11
|
+
navigationBarTitleText: title.trim()
|
|
12
|
+
})
|
|
11
13
|
successHandle({ errMsg: 'setNavigationBarTitle:ok' }, success, complete)
|
|
12
14
|
})
|
|
13
15
|
}
|
|
@@ -20,11 +22,9 @@ function setNavigationBarColor (options = {}) {
|
|
|
20
22
|
failHandle({ errMsg: 'setNavigationBarColor:fail' }, fail, complete)
|
|
21
23
|
} else {
|
|
22
24
|
nextTick(() => {
|
|
23
|
-
navigation.
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
},
|
|
27
|
-
headerTintColor: frontColor
|
|
25
|
+
navigation.setPageConfig({
|
|
26
|
+
navigationBarBackgroundColor: backgroundColor,
|
|
27
|
+
navigationBarTextStyle: frontColor
|
|
28
28
|
})
|
|
29
29
|
successHandle({ errMsg: 'setNavigationBarColor:ok' }, success, complete)
|
|
30
30
|
})
|
|
@@ -33,12 +33,46 @@ function getSystemInfoSync () {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
const getDeviceInfo = function () {
|
|
36
|
-
|
|
36
|
+
let res
|
|
37
|
+
if (ENV_OBJ.canIUse('getDeviceBaseInfo')) {
|
|
38
|
+
res = ENV_OBJ.getDeviceBaseInfo()
|
|
39
|
+
} else {
|
|
40
|
+
const systemInfo = getSystemInfoSync()
|
|
41
|
+
res = {
|
|
42
|
+
abi: systemInfo.abi || null,
|
|
43
|
+
benchmarkLevel: systemInfo.benchmarkLevel || null,
|
|
44
|
+
brand: systemInfo.brand,
|
|
45
|
+
model: systemInfo.model,
|
|
46
|
+
system: systemInfo.system,
|
|
47
|
+
platform: systemInfo.platform,
|
|
48
|
+
memorySize: systemInfo.memorySize || null
|
|
49
|
+
}
|
|
50
|
+
}
|
|
37
51
|
defineUnsupportedProps(res, ['deviceAbi', 'benchmarkLevel', 'cpuType'])
|
|
38
52
|
return res
|
|
39
53
|
}
|
|
40
54
|
|
|
41
|
-
const getWindowInfo =
|
|
55
|
+
const getWindowInfo = function () {
|
|
56
|
+
let res
|
|
57
|
+
if (ENV_OBJ.canIUse('getWindowInfo')) {
|
|
58
|
+
res = ENV_OBJ.getWindowInfo()
|
|
59
|
+
} else {
|
|
60
|
+
const systemInfo = getSystemInfoSync()
|
|
61
|
+
res = {
|
|
62
|
+
pixelRatio: systemInfo.pixelRatio,
|
|
63
|
+
screenWidth: systemInfo.screenWidth,
|
|
64
|
+
screenHeight: systemInfo.screenHeight,
|
|
65
|
+
windowWidth: systemInfo.windowWidth,
|
|
66
|
+
windowHeight: systemInfo.windowHeight,
|
|
67
|
+
statusBarHeight: systemInfo.statusBarHeight,
|
|
68
|
+
safeArea: systemInfo.safeArea || null,
|
|
69
|
+
screenTop: systemInfo.screenTop || null
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
return res
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// const getWindowInfo = ENV_OBJ.getWindowInfo || envError('getWindowInfo')
|
|
42
76
|
|
|
43
77
|
const getLaunchOptionsSync = ENV_OBJ.getLaunchOptionsSync || envError('getLaunchOptionsSync')
|
|
44
78
|
|
|
@@ -7,10 +7,9 @@ const getWindowInfo = function () {
|
|
|
7
7
|
const navigation = getFocusedNavigation() || {}
|
|
8
8
|
const initialWindowMetricsInset = initialWindowMetrics?.insets || {}
|
|
9
9
|
const navigationInsets = navigation.insets || {}
|
|
10
|
-
const insets = Object.assign(initialWindowMetricsInset, navigationInsets)
|
|
10
|
+
const insets = Object.assign({}, initialWindowMetricsInset, navigationInsets)
|
|
11
11
|
let safeArea = {}
|
|
12
12
|
const { top = 0, bottom = 0, left = 0, right = 0 } = insets
|
|
13
|
-
|
|
14
13
|
const screenHeight = __mpx_mode__ === 'ios' ? dimensionsScreen.height : dimensionsScreen.height - bottom // 解决安卓开启屏幕内三建导航安卓把安全区计算进去后产生的影响
|
|
15
14
|
const screenWidth = __mpx_mode__ === 'ios' ? dimensionsScreen.width : dimensionsScreen.width - right
|
|
16
15
|
const layout = navigation.layout || {}
|
|
@@ -32,8 +32,7 @@ const styles = StyleSheet.create({
|
|
|
32
32
|
alignItems: 'center'
|
|
33
33
|
},
|
|
34
34
|
toastHasIcon: {
|
|
35
|
-
|
|
36
|
-
width: 120
|
|
35
|
+
width: 140
|
|
37
36
|
},
|
|
38
37
|
toastImg: {
|
|
39
38
|
width: 40,
|
|
@@ -46,8 +45,6 @@ const styles = StyleSheet.create({
|
|
|
46
45
|
color: '#ffffff',
|
|
47
46
|
fontSize: 12,
|
|
48
47
|
lineHeight: 18,
|
|
49
|
-
height: 18,
|
|
50
|
-
overflow: 'hidden',
|
|
51
48
|
marginTop: 10
|
|
52
49
|
}
|
|
53
50
|
})
|
|
@@ -80,7 +77,7 @@ function showToast (options = {}) {
|
|
|
80
77
|
ToastView = <View style={[styles.toastWrap, { pointerEvents }]}>
|
|
81
78
|
<View style={[styles.toastContent, styles.toastHasIcon]}>
|
|
82
79
|
<Image style={ styles.toastImg } source={{ uri: image || iconImg[icon] }}></Image>
|
|
83
|
-
{ title ? <Text style={styles.toastText}>{title}</Text> : null }
|
|
80
|
+
{ title ? <Text numberOfLines={2} style={styles.toastText}>{title}</Text> : null }
|
|
84
81
|
</View>
|
|
85
82
|
</View>
|
|
86
83
|
} else if (icon === 'loading') {
|
|
@@ -91,7 +88,7 @@ function showToast (options = {}) {
|
|
|
91
88
|
size='small'
|
|
92
89
|
color='#eee'
|
|
93
90
|
/>
|
|
94
|
-
{ title ? <Text style={styles.toastText}>{title}</Text> : null }
|
|
91
|
+
{ title ? <Text numberOfLines={2} style={styles.toastText}>{title}</Text> : null }
|
|
95
92
|
</View>
|
|
96
93
|
</View>
|
|
97
94
|
} else {
|
|
@@ -102,7 +99,6 @@ function showToast (options = {}) {
|
|
|
102
99
|
...styles.toastText,
|
|
103
100
|
...(icon === 'none'
|
|
104
101
|
? {
|
|
105
|
-
height: 'auto',
|
|
106
102
|
marginTop: 0
|
|
107
103
|
}
|
|
108
104
|
: {})
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isBrowser, throwSSRWarning } from '../../../common/js'
|
|
1
|
+
import { isBrowser, throwSSRWarning, warn } from '../../../common/js'
|
|
2
2
|
|
|
3
3
|
const allowPlaybackRate = [0.5, 0.8, 1.0, 1.25, 1.5, 2.0]
|
|
4
4
|
export const createVideoContext = (id, context) => {
|
|
@@ -22,22 +22,22 @@ export const createVideoContext = (id, context) => {
|
|
|
22
22
|
|
|
23
23
|
// todo 进入后台音频播放模式
|
|
24
24
|
__videoContext.requestBackgroundPlayback = () => {
|
|
25
|
-
|
|
25
|
+
warn('暂不支持requestBackgroundPlayback API')
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
// todo 退出后台音频播放
|
|
29
29
|
__videoContext.exitBackgroundPlayback = () => {
|
|
30
|
-
|
|
30
|
+
warn('暂不支持exitBackgroundPlayback API')
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
// todo 退出小窗,该方法可在任意页面调用
|
|
34
34
|
__videoContext.exitPictureInPicture = ({ success, fail, complete }) => {
|
|
35
|
-
|
|
35
|
+
warn('暂不支持exitPictureInPicture API')
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
// todo 发送弹幕
|
|
39
39
|
__videoContext.sendDanmu = ({ text, color }) => {
|
|
40
|
-
|
|
40
|
+
warn('暂不支持发送弹幕')
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
// 进入全屏
|
|
@@ -90,7 +90,7 @@ export const createVideoContext = (id, context) => {
|
|
|
90
90
|
// 设置倍速播放
|
|
91
91
|
__videoContext.playbackRate = (number) => {
|
|
92
92
|
if (allowPlaybackRate.indexOf(number) === -1) {
|
|
93
|
-
|
|
93
|
+
warn(`不支持${number}倍速播放`)
|
|
94
94
|
return
|
|
95
95
|
}
|
|
96
96
|
__videoNode.playbackRate = number
|
package/src/platform/index.js
CHANGED
|
@@ -43,7 +43,7 @@ export * from './api/file'
|
|
|
43
43
|
// getUserInfo
|
|
44
44
|
export * from './api/get-user-info'
|
|
45
45
|
|
|
46
|
-
// previewImage, compressImage, getImageInfo
|
|
46
|
+
// previewImage, compressImage, getImageInfo, chooseMedia
|
|
47
47
|
export * from './api/image'
|
|
48
48
|
|
|
49
49
|
// login
|
|
@@ -105,7 +105,7 @@ export * from './api/video'
|
|
|
105
105
|
// onWindowResize, offWindowResize
|
|
106
106
|
export * from './api/window'
|
|
107
107
|
|
|
108
|
-
// getLocation, openLocation, chooseLocation
|
|
108
|
+
// getLocation, openLocation, chooseLocation, onLocationChange, offLocationChange, startLocationUpdate, stopLocationUpdate
|
|
109
109
|
export * from './api/location'
|
|
110
110
|
|
|
111
111
|
// getExtConfig, getExtConfigSync
|
package/LICENSE
DELETED
|
@@ -1,433 +0,0 @@
|
|
|
1
|
-
Apache License
|
|
2
|
-
|
|
3
|
-
Version 2.0, January 2004
|
|
4
|
-
|
|
5
|
-
http://www.apache.org/licenses/
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
1. Definitions.
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
21
|
-
|
|
22
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
28
|
-
|
|
29
|
-
the copyright owner that is granting the License.
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
35
|
-
|
|
36
|
-
other entities that control, are controlled by, or are under common
|
|
37
|
-
|
|
38
|
-
control with that entity. For the purposes of this definition,
|
|
39
|
-
|
|
40
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
41
|
-
|
|
42
|
-
direction or management of such entity, whether by contract or
|
|
43
|
-
|
|
44
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
45
|
-
|
|
46
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
52
|
-
|
|
53
|
-
exercising permissions granted by this License.
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
59
|
-
|
|
60
|
-
including but not limited to software source code, documentation
|
|
61
|
-
|
|
62
|
-
source, and configuration files.
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"Object" form shall mean any form resulting from mechanical
|
|
68
|
-
|
|
69
|
-
transformation or translation of a Source form, including but
|
|
70
|
-
|
|
71
|
-
not limited to compiled object code, generated documentation,
|
|
72
|
-
|
|
73
|
-
and conversions to other media types.
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
79
|
-
|
|
80
|
-
Object form, made available under the License, as indicated by a
|
|
81
|
-
|
|
82
|
-
copyright notice that is included in or attached to the work
|
|
83
|
-
|
|
84
|
-
(an example is provided in the Appendix below).
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
90
|
-
|
|
91
|
-
form, that is based on (or derived from) the Work and for which the
|
|
92
|
-
|
|
93
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
94
|
-
|
|
95
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
96
|
-
|
|
97
|
-
of this License, Derivative Works shall not include works that remain
|
|
98
|
-
|
|
99
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
100
|
-
|
|
101
|
-
the Work and Derivative Works thereof.
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
"Contribution" shall mean any work of authorship, including
|
|
107
|
-
|
|
108
|
-
the original version of the Work and any modifications or additions
|
|
109
|
-
|
|
110
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
111
|
-
|
|
112
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
113
|
-
|
|
114
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
115
|
-
|
|
116
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
117
|
-
|
|
118
|
-
means any form of electronic, verbal, or written communication sent
|
|
119
|
-
|
|
120
|
-
to the Licensor or its representatives, including but not limited to
|
|
121
|
-
|
|
122
|
-
communication on electronic mailing lists, source code control systems,
|
|
123
|
-
|
|
124
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
125
|
-
|
|
126
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
127
|
-
|
|
128
|
-
excluding communication that is conspicuously marked or otherwise
|
|
129
|
-
|
|
130
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
136
|
-
|
|
137
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
138
|
-
|
|
139
|
-
subsequently incorporated within the Work.
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
145
|
-
|
|
146
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
147
|
-
|
|
148
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
149
|
-
|
|
150
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
151
|
-
|
|
152
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
153
|
-
|
|
154
|
-
Work and such Derivative Works in Source or Object form.
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
160
|
-
|
|
161
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
162
|
-
|
|
163
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
164
|
-
|
|
165
|
-
(except as stated in this section) patent license to make, have made,
|
|
166
|
-
|
|
167
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
168
|
-
|
|
169
|
-
where such license applies only to those patent claims licensable
|
|
170
|
-
|
|
171
|
-
by such Contributor that are necessarily infringed by their
|
|
172
|
-
|
|
173
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
174
|
-
|
|
175
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
176
|
-
|
|
177
|
-
institute patent litigation against any entity (including a
|
|
178
|
-
|
|
179
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
180
|
-
|
|
181
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
182
|
-
|
|
183
|
-
or contributory patent infringement, then any patent licenses
|
|
184
|
-
|
|
185
|
-
granted to You under this License for that Work shall terminate
|
|
186
|
-
|
|
187
|
-
as of the date such litigation is filed.
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
193
|
-
|
|
194
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
195
|
-
|
|
196
|
-
modifications, and in Source or Object form, provided that You
|
|
197
|
-
|
|
198
|
-
meet the following conditions:
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
(a) You must give any other recipients of the Work or
|
|
204
|
-
|
|
205
|
-
Derivative Works a copy of this License; and
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
(b) You must cause any modified files to carry prominent notices
|
|
211
|
-
|
|
212
|
-
stating that You changed the files; and
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
218
|
-
|
|
219
|
-
that You distribute, all copyright, patent, trademark, and
|
|
220
|
-
|
|
221
|
-
attribution notices from the Source form of the Work,
|
|
222
|
-
|
|
223
|
-
excluding those notices that do not pertain to any part of
|
|
224
|
-
|
|
225
|
-
the Derivative Works; and
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
231
|
-
|
|
232
|
-
distribution, then any Derivative Works that You distribute must
|
|
233
|
-
|
|
234
|
-
include a readable copy of the attribution notices contained
|
|
235
|
-
|
|
236
|
-
within such NOTICE file, excluding those notices that do not
|
|
237
|
-
|
|
238
|
-
pertain to any part of the Derivative Works, in at least one
|
|
239
|
-
|
|
240
|
-
of the following places: within a NOTICE text file distributed
|
|
241
|
-
|
|
242
|
-
as part of the Derivative Works; within the Source form or
|
|
243
|
-
|
|
244
|
-
documentation, if provided along with the Derivative Works; or,
|
|
245
|
-
|
|
246
|
-
within a display generated by the Derivative Works, if and
|
|
247
|
-
|
|
248
|
-
wherever such third-party notices normally appear. The contents
|
|
249
|
-
|
|
250
|
-
of the NOTICE file are for informational purposes only and
|
|
251
|
-
|
|
252
|
-
do not modify the License. You may add Your own attribution
|
|
253
|
-
|
|
254
|
-
notices within Derivative Works that You distribute, alongside
|
|
255
|
-
|
|
256
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
257
|
-
|
|
258
|
-
that such additional attribution notices cannot be construed
|
|
259
|
-
|
|
260
|
-
as modifying the License.
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
You may add Your own copyright statement to Your modifications and
|
|
266
|
-
|
|
267
|
-
may provide additional or different license terms and conditions
|
|
268
|
-
|
|
269
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
270
|
-
|
|
271
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
272
|
-
|
|
273
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
274
|
-
|
|
275
|
-
the conditions stated in this License.
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
281
|
-
|
|
282
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
283
|
-
|
|
284
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
285
|
-
|
|
286
|
-
this License, without any additional terms or conditions.
|
|
287
|
-
|
|
288
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
289
|
-
|
|
290
|
-
the terms of any separate license agreement you may have executed
|
|
291
|
-
|
|
292
|
-
with Licensor regarding such Contributions.
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
298
|
-
|
|
299
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
300
|
-
|
|
301
|
-
except as required for reasonable and customary use in describing the
|
|
302
|
-
|
|
303
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
309
|
-
|
|
310
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
311
|
-
|
|
312
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
313
|
-
|
|
314
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
315
|
-
|
|
316
|
-
implied, including, without limitation, any warranties or conditions
|
|
317
|
-
|
|
318
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
319
|
-
|
|
320
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
321
|
-
|
|
322
|
-
appropriateness of using or redistributing the Work and assume any
|
|
323
|
-
|
|
324
|
-
risks associated with Your exercise of permissions under this License.
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
330
|
-
|
|
331
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
332
|
-
|
|
333
|
-
unless required by applicable law (such as deliberate and grossly
|
|
334
|
-
|
|
335
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
336
|
-
|
|
337
|
-
liable to You for damages, including any direct, indirect, special,
|
|
338
|
-
|
|
339
|
-
incidental, or consequential damages of any character arising as a
|
|
340
|
-
|
|
341
|
-
result of this License or out of the use or inability to use the
|
|
342
|
-
|
|
343
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
344
|
-
|
|
345
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
346
|
-
|
|
347
|
-
other commercial damages or losses), even if such Contributor
|
|
348
|
-
|
|
349
|
-
has been advised of the possibility of such damages.
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
355
|
-
|
|
356
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
357
|
-
|
|
358
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
359
|
-
|
|
360
|
-
or other liability obligations and/or rights consistent with this
|
|
361
|
-
|
|
362
|
-
License. However, in accepting such obligations, You may act only
|
|
363
|
-
|
|
364
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
365
|
-
|
|
366
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
367
|
-
|
|
368
|
-
defend, and hold each Contributor harmless for any liability
|
|
369
|
-
|
|
370
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
371
|
-
|
|
372
|
-
of your accepting any such warranty or additional liability.
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
END OF TERMS AND CONDITIONS
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
To apply the Apache License to your work, attach the following
|
|
388
|
-
|
|
389
|
-
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
390
|
-
|
|
391
|
-
replaced with your own identifying information. (Don't include
|
|
392
|
-
|
|
393
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
394
|
-
|
|
395
|
-
comment syntax for the file format. We also recommend that a
|
|
396
|
-
|
|
397
|
-
file or class name and description of purpose be included on the
|
|
398
|
-
|
|
399
|
-
same "printed page" as the copyright notice for easier
|
|
400
|
-
|
|
401
|
-
identification within third-party archives.
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
Copyright (C) 2017 Beijing Didi Infinity Technology and Development Co.,Ltd. All rights reserved.
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
412
|
-
|
|
413
|
-
you may not use this file except in compliance with the License.
|
|
414
|
-
|
|
415
|
-
You may obtain a copy of the License at
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
Unless required by applicable law or agreed to in writing, software
|
|
426
|
-
|
|
427
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
428
|
-
|
|
429
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
430
|
-
|
|
431
|
-
See the License for the specific language governing permissions and
|
|
432
|
-
|
|
433
|
-
limitations under the License.
|