@mpxjs/core 2.10.18-beta.1 → 2.10.19
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 +31 -1
- package/LICENSE +433 -0
- package/package.json +2 -2
- package/src/platform/builtInMixins/index.js +2 -1
- package/src/platform/builtInMixins/pageScrollMixin.ios.js +142 -0
- package/src/platform/builtInMixins/styleHelperMixin.ios.js +1 -1
- package/src/platform/createApp.ios.js +1 -4
- package/src/platform/env/vuePlugin.js +12 -1
- package/src/platform/patch/getDefaultOptions.ios.js +7 -12
package/@types/index.d.ts
CHANGED
|
@@ -387,7 +387,37 @@ export interface RnConfig {
|
|
|
387
387
|
* @platform android
|
|
388
388
|
* @default true
|
|
389
389
|
*/
|
|
390
|
-
enableNativeKeyboardAvoiding?: boolean
|
|
390
|
+
enableNativeKeyboardAvoiding?: boolean,
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* 自定义蓝牙权限检查函数,用于在调用 openBluetoothAdapter 时替代默认的权限检查逻辑。
|
|
394
|
+
*
|
|
395
|
+
* Mpx 在 iOS 上默认返回 true(假定权限由系统弹窗处理),在 Android 上会请求 ACCESS_FINE_LOCATION 或 BLUETOOTH_SCAN/CONNECT 权限。
|
|
396
|
+
* 如果需要自定义权限申请逻辑(例如在某些定制 Android 设备上),可配置此函数。
|
|
397
|
+
*
|
|
398
|
+
* @returns Promise<boolean> Resolves 为 true 表示权限获取成功,false 表示失败。
|
|
399
|
+
*/
|
|
400
|
+
bluetoothPermission?: () => Promise<boolean>
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* 自定义 Wi-Fi 权限检查函数,用于在调用 startWifi 时替代默认的权限检查逻辑。
|
|
404
|
+
*
|
|
405
|
+
* Mpx 在 Android 上默认会请求 ACCESS_FINE_LOCATION 权限。
|
|
406
|
+
* 如果需要自定义权限申请逻辑,可配置此函数。
|
|
407
|
+
*
|
|
408
|
+
* @returns Promise<boolean> Resolves 为 true 表示权限获取成功,false 表示失败。
|
|
409
|
+
*/
|
|
410
|
+
wifiPermission?: () => Promise<boolean>
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* 自定义相机权限检查函数,用于在渲染 Camera 组件前进行权限检查。
|
|
414
|
+
*
|
|
415
|
+
* 默认情况下,Mpx 会直接渲染 Camera 组件。
|
|
416
|
+
* 如果配置了此函数,Camera 组件会等待该函数返回 true 后再进行渲染。
|
|
417
|
+
*
|
|
418
|
+
* @returns Promise<boolean> Resolves 为 true 表示权限获取成功,false 表示失败。
|
|
419
|
+
*/
|
|
420
|
+
cameraPermission?: () => Promise<boolean>
|
|
391
421
|
}
|
|
392
422
|
|
|
393
423
|
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.19",
|
|
4
4
|
"description": "mpx runtime core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"miniprogram",
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"url": "https://github.com/didi/mpx/issues"
|
|
114
114
|
},
|
|
115
115
|
"sideEffects": false,
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "ca50ba6b1361f3c7790746476dd8b8e6be802ea3"
|
|
117
117
|
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { warn } from '@mpxjs/utils'
|
|
2
|
+
import { CREATED } from '../../core/innerLifecycle'
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* React Native 页面滚动 Mixin
|
|
6
|
+
* 提供页面级别的 pageScrollTo 方法
|
|
7
|
+
* 使用该功能需在页面的 scroll-view 组件上声明 wx:ref="pageScrollView"
|
|
8
|
+
*/
|
|
9
|
+
export default function pageScrollMixin (mixinType) {
|
|
10
|
+
if (mixinType !== 'page') {
|
|
11
|
+
return
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
return {
|
|
15
|
+
[CREATED] () {
|
|
16
|
+
this.__registerPageScrollTo()
|
|
17
|
+
},
|
|
18
|
+
beforeUnmount () {
|
|
19
|
+
const navigation = this.__props?.navigation
|
|
20
|
+
if (navigation && navigation.pageScrollTo) {
|
|
21
|
+
delete navigation.pageScrollTo
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
methods: {
|
|
25
|
+
/**
|
|
26
|
+
* 注册 pageScrollTo 方法到 navigation 对象
|
|
27
|
+
*/
|
|
28
|
+
__registerPageScrollTo () {
|
|
29
|
+
const navigation = this.__props?.navigation
|
|
30
|
+
|
|
31
|
+
// navigation.pageScrollTo 不存在时才注册,避免重复
|
|
32
|
+
if (navigation && !navigation.pageScrollTo) {
|
|
33
|
+
navigation.pageScrollTo = (options) => {
|
|
34
|
+
this.__pageScrollTo(options)
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* 获取页面滚动视图节点(通过固定 ref 名称 pageScrollView)
|
|
41
|
+
* @returns {Object|null} 滚动视图的节点实例
|
|
42
|
+
*/
|
|
43
|
+
__findScrollableNode () {
|
|
44
|
+
const ref = this.__refs?.pageScrollView?.[0]
|
|
45
|
+
if (!ref || ref.type !== 'node' || !ref.instance?.getNodeInstance) return null
|
|
46
|
+
return ref.instance.getNodeInstance()
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* 页面滚动到指定位置
|
|
51
|
+
* @param {Object} options - 配置选项
|
|
52
|
+
* @param {number} options.scrollTop - 滚动到页面的目标位置(单位 px)
|
|
53
|
+
* @param {number} options.duration - 滚动动画的时长(单位 ms)
|
|
54
|
+
* @param {string} options.selector - 选择器
|
|
55
|
+
* @param {number} options.offsetTop - 偏移距离
|
|
56
|
+
* @param {Function} options.onSuccess - 成功回调
|
|
57
|
+
* @param {Function} options.onFail - 失败回调
|
|
58
|
+
*/
|
|
59
|
+
__pageScrollTo (options = {}) {
|
|
60
|
+
const {
|
|
61
|
+
scrollTop,
|
|
62
|
+
duration = 300,
|
|
63
|
+
selector,
|
|
64
|
+
offsetTop = 0,
|
|
65
|
+
onSuccess,
|
|
66
|
+
onFail
|
|
67
|
+
} = options
|
|
68
|
+
|
|
69
|
+
try {
|
|
70
|
+
const nodeInstance = this.__findScrollableNode()
|
|
71
|
+
|
|
72
|
+
if (nodeInstance) {
|
|
73
|
+
this.__executeScroll(nodeInstance, scrollTop, duration, selector, offsetTop, onSuccess, onFail)
|
|
74
|
+
return
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// 没找到可滚动视图
|
|
78
|
+
const errMsg = 'pageScrollTo:fail scrollable view not found. Please add wx:ref="pageScrollView" to the scroll-view component in your page'
|
|
79
|
+
warn(errMsg)
|
|
80
|
+
onFail && onFail(errMsg)
|
|
81
|
+
} catch (e) {
|
|
82
|
+
const errMsg = `pageScrollTo:fail ${e.message}`
|
|
83
|
+
warn(errMsg)
|
|
84
|
+
onFail && onFail(errMsg)
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* 执行滚动操作
|
|
90
|
+
*/
|
|
91
|
+
__executeScroll (scrollViewNodeInstance, scrollTop, duration, selector, offsetTop, onSuccess, onFail) {
|
|
92
|
+
try {
|
|
93
|
+
const scrollViewNode = scrollViewNodeInstance.instance.node
|
|
94
|
+
|
|
95
|
+
// 如果提供了 selector,使用 scrollIntoView
|
|
96
|
+
if (selector) {
|
|
97
|
+
if (scrollViewNode.scrollIntoView) {
|
|
98
|
+
scrollViewNode.scrollIntoView(selector, {
|
|
99
|
+
offset: offsetTop,
|
|
100
|
+
animated: duration > 0,
|
|
101
|
+
duration
|
|
102
|
+
})
|
|
103
|
+
onSuccess && onSuccess()
|
|
104
|
+
} else {
|
|
105
|
+
const errMsg = 'pageScrollTo:fail scrollIntoView method not available'
|
|
106
|
+
warn(errMsg)
|
|
107
|
+
onFail && onFail(errMsg)
|
|
108
|
+
}
|
|
109
|
+
return
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// 使用 scrollTop 进行滚动
|
|
113
|
+
if (scrollTop !== undefined) {
|
|
114
|
+
if (scrollViewNode.scrollTo) {
|
|
115
|
+
scrollViewNode.scrollTo({
|
|
116
|
+
top: scrollTop,
|
|
117
|
+
left: 0,
|
|
118
|
+
animated: duration > 0,
|
|
119
|
+
duration
|
|
120
|
+
})
|
|
121
|
+
onSuccess && onSuccess()
|
|
122
|
+
} else {
|
|
123
|
+
const errMsg = 'pageScrollTo:fail scrollTo method not available'
|
|
124
|
+
warn(errMsg)
|
|
125
|
+
onFail && onFail(errMsg)
|
|
126
|
+
}
|
|
127
|
+
return
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// 既没有 scrollTop 也没有 selector
|
|
131
|
+
const errMsg = 'pageScrollTo:fail scrollTop or selector is required'
|
|
132
|
+
warn(errMsg)
|
|
133
|
+
onFail && onFail(errMsg)
|
|
134
|
+
} catch (e) {
|
|
135
|
+
const errMsg = `pageScrollTo:fail ${e.message}`
|
|
136
|
+
warn(errMsg)
|
|
137
|
+
onFail && onFail(errMsg)
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
@@ -257,7 +257,7 @@ export default function styleHelperMixin () {
|
|
|
257
257
|
const isNativeStaticStyle = staticStyle && isNativeStyle(staticStyle)
|
|
258
258
|
let result = isNativeStaticStyle ? [] : {}
|
|
259
259
|
const mergeResult = isNativeStaticStyle ? (...args) => result.push(...args) : (...args) => Object.assign(result, ...args)
|
|
260
|
-
|
|
260
|
+
// 使用一下 __getSizeCount 触发其 get
|
|
261
261
|
this.__getSizeCount()
|
|
262
262
|
|
|
263
263
|
if (staticClass || dynamicClass) {
|
|
@@ -76,6 +76,7 @@ export default function createApp (options) {
|
|
|
76
76
|
return createElement(Stack.Screen, {
|
|
77
77
|
name: key,
|
|
78
78
|
getComponent,
|
|
79
|
+
initialParams,
|
|
79
80
|
layout: headerLayout
|
|
80
81
|
})
|
|
81
82
|
}
|
|
@@ -210,10 +211,6 @@ export default function createApp (options) {
|
|
|
210
211
|
}, [])
|
|
211
212
|
|
|
212
213
|
const { initialRouteName, initialParams } = initialRouteRef.current
|
|
213
|
-
if (!global.__mpxAppHotLaunched) {
|
|
214
|
-
global.__mpxInitialRouteName = initialRouteName
|
|
215
|
-
global.__mpxInitialRunParams = initialParams
|
|
216
|
-
}
|
|
217
214
|
const navScreenOpts = {
|
|
218
215
|
headerShown: false,
|
|
219
216
|
statusBarTranslucent: Mpx.config.rnConfig.statusBarTranslucent ?? true,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { walkChildren, parseSelector, error, hasOwn, collectDataset } from '@mpxjs/utils'
|
|
1
|
+
import { walkChildren, parseSelector, error, hasOwn, collectDataset, getByPath } from '@mpxjs/utils'
|
|
2
2
|
import { createSelectorQuery, createIntersectionObserver } from '@mpxjs/api-proxy'
|
|
3
3
|
import { EffectScope } from 'vue'
|
|
4
4
|
import { PausedState } from '../../helper/const'
|
|
@@ -56,6 +56,17 @@ const hackEffectScope = () => {
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
export default function install (Vue) {
|
|
59
|
+
const originalWatch = Vue.prototype.$watch
|
|
60
|
+
Vue.prototype.$watch = function (expOrFn, cb, options) {
|
|
61
|
+
if (typeof expOrFn === 'string' && expOrFn.indexOf(',') > -1) {
|
|
62
|
+
const keys = expOrFn.split(',').map(key => key.trim())
|
|
63
|
+
expOrFn = function () {
|
|
64
|
+
return keys.map(key => getByPath(this, key))
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return originalWatch.call(this, expOrFn, cb, options)
|
|
68
|
+
}
|
|
69
|
+
|
|
59
70
|
Object.defineProperties(Vue.prototype, {
|
|
60
71
|
data: {
|
|
61
72
|
get () {
|
|
@@ -295,17 +295,13 @@ function createInstance ({ propsRef, type, rawOptions, currentInject, validProps
|
|
|
295
295
|
instance[key] = method.bind(instance)
|
|
296
296
|
})
|
|
297
297
|
}
|
|
298
|
-
|
|
298
|
+
|
|
299
299
|
if (type === 'page') {
|
|
300
300
|
const props = propsRef.current
|
|
301
301
|
instance.route = props.route.name
|
|
302
302
|
global.__mpxPagesMap = global.__mpxPagesMap || {}
|
|
303
303
|
global.__mpxPagesMap[props.route.key] = [instance, props.navigation]
|
|
304
304
|
setFocusedNavigation(props.navigation)
|
|
305
|
-
|
|
306
|
-
if (!global.__mpxAppHotLaunched && global.__mpxInitialRunParams) {
|
|
307
|
-
Object.assign(loadParams, global.__mpxInitialRunParams)
|
|
308
|
-
}
|
|
309
305
|
set(global.__mpxPageSizeCountMap, pageId, global.__mpxSizeCount)
|
|
310
306
|
// App onLaunch 在 Page created 之前执行
|
|
311
307
|
if (!global.__mpxAppHotLaunched && global.__mpxAppOnLaunch) {
|
|
@@ -315,10 +311,11 @@ function createInstance ({ propsRef, type, rawOptions, currentInject, validProps
|
|
|
315
311
|
|
|
316
312
|
const proxy = instance.__mpxProxy = new MpxProxy(rawOptions, instance)
|
|
317
313
|
proxy.created()
|
|
314
|
+
|
|
318
315
|
if (type === 'page') {
|
|
319
316
|
const props = propsRef.current
|
|
320
317
|
const decodedQuery = {}
|
|
321
|
-
const rawQuery =
|
|
318
|
+
const rawQuery = props.route.params || {}
|
|
322
319
|
if (isObject(rawQuery)) {
|
|
323
320
|
for (const key in rawQuery) {
|
|
324
321
|
decodedQuery[key] = decodeURIComponent(rawQuery[key])
|
|
@@ -401,7 +398,7 @@ const triggerResizeEvent = (mpxProxy, sizeRef) => {
|
|
|
401
398
|
}
|
|
402
399
|
}
|
|
403
400
|
|
|
404
|
-
function usePageEffect (mpxProxy, pageId
|
|
401
|
+
function usePageEffect (mpxProxy, pageId) {
|
|
405
402
|
const sizeRef = useRef(getSystemInfo())
|
|
406
403
|
|
|
407
404
|
useEffect(() => {
|
|
@@ -418,7 +415,7 @@ function usePageEffect (mpxProxy, pageId, type) {
|
|
|
418
415
|
triggerResizeEvent(mpxProxy, sizeRef)
|
|
419
416
|
|
|
420
417
|
// 如果当前全局size与pagesize不一致,在show之后触发一次resize事件
|
|
421
|
-
if (
|
|
418
|
+
if (newVal === 'show' && global.__mpxPageSizeCountMap[pageId] !== global.__mpxSizeCount) {
|
|
422
419
|
// 刷新__mpxPageSizeCountMap, 每个页面仅会执行一次,直接驱动render刷新
|
|
423
420
|
global.__mpxPageSizeCountMap[pageId] = global.__mpxSizeCount
|
|
424
421
|
}
|
|
@@ -430,9 +427,7 @@ function usePageEffect (mpxProxy, pageId, type) {
|
|
|
430
427
|
}
|
|
431
428
|
return () => {
|
|
432
429
|
unWatch && unWatch()
|
|
433
|
-
|
|
434
|
-
del(global.__mpxPageSizeCountMap, pageId)
|
|
435
|
-
}
|
|
430
|
+
del(global.__mpxPageSizeCountMap, pageId)
|
|
436
431
|
}
|
|
437
432
|
}, [])
|
|
438
433
|
}
|
|
@@ -702,7 +697,7 @@ export function getDefaultOptions ({ type, rawOptions = {}, currentInject }) {
|
|
|
702
697
|
}
|
|
703
698
|
})
|
|
704
699
|
|
|
705
|
-
usePageEffect(proxy, pageId
|
|
700
|
+
usePageEffect(proxy, pageId)
|
|
706
701
|
useEffect(() => {
|
|
707
702
|
proxy.mounted()
|
|
708
703
|
return () => {
|