@mpxjs/core 2.10.15 → 2.10.16-beta.2
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/global.d.ts +3 -0
- package/@types/index.d.ts +16 -27
- package/package.json +7 -3
- package/src/convertor/wxToAli.js +1 -1
- package/src/convertor/wxToReact.js +1 -1
- package/src/convertor/wxToSwan.js +1 -1
- package/src/convertor/wxToTt.js +1 -1
- package/src/convertor/wxToWeb.js +1 -1
- package/src/core/transferOptions.js +1 -1
- package/src/platform/builtInMixins/styleHelperMixin.ios.js +9 -7
- package/src/platform/createApp.ios.js +5 -9
- package/src/platform/patch/getDefaultOptions.ios.js +33 -30
- package/LICENSE +0 -433
package/@types/global.d.ts
CHANGED
package/@types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
import type { GetComputedType } from '@mpxjs/store'
|
|
11
11
|
import type { ScaledSize } from 'react-native'
|
|
12
|
+
import type { ComponentType } from 'react'
|
|
12
13
|
export * from '@mpxjs/store'
|
|
13
14
|
|
|
14
15
|
// utils
|
|
@@ -126,9 +127,17 @@ interface Context {
|
|
|
126
127
|
type ExtendedComponentOptions = {
|
|
127
128
|
disconnectOnUnmounted?: boolean
|
|
128
129
|
shallowReactivePattern?: RegExp
|
|
130
|
+
/**
|
|
131
|
+
* 是否禁用render函数的useMemo,仅输出RN支持
|
|
132
|
+
*/
|
|
133
|
+
disableMemo?: boolean
|
|
129
134
|
} & WechatMiniprogram.Component.ComponentOptions
|
|
130
135
|
|
|
131
136
|
interface ComponentOpt<D extends Data, P extends Properties, C, M extends Methods, Mi extends Array<any>, S extends Record<any, any>> extends Partial<WechatMiniprogram.Component.Lifetimes & WechatMiniprogram.Component.OtherOption> {
|
|
137
|
+
/**
|
|
138
|
+
* ReactNative 原生组件注册
|
|
139
|
+
*/
|
|
140
|
+
components?: Record<string, ComponentType>,
|
|
132
141
|
data?: D
|
|
133
142
|
properties?: P
|
|
134
143
|
computed?: C
|
|
@@ -221,7 +230,7 @@ type WxComponentIns<D extends Data = {}, P extends Properties = {}, M extends Me
|
|
|
221
230
|
Omit<WechatMiniprogram.Component.Instance<D, P, M>, 'selectComponent' | 'selectAllComponents'>
|
|
222
231
|
& ReplaceWxComponentIns
|
|
223
232
|
|
|
224
|
-
type ComponentIns<D extends Data = {}, P extends Properties = {}, C = {}, M extends Methods = {}, Mi extends Array<any> = [], S extends Record<any, any> = {}, O = {}> =
|
|
233
|
+
export type ComponentIns<D extends Data = {}, P extends Properties = {}, C = {}, M extends Methods = {}, Mi extends Array<any> = [], S extends Record<any, any> = {}, O = {}> =
|
|
225
234
|
GetDataType<D> & UnboxMixinsField<Mi, 'data'> &
|
|
226
235
|
M & UnboxMixinsField<Mi, 'methods'> & { [K in keyof S]: S[K] extends Ref<infer V> ? V : S[K] } &
|
|
227
236
|
GetPropsType<P & UnboxMixinsField<Mi, 'properties'>> &
|
|
@@ -296,7 +305,7 @@ export interface RnConfig {
|
|
|
296
305
|
* - `true`:允许退出应用
|
|
297
306
|
* - `false`:阻止退出应用
|
|
298
307
|
*/
|
|
299
|
-
onAppBack?: () => boolean
|
|
308
|
+
onAppBack?: (delta: number) => boolean
|
|
300
309
|
|
|
301
310
|
/**
|
|
302
311
|
* 是否禁用框架内部的 AppStateChange 监听。
|
|
@@ -356,26 +365,6 @@ export interface RnConfig {
|
|
|
356
365
|
dimensions: T
|
|
357
366
|
) => T | void
|
|
358
367
|
|
|
359
|
-
/**
|
|
360
|
-
* 异步分包加载配置。
|
|
361
|
-
*/
|
|
362
|
-
asyncChunk?: {
|
|
363
|
-
/**
|
|
364
|
-
* 加载超时时长配置,单位为毫秒。
|
|
365
|
-
*/
|
|
366
|
-
timeout: number
|
|
367
|
-
|
|
368
|
-
/**
|
|
369
|
-
* 异步分包页面加载超时或失败时,自定义兜底页面文件路径。
|
|
370
|
-
*/
|
|
371
|
-
fallback: string
|
|
372
|
-
|
|
373
|
-
/**
|
|
374
|
-
* 异步分包页面加载时,自定义 loading 页面文件路径。
|
|
375
|
-
*/
|
|
376
|
-
loading: string
|
|
377
|
-
}
|
|
378
|
-
|
|
379
368
|
/**
|
|
380
369
|
* 加载并执行异步分包的方法。
|
|
381
370
|
*
|
|
@@ -399,10 +388,10 @@ interface MpxConfig {
|
|
|
399
388
|
ignoreWarning: boolean | string | RegExp | ((msg: string, location: string, e: Error) => boolean)
|
|
400
389
|
ignoreProxyWhiteList: Array<string>
|
|
401
390
|
observeClassInstance: boolean | Array<AnyConstructor>
|
|
402
|
-
errorHandler: (msg: String, location: String, e: Error) =>
|
|
403
|
-
warnHandler: (msg: String, location: String, e: Error) =>
|
|
404
|
-
proxyEventHandler: (e: WechatMiniprogram.CustomEvent, target: ComponentIns<{}, {}, {}, {}, []>) =>
|
|
405
|
-
setDataHandler: (data: object, target: ComponentIns<{}, {}, {}, {}, []>) =>
|
|
391
|
+
errorHandler: (msg: String, location: String, e: Error) => void
|
|
392
|
+
warnHandler: (msg: String, location: String, e: Error) => void
|
|
393
|
+
proxyEventHandler: (e: WechatMiniprogram.CustomEvent, target: ComponentIns<{}, {}, {}, {}, []>) => void
|
|
394
|
+
setDataHandler: (data: object, target: ComponentIns<{}, {}, {}, {}, []>) => void
|
|
406
395
|
forceFlushSync: boolean,
|
|
407
396
|
webRouteConfig: object,
|
|
408
397
|
webConfig: object,
|
|
@@ -413,7 +402,7 @@ interface MpxConfig {
|
|
|
413
402
|
*/
|
|
414
403
|
webviewConfig: WebviewConfig,
|
|
415
404
|
/** react-native 相关配置,用于挂载事件等,如 onShareAppMessage */
|
|
416
|
-
rnConfig
|
|
405
|
+
rnConfig: RnConfig,
|
|
417
406
|
}
|
|
418
407
|
|
|
419
408
|
type SupportedMode = 'wx' | 'ali' | 'qq' | 'swan' | 'tt' | 'web' | 'qa'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/core",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.16-beta.2",
|
|
4
4
|
"description": "mpx runtime core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"miniprogram",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"main": "src/index.js",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@mpxjs/utils": "^2.10.
|
|
22
|
+
"@mpxjs/utils": "^2.10.16",
|
|
23
23
|
"lodash": "^4.1.1",
|
|
24
24
|
"miniprogram-api-typings": "^3.10.0"
|
|
25
25
|
},
|
|
@@ -93,6 +93,10 @@
|
|
|
93
93
|
"optional": true
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"@types/react": "^18.2.79",
|
|
98
|
+
"react-native": "^0.74.5"
|
|
99
|
+
},
|
|
96
100
|
"publishConfig": {
|
|
97
101
|
"registry": "https://registry.npmjs.org",
|
|
98
102
|
"access": "public"
|
|
@@ -109,5 +113,5 @@
|
|
|
109
113
|
"url": "https://github.com/didi/mpx/issues"
|
|
110
114
|
},
|
|
111
115
|
"sideEffects": false,
|
|
112
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "2d37697869b9bdda3efab92dda8c910b68fd05c0"
|
|
113
117
|
}
|
package/src/convertor/wxToAli.js
CHANGED
|
@@ -7,7 +7,7 @@ import { implemented } from '../core/implement'
|
|
|
7
7
|
const unsupported = ['moved', 'definitionFilter']
|
|
8
8
|
|
|
9
9
|
function convertErrorDesc (key) {
|
|
10
|
-
error(`Options.${key} is not supported in runtime conversion from wx to ali.`, global.currentResource)
|
|
10
|
+
error(`Options.${key} is not supported in runtime conversion from wx to ali.`, global.currentResource || global.currentModuleId)
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
function notSupportTip (options) {
|
|
@@ -8,7 +8,7 @@ import { implemented } from '../core/implement'
|
|
|
8
8
|
const unsupported = ['moved', 'definitionFilter']
|
|
9
9
|
|
|
10
10
|
function convertErrorDesc (key) {
|
|
11
|
-
error(`Options.${key} is not supported in runtime conversion from wx to react native.`, global.currentResource)
|
|
11
|
+
error(`Options.${key} is not supported in runtime conversion from wx to react native.`, global.currentResource || global.currentModuleId)
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
function notSupportTip (options) {
|
|
@@ -12,7 +12,7 @@ const BEHAVIORS_MAP = {
|
|
|
12
12
|
const unsupported = ['moved', 'relations']
|
|
13
13
|
|
|
14
14
|
function convertErrorDesc (key) {
|
|
15
|
-
error(`Options.${key} is not supported in runtime conversion from wx to swan.`, global.currentResource)
|
|
15
|
+
error(`Options.${key} is not supported in runtime conversion from wx to swan.`, global.currentResource || global.currentModuleId)
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
function notSupportTip (options) {
|
package/src/convertor/wxToTt.js
CHANGED
|
@@ -12,7 +12,7 @@ export default {
|
|
|
12
12
|
if (options.behaviors) {
|
|
13
13
|
options.behaviors.forEach((behavior, idx) => {
|
|
14
14
|
if (BEHAVIORS_MAP.includes(behavior)) {
|
|
15
|
-
error(`Built-in behavior "${behavior}" is not supported in tt environment!`, global.currentResource)
|
|
15
|
+
error(`Built-in behavior "${behavior}" is not supported in tt environment!`, global.currentResource || global.currentModuleId)
|
|
16
16
|
options.behaviors.splice(idx, 1)
|
|
17
17
|
}
|
|
18
18
|
})
|
package/src/convertor/wxToWeb.js
CHANGED
|
@@ -14,7 +14,7 @@ import { implemented } from '../core/implement'
|
|
|
14
14
|
const unsupported = ['moved', 'definitionFilter', 'onShareAppMessage']
|
|
15
15
|
|
|
16
16
|
function convertErrorDesc (key) {
|
|
17
|
-
error(`Options.${key} is not supported in runtime conversion from wx to web.`, global.currentResource)
|
|
17
|
+
error(`Options.${key} is not supported in runtime conversion from wx to web.`, global.currentResource || global.currentModuleId)
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
function notSupportTip (options) {
|
|
@@ -13,7 +13,7 @@ export default function transferOptions (options, type, needConvert = true) {
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
// 文件编译路径
|
|
16
|
-
options.mpxFileResource = global.currentResource
|
|
16
|
+
options.mpxFileResource = global.currentResource || global.currentModuleId
|
|
17
17
|
// 注入全局写入的mixins,原生模式下不进行注入
|
|
18
18
|
if (!options.__nativeRender__) {
|
|
19
19
|
options = mergeInjectedMixins(options, type)
|
|
@@ -8,10 +8,6 @@ const rawDimensions = {
|
|
|
8
8
|
}
|
|
9
9
|
let width, height
|
|
10
10
|
|
|
11
|
-
// TODO 临时适配折叠屏场景适配
|
|
12
|
-
// const isLargeFoldableLike = (__mpx_mode__ === 'android') && (height / width < 1.5) && (width > 600)
|
|
13
|
-
// if (isLargeFoldableLike) width = width / 2
|
|
14
|
-
|
|
15
11
|
function customDimensions (dimensions) {
|
|
16
12
|
if (typeof Mpx.config.rnConfig?.customDimensions === 'function') {
|
|
17
13
|
dimensions = Mpx.config.rnConfig.customDimensions(dimensions) || dimensions
|
|
@@ -236,12 +232,18 @@ export default function styleHelperMixin () {
|
|
|
236
232
|
flex: 0,
|
|
237
233
|
height: 0,
|
|
238
234
|
width: 0,
|
|
239
|
-
|
|
240
|
-
|
|
235
|
+
paddingTop: 0,
|
|
236
|
+
paddingRight: 0,
|
|
237
|
+
paddingBottom: 0,
|
|
238
|
+
paddingLeft: 0,
|
|
239
|
+
marginTop: 0,
|
|
240
|
+
marginRight: 0,
|
|
241
|
+
marginBottom: 0,
|
|
242
|
+
marginLeft: 0,
|
|
241
243
|
overflow: 'hidden'
|
|
242
244
|
})
|
|
243
245
|
}
|
|
244
|
-
const isEmpty = isNativeStaticStyle ? result.length
|
|
246
|
+
const isEmpty = isNativeStaticStyle ? !result.length : isEmptyObject(result)
|
|
245
247
|
return isEmpty ? empty : result
|
|
246
248
|
}
|
|
247
249
|
}
|
|
@@ -108,7 +108,7 @@ export default function createApp (options) {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
const appState = reactive({ state: '' })
|
|
111
|
-
// TODO
|
|
111
|
+
// TODO reason 目前支持模拟 0/3
|
|
112
112
|
// 0用户退出小程序
|
|
113
113
|
// 1进入其他小程序
|
|
114
114
|
// 2打开原生功能页
|
|
@@ -136,12 +136,10 @@ export default function createApp (options) {
|
|
|
136
136
|
global.__mpxAppCbs.show.forEach((cb) => {
|
|
137
137
|
cb(options)
|
|
138
138
|
})
|
|
139
|
-
} else if (value === 'hide') {
|
|
140
|
-
|
|
141
|
-
delete appState.hideReason
|
|
142
|
-
global.__mpxAppCbs.hide.forEach((cb) => {
|
|
139
|
+
} else if (value === 'hide' || value === 'exit') {
|
|
140
|
+
global.__mpxAppCbs.hide.forEach((cb) => {
|
|
143
141
|
cb({
|
|
144
|
-
reason
|
|
142
|
+
reason: value === 'exit' ? 0 : 3
|
|
145
143
|
})
|
|
146
144
|
})
|
|
147
145
|
}
|
|
@@ -154,7 +152,6 @@ export default function createApp (options) {
|
|
|
154
152
|
global.__mpxPageStatusMap[navigation.pageId] = 'show'
|
|
155
153
|
}
|
|
156
154
|
} else if (currentState === 'inactive' || currentState === 'background') {
|
|
157
|
-
appState.hideReason = 3
|
|
158
155
|
appState.state = 'hide'
|
|
159
156
|
if (navigation && hasOwn(global.__mpxPageStatusMap, navigation.pageId)) {
|
|
160
157
|
global.__mpxPageStatusMap[navigation.pageId] = 'hide'
|
|
@@ -224,8 +221,7 @@ export default function createApp (options) {
|
|
|
224
221
|
}
|
|
225
222
|
})
|
|
226
223
|
return () => {
|
|
227
|
-
appState.
|
|
228
|
-
appState.state = 'hide'
|
|
224
|
+
appState.state = 'exit'
|
|
229
225
|
changeSubscription && changeSubscription.remove()
|
|
230
226
|
resizeSubScription && resizeSubScription.remove()
|
|
231
227
|
}
|
|
@@ -3,7 +3,7 @@ import * as ReactNative from 'react-native'
|
|
|
3
3
|
import { ReactiveEffect } from '../../observer/effect'
|
|
4
4
|
import { watch } from '../../observer/watch'
|
|
5
5
|
import { del, reactive, set } from '../../observer/reactive'
|
|
6
|
-
import { hasOwn, isFunction, noop, isObject, isArray, getByPath, collectDataset, hump2dash, dash2hump, callWithErrorHandling, wrapMethodsWithErrorHandling, error, setFocusedNavigation } from '@mpxjs/utils'
|
|
6
|
+
import { hasOwn, isFunction, noop, isObject, isArray, getByPath, collectDataset, hump2dash, dash2hump, callWithErrorHandling, wrapMethodsWithErrorHandling, error, warn, setFocusedNavigation } from '@mpxjs/utils'
|
|
7
7
|
import MpxProxy from '../../core/proxy'
|
|
8
8
|
import { BEFOREUPDATE, ONLOAD, UPDATED, ONSHOW, ONHIDE, ONRESIZE, REACTHOOKSEXEC } from '../../core/innerLifecycle'
|
|
9
9
|
import mergeOptions from '../../core/mergeOptions'
|
|
@@ -13,12 +13,12 @@ import MpxKeyboardAvoidingView from '@mpxjs/webpack-plugin/lib/runtime/component
|
|
|
13
13
|
import {
|
|
14
14
|
IntersectionObserverContext,
|
|
15
15
|
KeyboardAvoidContext,
|
|
16
|
+
ProviderContext,
|
|
16
17
|
RouteContext
|
|
17
18
|
} from '@mpxjs/webpack-plugin/lib/runtime/components/react/dist/context'
|
|
18
19
|
import { PortalHost, useSafeAreaInsets } from '../env/navigationHelper'
|
|
19
20
|
import { useInnerHeaderHeight } from '../env/nav'
|
|
20
21
|
|
|
21
|
-
const ProviderContext = createContext(null)
|
|
22
22
|
function getSystemInfo () {
|
|
23
23
|
const windowDimensions = ReactNative.Dimensions.get('window')
|
|
24
24
|
const screenDimensions = ReactNative.Dimensions.get('screen')
|
|
@@ -497,7 +497,6 @@ function getLayoutData (headerHeight) {
|
|
|
497
497
|
|
|
498
498
|
export function PageWrapperHOC (WrappedComponent, pageConfig = {}) {
|
|
499
499
|
return function PageWrapperCom ({ navigation, route, ...props }) {
|
|
500
|
-
const rootRef = useRef(null)
|
|
501
500
|
const keyboardAvoidRef = useRef(null)
|
|
502
501
|
const intersectionObservers = useRef({})
|
|
503
502
|
const currentPageId = useMemo(() => ++pageId, [])
|
|
@@ -545,36 +544,36 @@ export function PageWrapperHOC (WrappedComponent, pageConfig = {}) {
|
|
|
545
544
|
// android存在第一次打开insets都返回为0情况,后续会触发第二次渲染后正确
|
|
546
545
|
navigation.insets = useSafeAreaInsets()
|
|
547
546
|
return withKeyboardAvoidingView(
|
|
548
|
-
|
|
549
|
-
{
|
|
550
|
-
style: {
|
|
551
|
-
flex: 1,
|
|
552
|
-
backgroundColor: currentPageConfig?.backgroundColor || '#fff',
|
|
553
|
-
// 解决页面内有元素定位relative left为负值的时候,回退的时候还能看到对应元素问题
|
|
554
|
-
overflow: 'hidden'
|
|
555
|
-
},
|
|
556
|
-
ref: rootRef
|
|
557
|
-
},
|
|
558
|
-
createElement(RouteContext.Provider,
|
|
559
|
-
{
|
|
560
|
-
value: routeContextValRef.current
|
|
561
|
-
},
|
|
562
|
-
createElement(IntersectionObserverContext.Provider,
|
|
547
|
+
createElement(ReactNative.View,
|
|
563
548
|
{
|
|
564
|
-
|
|
549
|
+
style: {
|
|
550
|
+
flex: 1,
|
|
551
|
+
// 页面容器背景色
|
|
552
|
+
backgroundColor: currentPageConfig?.backgroundColorContent || '#fff',
|
|
553
|
+
// 解决页面内有元素定位relative left为负值的时候,回退的时候还能看到对应元素问题
|
|
554
|
+
overflow: 'hidden'
|
|
555
|
+
}
|
|
565
556
|
},
|
|
566
|
-
createElement(
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
557
|
+
createElement(RouteContext.Provider,
|
|
558
|
+
{
|
|
559
|
+
value: routeContextValRef.current
|
|
560
|
+
},
|
|
561
|
+
createElement(IntersectionObserverContext.Provider,
|
|
562
|
+
{
|
|
563
|
+
value: intersectionObservers.current
|
|
564
|
+
},
|
|
565
|
+
createElement(PortalHost,
|
|
566
|
+
null,
|
|
567
|
+
createElement(WrappedComponent, {
|
|
568
|
+
...props,
|
|
569
|
+
navigation,
|
|
570
|
+
route,
|
|
571
|
+
id: currentPageId
|
|
572
|
+
})
|
|
573
|
+
)
|
|
574
|
+
)
|
|
574
575
|
)
|
|
575
|
-
)
|
|
576
576
|
)
|
|
577
|
-
)
|
|
578
577
|
)
|
|
579
578
|
}
|
|
580
579
|
}
|
|
@@ -593,7 +592,7 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
|
|
|
593
592
|
const instanceRef = useRef(null)
|
|
594
593
|
const propsRef = useRef(null)
|
|
595
594
|
const intersectionCtx = useContext(IntersectionObserverContext)
|
|
596
|
-
const { pageId } = useContext(RouteContext) || {}
|
|
595
|
+
const { pageId, navigation } = useContext(RouteContext) || {}
|
|
597
596
|
const parentProvides = useContext(ProviderContext)
|
|
598
597
|
let relation = null
|
|
599
598
|
if (hasDescendantRelation || hasAncestorRelation) {
|
|
@@ -652,6 +651,10 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
|
|
|
652
651
|
usePageEffect(proxy, pageId)
|
|
653
652
|
useEffect(() => {
|
|
654
653
|
proxy.mounted()
|
|
654
|
+
if (navigation.camera?.multi) {
|
|
655
|
+
navigation.camera.multi = false
|
|
656
|
+
warn('<camera>: 一个页面只能插入一个')
|
|
657
|
+
}
|
|
655
658
|
return () => {
|
|
656
659
|
proxy.unmounted()
|
|
657
660
|
proxy.target.__resetInstance()
|
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.
|