@mpxjs/core 2.10.7-beta.9 → 2.10.8
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 +2 -7
- package/LICENSE +433 -0
- package/package.json +3 -3
- package/src/platform/builtInMixins/styleHelperMixin.ios.js +3 -0
- package/src/platform/createApp.ios.js +22 -28
- package/src/platform/env/index.ios.js +13 -1
- package/src/platform/env/nav.js +34 -30
- package/src/platform/env/navigationHelper.ios.js +0 -2
- package/src/platform/patch/getDefaultOptions.ios.js +84 -50
- package/src/platform/env/navigationHelper.android.js +0 -17
package/@types/index.d.ts
CHANGED
|
@@ -267,13 +267,8 @@ export interface RnConfig {
|
|
|
267
267
|
* 外层可能会异常设置此配置,因此加载监听函数内部
|
|
268
268
|
*/
|
|
269
269
|
disableAppStateListener?: boolean
|
|
270
|
-
/**
|
|
271
|
-
|
|
272
|
-
/** 是否展示回退按钮 */
|
|
273
|
-
show?: boolean,
|
|
274
|
-
/** 监听回退按钮点击 */
|
|
275
|
-
listener?: Function
|
|
276
|
-
}
|
|
270
|
+
/** 进入页面是否控制回退按钮的展示以及监听回退按钮的点击 */
|
|
271
|
+
onStackTopBack?: () => void
|
|
277
272
|
}
|
|
278
273
|
|
|
279
274
|
interface MpxConfig {
|
package/LICENSE
ADDED
|
@@ -0,0 +1,433 @@
|
|
|
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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/core",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.8",
|
|
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.8",
|
|
23
23
|
"lodash": "^4.1.1",
|
|
24
24
|
"miniprogram-api-typings": "^3.10.0"
|
|
25
25
|
},
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"url": "https://github.com/didi/mpx/issues"
|
|
110
110
|
},
|
|
111
111
|
"sideEffects": false,
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "23f6e6d5fa30e4abdc35e137007edbd38337b36e"
|
|
113
113
|
}
|
|
@@ -2,6 +2,9 @@ import { isObject, isArray, dash2hump, cached, isEmptyObject } from '@mpxjs/util
|
|
|
2
2
|
import { Dimensions, StyleSheet } from 'react-native'
|
|
3
3
|
|
|
4
4
|
let { width, height } = Dimensions.get('screen')
|
|
5
|
+
// TODO 临时适配折叠屏场景适配
|
|
6
|
+
const isLargeFoldableLike = (__mpx_mode__ === 'android') && (height / width < 1.5) && (width > 600)
|
|
7
|
+
if (isLargeFoldableLike) width = width / 2
|
|
5
8
|
|
|
6
9
|
Dimensions.addEventListener('change', ({ screen }) => {
|
|
7
10
|
width = screen.width
|
|
@@ -53,44 +53,38 @@ export default function createApp (options) {
|
|
|
53
53
|
defaultOptions.onUnhandledRejection && global.__mpxAppCbs.rejection.push(defaultOptions.onUnhandledRejection.bind(appInstance))
|
|
54
54
|
defaultOptions.onAppInit && defaultOptions.onAppInit()
|
|
55
55
|
|
|
56
|
-
const
|
|
56
|
+
const pagesMap = currentInject.pagesMap || {}
|
|
57
57
|
const firstPage = currentInject.firstPage
|
|
58
58
|
const Stack = createNativeStackNavigator()
|
|
59
|
-
const withHeader = (wrappedComponent, { pageConfig = {} }) => {
|
|
60
|
-
return ({ navigation, ...props }) => {
|
|
61
|
-
return createElement(GestureHandlerRootView,
|
|
62
|
-
{
|
|
63
|
-
style: {
|
|
64
|
-
flex: 1
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
createElement(innerNav, {
|
|
68
|
-
pageConfig: pageConfig,
|
|
69
|
-
navigation
|
|
70
|
-
}),
|
|
71
|
-
createElement(wrappedComponent, { navigation, ...props })
|
|
72
|
-
)
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
59
|
const getPageScreens = (initialRouteName, initialParams) => {
|
|
76
|
-
return Object.entries(
|
|
77
|
-
// const options = {
|
|
78
|
-
// // __mpxPageStatusMap 为编译注入的全局变量
|
|
79
|
-
// headerShown: !(Object.assign({}, global.__mpxPageConfig, global.__mpxPageConfigsMap[key]).navigationStyle === 'custom')
|
|
80
|
-
// }
|
|
60
|
+
return Object.entries(pagesMap).map(([key, item]) => {
|
|
81
61
|
const pageConfig = Object.assign({}, global.__mpxPageConfig, global.__mpxPageConfigsMap[key])
|
|
62
|
+
const headerLayout = ({ navigation, children }) => {
|
|
63
|
+
return createElement(GestureHandlerRootView,
|
|
64
|
+
{
|
|
65
|
+
style: {
|
|
66
|
+
flex: 1
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
createElement(innerNav, {
|
|
70
|
+
pageConfig: pageConfig,
|
|
71
|
+
navigation
|
|
72
|
+
}),
|
|
73
|
+
children
|
|
74
|
+
)
|
|
75
|
+
}
|
|
82
76
|
if (key === initialRouteName) {
|
|
83
77
|
return createElement(Stack.Screen, {
|
|
84
78
|
name: key,
|
|
85
|
-
|
|
86
|
-
initialParams
|
|
87
|
-
|
|
79
|
+
getComponent: () => item(),
|
|
80
|
+
initialParams,
|
|
81
|
+
layout: headerLayout
|
|
88
82
|
})
|
|
89
83
|
}
|
|
90
84
|
return createElement(Stack.Screen, {
|
|
91
85
|
name: key,
|
|
92
|
-
|
|
93
|
-
|
|
86
|
+
getComponent: () => item(),
|
|
87
|
+
layout: headerLayout
|
|
94
88
|
})
|
|
95
89
|
})
|
|
96
90
|
}
|
|
@@ -239,7 +233,7 @@ export default function createApp (options) {
|
|
|
239
233
|
headerShown: false,
|
|
240
234
|
statusBarTranslucent: true,
|
|
241
235
|
statusBarBackgroundColor: 'transparent'
|
|
242
|
-
|
|
236
|
+
}
|
|
243
237
|
|
|
244
238
|
return createElement(SafeAreaProvider,
|
|
245
239
|
null,
|
|
@@ -10,13 +10,15 @@ export function init (Mpx) {
|
|
|
10
10
|
show: [],
|
|
11
11
|
hide: [],
|
|
12
12
|
error: [],
|
|
13
|
-
rejection: []
|
|
13
|
+
rejection: [],
|
|
14
|
+
lazyLoad: []
|
|
14
15
|
}
|
|
15
16
|
global.__navigationHelper = navigationHelper
|
|
16
17
|
if (global.i18n) {
|
|
17
18
|
Mpx.i18n = createI18n(global.i18n)
|
|
18
19
|
}
|
|
19
20
|
initGlobalErrorHandling()
|
|
21
|
+
initGlobalLazyLoadHandling()
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
function initGlobalErrorHandling () {
|
|
@@ -63,3 +65,13 @@ function initGlobalErrorHandling () {
|
|
|
63
65
|
require('promise/setimmediate/rejection-tracking').enable(rejectionTrackingOptions)
|
|
64
66
|
}
|
|
65
67
|
}
|
|
68
|
+
|
|
69
|
+
function initGlobalLazyLoadHandling () {
|
|
70
|
+
global.onLazyLoadError = function (error) {
|
|
71
|
+
if (global.__mpxAppCbs?.lazyLoad?.length) {
|
|
72
|
+
global.__mpxAppCbs.lazyLoad.forEach((cb) => {
|
|
73
|
+
cb(error)
|
|
74
|
+
})
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
package/src/platform/env/nav.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { createElement, useState, useMemo } from 'react'
|
|
1
|
+
import { createElement, useState, useMemo, memo } from 'react'
|
|
2
2
|
import { useSafeAreaInsets } from 'react-native-safe-area-context'
|
|
3
|
-
import { StatusBar, processColor,
|
|
3
|
+
import { StatusBar, processColor, TouchableWithoutFeedback, Image, View, StyleSheet, Text } from 'react-native'
|
|
4
4
|
import Mpx from '../../index'
|
|
5
5
|
|
|
6
6
|
function convertToHex (color) {
|
|
@@ -76,7 +76,7 @@ const validBarTextStyle = (textStyle) => {
|
|
|
76
76
|
return NavColor.White
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
-
export
|
|
79
|
+
export const innerNav = memo(({ pageConfig, navigation }) => {
|
|
80
80
|
const [innerPageConfig, setPageConfig] = useState(pageConfig || {})
|
|
81
81
|
navigation.setPageConfig = (config) => {
|
|
82
82
|
const newConfig = Object.assign({}, innerPageConfig, config)
|
|
@@ -95,39 +95,43 @@ export function innerNav ({ pageConfig, navigation }) {
|
|
|
95
95
|
const safeAreaTop = useSafeAreaInsets()?.top || 0
|
|
96
96
|
// 假设是栈导航,获取栈的长度
|
|
97
97
|
const stackLength = navigation.getState()?.routes?.length
|
|
98
|
-
const
|
|
98
|
+
const onStackTopBack = Mpx.config?.rnConfig?.onStackTopBack
|
|
99
|
+
const isHandleStackTopBack = typeof onStackTopBack === 'function'
|
|
99
100
|
|
|
100
101
|
// 回退按钮与图标
|
|
101
|
-
const backElement = stackLength > 1 ||
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
102
|
+
const backElement = stackLength > 1 || isHandleStackTopBack
|
|
103
|
+
? createElement(TouchableWithoutFeedback, {
|
|
104
|
+
onPress: () => {
|
|
105
|
+
if (stackLength <= 1 && isHandleStackTopBack) {
|
|
106
|
+
onStackTopBack()
|
|
107
|
+
return
|
|
108
|
+
}
|
|
109
|
+
navigation.goBack()
|
|
108
110
|
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
111
|
+
}, createElement(View, {
|
|
112
|
+
style: [styles.backButton]
|
|
113
|
+
}, createElement(Image, {
|
|
114
|
+
source: { uri: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAABICAYAAACqT5alAAAA2UlEQVR4nO3bMQrCUBRE0Yla6AYEN2nnBrTL+izcitW3MRDkEUWSvPzJvfCqgMwhZbAppWhNbbIHzB1g9wATERFRVyvpkj1irlpJ5X326D7WHh1hbdFD2CLpLmmftm7kfsEe09aNHFiBrT+wAlt/YAW2/sAKbP2BFdj6Ayuwy+ufz6XPL893krZ//O6iu2n4LT8kndLWTRTo4EC7BDo40C6BDg60S6CDA+0S6OBAuwQ6uNWiD2nrJmoIfU7cNWkR2hbb1UfbY7uuWhGWiIg+a/iHuHmA3QPs3gu4JW9Gan+OJAAAAABJRU5ErkJggg==' },
|
|
115
|
+
// 回退按钮的颜色与设置的title文案颜色一致
|
|
116
|
+
style: [styles.backButtonImage, { tintColor: navigationBarTextStyle }]
|
|
117
|
+
})
|
|
118
|
+
))
|
|
119
|
+
: null
|
|
116
120
|
|
|
117
121
|
return createElement(View, {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
122
|
+
style: [styles.header, {
|
|
123
|
+
paddingTop: safeAreaTop,
|
|
124
|
+
backgroundColor: innerPageConfig.navigationBarBackgroundColor || '#000000'
|
|
125
|
+
}]
|
|
126
|
+
},
|
|
127
|
+
statusBarElement,
|
|
128
|
+
createElement(View, {
|
|
129
|
+
style: styles.headerContent,
|
|
130
|
+
height: titleHeight
|
|
131
|
+
}, backElement,
|
|
128
132
|
createElement(Text, {
|
|
129
133
|
style: [styles.title, { color: navigationBarTextStyle }],
|
|
130
134
|
numberOfLines: 1
|
|
131
135
|
}, innerPageConfig.navigationBarTitleText?.trim() || ''))
|
|
132
|
-
|
|
133
|
-
}
|
|
136
|
+
)
|
|
137
|
+
})
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import { createNativeStackNavigator } from '@react-navigation/native-stack'
|
|
2
2
|
import { NavigationContainer, StackActions } from '@react-navigation/native'
|
|
3
3
|
import PortalHost from '@mpxjs/webpack-plugin/lib/runtime/components/react/dist/mpx-portal/portal-host'
|
|
4
|
-
import { useHeaderHeight } from '@react-navigation/elements'
|
|
5
4
|
import { SafeAreaProvider, useSafeAreaInsets } from 'react-native-safe-area-context'
|
|
6
5
|
import { GestureHandlerRootView } from 'react-native-gesture-handler'
|
|
7
6
|
|
|
8
7
|
export {
|
|
9
8
|
createNativeStackNavigator,
|
|
10
9
|
NavigationContainer,
|
|
11
|
-
useHeaderHeight,
|
|
12
10
|
StackActions,
|
|
13
11
|
GestureHandlerRootView,
|
|
14
12
|
PortalHost,
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
KeyboardAvoidContext,
|
|
16
16
|
RouteContext
|
|
17
17
|
} from '@mpxjs/webpack-plugin/lib/runtime/components/react/dist/context'
|
|
18
|
-
import { PortalHost, useSafeAreaInsets
|
|
18
|
+
import { PortalHost, useSafeAreaInsets } from '../env/navigationHelper'
|
|
19
19
|
import { useInnerHeaderHeight } from '../env/nav'
|
|
20
20
|
|
|
21
21
|
const ProviderContext = createContext(null)
|
|
@@ -33,7 +33,7 @@ function getSystemInfo () {
|
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
function createEffect (proxy,
|
|
36
|
+
function createEffect (proxy, componentsMap) {
|
|
37
37
|
const update = proxy.update = () => {
|
|
38
38
|
// react update props in child render(async), do not need exec pre render
|
|
39
39
|
// if (proxy.propsUpdatedFlag) {
|
|
@@ -50,10 +50,11 @@ function createEffect (proxy, components) {
|
|
|
50
50
|
const getComponent = (tagName) => {
|
|
51
51
|
if (!tagName) return null
|
|
52
52
|
if (tagName === 'block') return Fragment
|
|
53
|
-
const
|
|
53
|
+
const appComponentsMap = global.__appComponentsMap || {}
|
|
54
54
|
const generichash = proxy.target.generichash || ''
|
|
55
|
-
const
|
|
56
|
-
|
|
55
|
+
const genericComponentsMap = global.__mpxGenericsMap?.[generichash] || {}
|
|
56
|
+
const componentGetter = componentsMap[tagName] || genericComponentsMap[tagName] || appComponentsMap[tagName]
|
|
57
|
+
return componentGetter ? componentGetter() : getByPath(ReactNative, tagName)
|
|
57
58
|
}
|
|
58
59
|
const innerCreateElement = (type, ...rest) => {
|
|
59
60
|
if (!type) return null
|
|
@@ -123,6 +124,13 @@ const instanceProto = {
|
|
|
123
124
|
createIntersectionObserver (opt) {
|
|
124
125
|
return createIntersectionObserver(this, opt, this.__intersectionCtx)
|
|
125
126
|
},
|
|
127
|
+
// 触发页面范围内的所有observer的计算
|
|
128
|
+
__triggerIntersectionObserver () {
|
|
129
|
+
const intersectionObservers = this.__intersectionCtx
|
|
130
|
+
for (const key in this.__intersectionCtx) {
|
|
131
|
+
intersectionObservers[key].throttleMeasure()
|
|
132
|
+
}
|
|
133
|
+
},
|
|
126
134
|
__resetInstance () {
|
|
127
135
|
this.__dispatchedSlotSet = new WeakSet()
|
|
128
136
|
},
|
|
@@ -203,7 +211,7 @@ const instanceProto = {
|
|
|
203
211
|
}
|
|
204
212
|
}
|
|
205
213
|
|
|
206
|
-
function createInstance ({ propsRef, type, rawOptions, currentInject, validProps,
|
|
214
|
+
function createInstance ({ propsRef, type, rawOptions, currentInject, validProps, componentsMap, pageId, intersectionCtx, relation, parentProvides }) {
|
|
207
215
|
const instance = Object.create(instanceProto, {
|
|
208
216
|
dataset: {
|
|
209
217
|
get () {
|
|
@@ -304,7 +312,14 @@ function createInstance ({ propsRef, type, rawOptions, currentInject, validProps
|
|
|
304
312
|
|
|
305
313
|
if (type === 'page') {
|
|
306
314
|
const props = propsRef.current
|
|
307
|
-
|
|
315
|
+
const loadParams = {}
|
|
316
|
+
// 此处拿到的props.route.params内属性的value被进行过了一次decode, 不符合预期,此处额外进行一次encode来与微信对齐
|
|
317
|
+
if (isObject(props.route.params)) {
|
|
318
|
+
for (const key in props.route.params) {
|
|
319
|
+
loadParams[key] = encodeURIComponent(props.route.params[key])
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
proxy.callHook(ONLOAD, [loadParams])
|
|
308
323
|
}
|
|
309
324
|
|
|
310
325
|
Object.assign(proxy, {
|
|
@@ -312,7 +327,7 @@ function createInstance ({ propsRef, type, rawOptions, currentInject, validProps
|
|
|
312
327
|
stateVersion: Symbol(),
|
|
313
328
|
subscribe: (onStoreChange) => {
|
|
314
329
|
if (!proxy.effect) {
|
|
315
|
-
createEffect(proxy,
|
|
330
|
+
createEffect(proxy, componentsMap)
|
|
316
331
|
proxy.stateVersion = Symbol()
|
|
317
332
|
}
|
|
318
333
|
proxy.onStoreChange = onStoreChange
|
|
@@ -328,7 +343,7 @@ function createInstance ({ propsRef, type, rawOptions, currentInject, validProps
|
|
|
328
343
|
})
|
|
329
344
|
// react数据响应组件更新管理器
|
|
330
345
|
if (!proxy.effect) {
|
|
331
|
-
createEffect(proxy,
|
|
346
|
+
createEffect(proxy, componentsMap)
|
|
332
347
|
}
|
|
333
348
|
|
|
334
349
|
return instance
|
|
@@ -419,6 +434,26 @@ function usePageStatus (navigation, pageId) {
|
|
|
419
434
|
}, [navigation])
|
|
420
435
|
}
|
|
421
436
|
|
|
437
|
+
function usePagePreload (route) {
|
|
438
|
+
const name = route.name
|
|
439
|
+
useEffect(() => {
|
|
440
|
+
const timer = setTimeout(() => {
|
|
441
|
+
const preloadRule = global.__preloadRule || {}
|
|
442
|
+
const { packages } = preloadRule[name] || {}
|
|
443
|
+
if (packages?.length > 0) {
|
|
444
|
+
const downloadChunkAsync = mpxGlobal.__mpx.config?.rnConfig?.downloadChunkAsync
|
|
445
|
+
if (typeof downloadChunkAsync === 'function') {
|
|
446
|
+
callWithErrorHandling(() => downloadChunkAsync(packages))
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
}, 800)
|
|
450
|
+
|
|
451
|
+
return () => {
|
|
452
|
+
clearTimeout(timer)
|
|
453
|
+
}
|
|
454
|
+
}, [])
|
|
455
|
+
}
|
|
456
|
+
|
|
422
457
|
const RelationsContext = createContext(null)
|
|
423
458
|
|
|
424
459
|
const checkRelation = (options) => {
|
|
@@ -447,8 +482,6 @@ function getLayoutData (headerHeight) {
|
|
|
447
482
|
const isLandscape = screenDimensions.height < screenDimensions.width
|
|
448
483
|
const bottomVirtualHeight = isLandscape ? screenDimensions.height - windowDimensions.height : ((screenDimensions.height - windowDimensions.height - ReactNative.StatusBar.currentHeight) || 0)
|
|
449
484
|
return {
|
|
450
|
-
x: 0,
|
|
451
|
-
y: headerHeight,
|
|
452
485
|
left: 0,
|
|
453
486
|
top: headerHeight,
|
|
454
487
|
// 此处必须为windowDimensions.width,在横屏状态下windowDimensions.width才符合预期
|
|
@@ -479,11 +512,15 @@ export function PageWrapperHOC (WrappedComponent, pageConfig = {}) {
|
|
|
479
512
|
}
|
|
480
513
|
const headerHeight = useInnerHeaderHeight(currentPageConfig)
|
|
481
514
|
navigation.layout = getLayoutData(headerHeight)
|
|
482
|
-
const onLayout = () => {
|
|
483
|
-
// 当用户处于横屏或者竖屏状态的时候,需要进行layout修正
|
|
484
|
-
navigation.layout = getLayoutData(headerHeight)
|
|
485
|
-
}
|
|
486
515
|
|
|
516
|
+
useEffect(() => {
|
|
517
|
+
const dimensionListener = ReactNative.Dimensions.addEventListener('change', ({ screen }) => {
|
|
518
|
+
navigation.layout = getLayoutData(headerHeight)
|
|
519
|
+
})
|
|
520
|
+
return () => dimensionListener?.remove()
|
|
521
|
+
}, [])
|
|
522
|
+
|
|
523
|
+
usePagePreload(route)
|
|
487
524
|
usePageStatus(navigation, currentPageId)
|
|
488
525
|
|
|
489
526
|
const withKeyboardAvoidingView = (element) => {
|
|
@@ -506,50 +543,48 @@ export function PageWrapperHOC (WrappedComponent, pageConfig = {}) {
|
|
|
506
543
|
}
|
|
507
544
|
// android存在第一次打开insets都返回为0情况,后续会触发第二次渲染后正确
|
|
508
545
|
navigation.insets = useSafeAreaInsets()
|
|
509
|
-
return
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
546
|
+
return withKeyboardAvoidingView(
|
|
547
|
+
createElement(ReactNative.View,
|
|
548
|
+
{
|
|
549
|
+
style: {
|
|
550
|
+
flex: 1,
|
|
551
|
+
backgroundColor: currentPageConfig?.backgroundColor || '#fff',
|
|
552
|
+
// 解决页面内有元素定位relative left为负值的时候,回退的时候还能看到对应元素问题
|
|
553
|
+
overflow: 'hidden'
|
|
554
|
+
},
|
|
555
|
+
ref: rootRef
|
|
556
|
+
},
|
|
557
|
+
createElement(RouteContext.Provider,
|
|
517
558
|
{
|
|
518
|
-
|
|
519
|
-
flex: 1,
|
|
520
|
-
backgroundColor: currentPageConfig?.backgroundColor || '#fff',
|
|
521
|
-
// 解决页面内有元素定位relative left为负值的时候,回退的时候还能看到对应元素问题
|
|
522
|
-
overflow: 'hidden'
|
|
523
|
-
},
|
|
524
|
-
ref: rootRef,
|
|
525
|
-
onLayout
|
|
559
|
+
value: routeContextValRef.current
|
|
526
560
|
},
|
|
527
|
-
createElement(
|
|
561
|
+
createElement(IntersectionObserverContext.Provider,
|
|
528
562
|
{
|
|
529
|
-
value:
|
|
563
|
+
value: intersectionObservers.current
|
|
530
564
|
},
|
|
531
|
-
createElement(
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
navigation,
|
|
540
|
-
route,
|
|
541
|
-
id: currentPageId
|
|
542
|
-
})
|
|
543
|
-
)
|
|
565
|
+
createElement(PortalHost,
|
|
566
|
+
null,
|
|
567
|
+
createElement(WrappedComponent, {
|
|
568
|
+
...props,
|
|
569
|
+
navigation,
|
|
570
|
+
route,
|
|
571
|
+
id: currentPageId
|
|
572
|
+
})
|
|
544
573
|
)
|
|
545
574
|
)
|
|
546
575
|
)
|
|
547
|
-
)
|
|
576
|
+
)
|
|
577
|
+
)
|
|
548
578
|
}
|
|
549
579
|
}
|
|
550
580
|
export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
|
|
551
581
|
rawOptions = mergeOptions(rawOptions, type, false)
|
|
552
|
-
const
|
|
582
|
+
const componentsMap = currentInject.componentsMap
|
|
583
|
+
if (rawOptions.components) {
|
|
584
|
+
Object.entries(rawOptions.components).forEach(([key, item]) => {
|
|
585
|
+
componentsMap[key] = () => item
|
|
586
|
+
})
|
|
587
|
+
}
|
|
553
588
|
const validProps = Object.assign({}, rawOptions.props, rawOptions.properties)
|
|
554
589
|
const { hasDescendantRelation, hasAncestorRelation } = checkRelation(rawOptions)
|
|
555
590
|
if (rawOptions.methods) rawOptions.methods = wrapMethodsWithErrorHandling(rawOptions.methods)
|
|
@@ -567,7 +602,7 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
|
|
|
567
602
|
let isFirst = false
|
|
568
603
|
if (!instanceRef.current) {
|
|
569
604
|
isFirst = true
|
|
570
|
-
instanceRef.current = createInstance({ propsRef, type, rawOptions, currentInject, validProps,
|
|
605
|
+
instanceRef.current = createInstance({ propsRef, type, rawOptions, currentInject, validProps, componentsMap, pageId, intersectionCtx, relation, parentProvides })
|
|
571
606
|
}
|
|
572
607
|
const instance = instanceRef.current
|
|
573
608
|
useImperativeHandle(ref, () => {
|
|
@@ -614,7 +649,6 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
|
|
|
614
649
|
})
|
|
615
650
|
|
|
616
651
|
usePageEffect(proxy, pageId)
|
|
617
|
-
|
|
618
652
|
useEffect(() => {
|
|
619
653
|
proxy.mounted()
|
|
620
654
|
return () => {
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { createNativeStackNavigator } from '@react-navigation/native-stack'
|
|
2
|
-
import { NavigationContainer, StackActions } from '@react-navigation/native'
|
|
3
|
-
import PortalHost from '@mpxjs/webpack-plugin/lib/runtime/components/react/dist/mpx-portal/portal-host'
|
|
4
|
-
import { useHeaderHeight } from '@react-navigation/elements'
|
|
5
|
-
import { SafeAreaProvider, useSafeAreaInsets } from 'react-native-safe-area-context'
|
|
6
|
-
import { GestureHandlerRootView } from 'react-native-gesture-handler'
|
|
7
|
-
|
|
8
|
-
export {
|
|
9
|
-
createNativeStackNavigator,
|
|
10
|
-
NavigationContainer,
|
|
11
|
-
useHeaderHeight,
|
|
12
|
-
StackActions,
|
|
13
|
-
GestureHandlerRootView,
|
|
14
|
-
PortalHost,
|
|
15
|
-
SafeAreaProvider,
|
|
16
|
-
useSafeAreaInsets
|
|
17
|
-
}
|