@mpxjs/core 2.9.73 → 2.10.1-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  // declaration for mpx mode
2
- declare let __mpx_mode__: 'wx' | 'ali' | 'swan' | 'qq' | 'tt' | 'web' | 'dd' | 'qa' | 'jd'
2
+ declare let __mpx_mode__: 'wx' | 'ali' | 'swan' | 'qq' | 'tt' | 'web' | 'dd' | 'qa' | 'jd' | 'android' | 'ios' | 'harmony'
3
3
 
4
4
  // declaration for mpx env
5
5
  declare let __mpx_env__: string
package/@types/index.d.ts CHANGED
@@ -266,7 +266,7 @@ interface MpxConfig {
266
266
  observeClassInstance: boolean | Array<AnyConstructor>
267
267
  errorHandler: (msg: String, location: String, e: Error) => any | null
268
268
  warnHandler: (msg: String, location: String, e: Error) => any | null
269
- proxyEventHandler: (e: WechatMiniprogram.CustomEvent) => any | null
269
+ proxyEventHandler: (e: WechatMiniprogram.CustomEvent, target: ComponentIns<{}, {}, {}, {}, []>) => any | null
270
270
  setDataHandler: (data: object, target: ComponentIns<{}, {}, {}, {}, []>) => any | null
271
271
  forceFlushSync: boolean,
272
272
  webRouteConfig: object,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mpxjs/core",
3
- "version": "2.9.73",
3
+ "version": "2.10.1-beta.1",
4
4
  "description": "mpx runtime core",
5
5
  "keywords": [
6
6
  "miniprogram",
@@ -19,24 +19,25 @@
19
19
  ],
20
20
  "main": "src/index.js",
21
21
  "dependencies": {
22
- "@mpxjs/utils": "^2.9.73",
22
+ "@mpxjs/utils": "^2.10.0",
23
23
  "lodash": "^4.1.1",
24
24
  "miniprogram-api-typings": "^3.10.0"
25
25
  },
26
26
  "peerDependencies": {
27
- "@d11/react-native-fast-image": "^8.6.12",
27
+ "@d11/react-native-fast-image": "*",
28
28
  "@mpxjs/api-proxy": "^2.9.0",
29
29
  "@mpxjs/store": "^2.9.0",
30
- "@react-navigation/native": "^7.0.3",
31
- "@react-navigation/stack": "^7.0.4",
30
+ "@react-navigation/native": "*",
31
+ "@react-navigation/native-stack": "*",
32
32
  "react": "*",
33
33
  "react-native": "*",
34
- "react-native-gesture-handler": "^2.19.0",
35
- "react-native-linear-gradient": "^2.8.3",
36
- "react-native-reanimated": "^3.15.2",
37
- "react-native-safe-area-context": "^4.14.0",
38
- "react-native-screens": "^4.1.0",
39
- "react-native-webview": "^13.10.5",
34
+ "react-native-gesture-handler": "*",
35
+ "react-native-linear-gradient": "*",
36
+ "react-native-reanimated": "*",
37
+ "react-native-safe-area-context": "*",
38
+ "react-native-screens": "*",
39
+ "react-native-video": "*",
40
+ "react-native-webview": "*",
40
41
  "vue": "^2.7.10",
41
42
  "vue-demi": "^0.14.6",
42
43
  "vue-i18n": "^8.27.2",
@@ -67,7 +68,7 @@
67
68
  "@react-navigation/native": {
68
69
  "optional": true
69
70
  },
70
- "@react-navigation/stack": {
71
+ "@react-navigation/native-stack": {
71
72
  "optional": true
72
73
  },
73
74
  "react-native-safe-area-context": {
@@ -87,6 +88,9 @@
87
88
  },
88
89
  "@d11/react-native-fast-image": {
89
90
  "optional": true
91
+ },
92
+ "react-native-video": {
93
+ "optional": true
90
94
  }
91
95
  },
92
96
  "publishConfig": {
@@ -105,5 +109,5 @@
105
109
  "url": "https://github.com/didi/mpx/issues"
106
110
  },
107
111
  "sideEffects": false,
108
- "gitHead": "296482bcb03ab01081a96dcb41ce37df393c3281"
112
+ "gitHead": "2d37697869b9bdda3efab92dda8c910b68fd05c0"
109
113
  }
@@ -1,4 +1,4 @@
1
- import { warn, isArray, callWithErrorHandling, isDev } from '@mpxjs/utils'
1
+ import { warn, isArray, callWithErrorHandling, isDev, isReact } from '@mpxjs/utils'
2
2
  import Mpx from '../index'
3
3
 
4
4
  let isFlushing = false
@@ -47,6 +47,14 @@ function findInsertionIndex (id) {
47
47
  }
48
48
 
49
49
  export function nextTick (fn) {
50
+ if (isReact) {
51
+ const p = new Promise((resolve) => {
52
+ setTimeout(() => {
53
+ resolve(fn && fn.call(this))
54
+ })
55
+ })
56
+ return p
57
+ }
50
58
  const p = currentFlushPromise || resolvedPromise
51
59
  return fn ? p.then(this ? fn.bind(this) : fn) : p
52
60
  }
@@ -6,7 +6,7 @@ export default function proxyEventMixin () {
6
6
  __invoke (rawEvent, eventConfig = []) {
7
7
  if (typeof Mpx.config.proxyEventHandler === 'function') {
8
8
  try {
9
- Mpx.config.proxyEventHandler(rawEvent)
9
+ Mpx.config.proxyEventHandler(rawEvent, this)
10
10
  } catch (e) {
11
11
  }
12
12
  }
@@ -12,7 +12,7 @@ export default function proxyEventMixin () {
12
12
  __invoke ($event) {
13
13
  if (typeof Mpx.config.proxyEventHandler === 'function') {
14
14
  try {
15
- Mpx.config.proxyEventHandler($event)
15
+ Mpx.config.proxyEventHandler($event, this)
16
16
  } catch (e) {
17
17
  }
18
18
  }
@@ -23,7 +23,7 @@ export default function proxyEventMixin () {
23
23
  __invoke (rawEvent, eventConfig = []) {
24
24
  if (typeof Mpx.config.proxyEventHandler === 'function') {
25
25
  try {
26
- Mpx.config.proxyEventHandler(rawEvent)
26
+ Mpx.config.proxyEventHandler(rawEvent, this)
27
27
  } catch (e) {}
28
28
  }
29
29
  const location = this.__mpxProxy.options.mpxFileResource
@@ -4,6 +4,7 @@ import { createSelectorQuery } from '@mpxjs/api-proxy'
4
4
  export default function getRefsMixin () {
5
5
  return {
6
6
  [BEFORECREATE] () {
7
+ this.__refCache = {}
7
8
  this.__refs = {}
8
9
  this.$refs = {}
9
10
  this.__getRefs()
@@ -26,21 +27,30 @@ export default function getRefsMixin () {
26
27
  })
27
28
  })
28
29
  },
29
- __getRefVal (type, selectorsConf) {
30
- return (instance) => {
31
- if (instance) {
30
+ __getRefVal (type, selectorsConf, refFnId) {
31
+ if (!this.__refCache[refFnId]) {
32
+ this.__refCache[refFnId] = (instance) => {
32
33
  selectorsConf.forEach((item = []) => {
33
34
  const [prefix, selectors = ''] = item
34
35
  if (selectors) {
35
36
  selectors.trim().split(/\s+/).forEach(selector => {
36
37
  const refKey = prefix + selector
38
+ const refVal = { type, instance, refFnId }
37
39
  this.__refs[refKey] = this.__refs[refKey] || []
38
- this.__refs[refKey].push({ type, instance })
40
+ if (instance) { // mount
41
+ this.__refs[refKey].push(refVal)
42
+ } else { // unmount
43
+ const index = this.__refs[refKey].findIndex(item => item.refFnId === refFnId)
44
+ if (index > -1) {
45
+ this.__refs[refKey].splice(index, 1)
46
+ }
47
+ }
39
48
  })
40
49
  }
41
50
  })
42
51
  }
43
52
  }
53
+ return this.__refCache[refFnId]
44
54
  },
45
55
  __selectRef (selector, refType, all = false) {
46
56
  const splitedSelector = selector.match(/(#|\.)?[^.#]+/g) || []
@@ -6,7 +6,6 @@ import { LIFECYCLE } from '../platform/patch/lifecycle/index'
6
6
  import Mpx from '../index'
7
7
  import { createElement, memo, useRef, useEffect } from 'react'
8
8
  import * as ReactNative from 'react-native'
9
- import { Image } from 'react-native'
10
9
  import { initAppProvides } from './export/inject'
11
10
 
12
11
  const appHooksMap = makeMap(mergeLifecycle(LIFECYCLE).app)
@@ -182,19 +181,20 @@ export default function createApp (options) {
182
181
  }, [])
183
182
 
184
183
  const { initialRouteName, initialParams } = initialRouteRef.current
185
- const headerBackImageProps = Mpx.config.rnConfig.headerBackImageProps || null
184
+ const headerBackImageSource = Mpx.config.rnConfig.headerBackImageSource || null
186
185
  const navScreenOpts = {
187
186
  // 7.x替换headerBackTitleVisible
188
187
  // headerBackButtonDisplayMode: 'minimal',
189
188
  headerBackTitleVisible: false,
190
189
  // 安卓上会出现初始化时闪现导航条的问题
191
- headerShown: false
190
+ headerShown: false,
191
+ // 隐藏导航下的那条线
192
+ headerShadowVisible: false
192
193
  }
193
- if (headerBackImageProps) {
194
- navScreenOpts.headerBackImage = () => {
195
- return createElement(Image, headerBackImageProps)
196
- }
194
+ if (headerBackImageSource) {
195
+ navScreenOpts.headerBackImageSource = headerBackImageSource
197
196
  }
197
+
198
198
  return createElement(SafeAreaProvider,
199
199
  null,
200
200
  createElement(NavigationContainer,
@@ -1,4 +1,4 @@
1
- import { useEffect, useLayoutEffect, useSyncExternalStore, useRef, useMemo, useState, useCallback, createElement, memo, forwardRef, useImperativeHandle, useContext, Fragment, cloneElement, createContext } from 'react'
1
+ import { useEffect, useLayoutEffect, useSyncExternalStore, useRef, useMemo, createElement, memo, forwardRef, useImperativeHandle, useContext, Fragment, cloneElement, createContext } from 'react'
2
2
  import * as ReactNative from 'react-native'
3
3
  import { ReactiveEffect } from '../../observer/effect'
4
4
  import { watch } from '../../observer/watch'
@@ -10,6 +10,7 @@ import mergeOptions from '../../core/mergeOptions'
10
10
  import { queueJob, hasPendingJob } from '../../observer/scheduler'
11
11
  import { createSelectorQuery, createIntersectionObserver } from '@mpxjs/api-proxy'
12
12
  import { IntersectionObserverContext, RouteContext, KeyboardAvoidContext } from '@mpxjs/webpack-plugin/lib/runtime/components/react/dist/context'
13
+ import KeyboardAvoidingView from '@mpxjs/webpack-plugin/lib/runtime/components/react/dist/KeyboardAvoidingView'
13
14
 
14
15
  const ProviderContext = createContext(null)
15
16
 
@@ -44,7 +45,8 @@ function createEffect (proxy, components) {
44
45
  const getComponent = (tagName) => {
45
46
  if (!tagName) return null
46
47
  if (tagName === 'block') return Fragment
47
- return components[tagName] || getByPath(ReactNative, tagName)
48
+ const appComponents = global.__getAppComponents?.() || {}
49
+ return components[tagName] || appComponents[tagName] || getByPath(ReactNative, tagName)
48
50
  }
49
51
  const innerCreateElement = (type, ...rest) => {
50
52
  if (!type) return null
@@ -115,7 +117,6 @@ const instanceProto = {
115
117
  return createIntersectionObserver(this, opt, this.__intersectionCtx)
116
118
  },
117
119
  __resetInstance () {
118
- this.__refs = {}
119
120
  this.__dispatchedSlotSet = new WeakSet()
120
121
  },
121
122
  __iter (val, fn) {
@@ -431,7 +432,6 @@ const provideRelation = (instance, relation) => {
431
432
  }
432
433
  }
433
434
  }
434
-
435
435
  export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
436
436
  rawOptions = mergeOptions(rawOptions, type, false)
437
437
  const components = Object.assign({}, rawOptions.components, currentInject.getComponents())
@@ -442,7 +442,7 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
442
442
  const instanceRef = useRef(null)
443
443
  const propsRef = useRef(null)
444
444
  const intersectionCtx = useContext(IntersectionObserverContext)
445
- const pageId = useContext(RouteContext)
445
+ const { pageId } = useContext(RouteContext) || {}
446
446
  const parentProvides = useContext(ProviderContext)
447
447
  let relation = null
448
448
  if (hasDescendantRelation || hasAncestorRelation) {
@@ -566,14 +566,12 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
566
566
  }
567
567
 
568
568
  if (type === 'page') {
569
- const { Provider, useSafeAreaInsets, GestureHandlerRootView } = global.__navigationHelper
569
+ const { PortalHost, useSafeAreaInsets, GestureHandlerRootView, useHeaderHeight } = global.__navigationHelper
570
570
  const pageConfig = Object.assign({}, global.__mpxPageConfig, currentInject.pageConfig)
571
571
  const Page = ({ navigation, route }) => {
572
- const [enabled, setEnabled] = useState(true)
573
572
  const currentPageId = useMemo(() => ++pageId, [])
574
573
  const intersectionObservers = useRef({})
575
574
  usePageStatus(navigation, currentPageId)
576
-
577
575
  useLayoutEffect(() => {
578
576
  const isCustom = pageConfig.navigationStyle === 'custom'
579
577
  navigation.setOptions({
@@ -584,6 +582,7 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
584
582
  },
585
583
  headerTintColor: pageConfig.navigationBarTextStyle || 'white'
586
584
  })
585
+
587
586
  if (__mpx_mode__ === 'android') {
588
587
  ReactNative.StatusBar.setBarStyle(pageConfig.barStyle || 'dark-content')
589
588
  ReactNative.StatusBar.setTranslucent(isCustom) // 控制statusbar是否占位
@@ -593,41 +592,43 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
593
592
  }, [])
594
593
 
595
594
  const rootRef = useRef(null)
596
- const onLayout = useCallback(() => {
597
- rootRef.current?.measureInWindow((x, y, width, height) => {
598
- navigation.layout = { x, y, width, height }
599
- })
595
+ const keyboardAvoidRef = useRef({ cursorSpacing: 0, ref: null })
596
+ useEffect(() => {
597
+ setTimeout(() => {
598
+ rootRef.current?.measureInWindow((x, y, width, height) => {
599
+ navigation.layout = { x, y, width, height }
600
+ })
601
+ }, 100)
600
602
  }, [])
601
-
602
603
  const withKeyboardAvoidingView = (element) => {
603
- if (__mpx_mode__ === 'ios') {
604
- return createElement(KeyboardAvoidContext.Provider,
604
+ return createElement(KeyboardAvoidContext.Provider,
605
+ {
606
+ value: keyboardAvoidRef
607
+ },
608
+ createElement(KeyboardAvoidingView,
605
609
  {
606
- value: setEnabled
607
- },
608
- createElement(ReactNative.KeyboardAvoidingView,
609
- {
610
- style: {
611
- flex: 1
612
- },
613
- contentContainerStyle: {
614
- flex: 1
615
- },
616
- behavior: 'position',
617
- enabled
610
+ style: {
611
+ flex: 1
618
612
  },
619
- element
620
- )
613
+ contentContainerStyle: {
614
+ flex: 1
615
+ }
616
+ },
617
+ element
621
618
  )
622
- }
623
- return element
619
+ )
624
620
  }
625
621
 
626
622
  navigation.insets = useSafeAreaInsets()
627
623
 
628
624
  return createElement(GestureHandlerRootView,
629
625
  {
630
- style: {
626
+ // https://github.com/software-mansion/react-native-reanimated/issues/6639 因存在此问题,iOS在页面上进行定宽来暂时规避
627
+ style: __mpx_mode__ === 'ios' && pageConfig.navigationStyle !== 'custom'
628
+ ? {
629
+ height: ReactNative.Dimensions.get('screen').height - useHeaderHeight()
630
+ }
631
+ : {
631
632
  flex: 1
632
633
  }
633
634
  },
@@ -638,18 +639,20 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
638
639
  flex: 1,
639
640
  backgroundColor: pageConfig.backgroundColor || '#ffffff'
640
641
  },
641
- ref: rootRef,
642
- onLayout
642
+ ref: rootRef
643
643
  },
644
644
  createElement(RouteContext.Provider,
645
645
  {
646
- value: currentPageId
646
+ value: {
647
+ pageId: currentPageId,
648
+ navigation
649
+ }
647
650
  },
648
651
  createElement(IntersectionObserverContext.Provider,
649
652
  {
650
653
  value: intersectionObservers.current
651
654
  },
652
- createElement(Provider,
655
+ createElement(PortalHost,
653
656
  null,
654
657
  createElement(defaultOptions,
655
658
  {
@@ -92,8 +92,8 @@ export function getDefaultOptions ({ type, rawOptions = {} }) {
92
92
  this.__mpxProxy.callHook(UNMOUNTED)
93
93
  }
94
94
  },
95
- serverPrefetch () {
96
- if (this.__mpxProxy) return this.__mpxProxy.callHook(SERVERPREFETCH)
95
+ serverPrefetch (...args) {
96
+ if (this.__mpxProxy) return this.__mpxProxy.callHook(SERVERPREFETCH, args)
97
97
  }
98
98
  }]
99
99
  // 为了在builtMixin中可以使用某些rootMixin实现的特性(如数据响应等),此处builtInMixin在rootMixin之后执行,但是当builtInMixin使用存在对应内建生命周期的目标平台声明周期写法时,可能会出现用户生命周期比builtInMixin中的生命周期先执行的情况,为了避免这种情况发生,builtInMixin应该尽可能使用内建生命周期来编写
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.