@mpxjs/core 2.9.70-alpha.0 → 2.9.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@types/global.d.ts +1 -1
- package/LICENSE +433 -0
- package/package.json +9 -6
- package/src/convertor/convertor.js +0 -2
- package/src/convertor/getConvertMode.js +0 -1
- package/src/core/mergeOptions.js +3 -6
- package/src/core/proxy.js +17 -16
- package/src/index.js +3 -14
- package/src/observer/reactive.js +4 -3
- package/src/platform/builtInMixins/directiveHelperMixin.ios.js +4 -1
- package/src/platform/builtInMixins/index.js +0 -5
- package/src/platform/builtInMixins/proxyEventMixin.web.js +53 -5
- package/src/platform/builtInMixins/styleHelperMixin.ios.js +1 -1
- package/src/platform/createApp.ios.js +54 -54
- package/src/platform/createApp.js +26 -37
- package/src/platform/env/event.js +105 -0
- package/src/platform/env/index.ios.js +51 -0
- package/src/platform/env/index.js +8 -0
- package/src/platform/env/index.web.js +48 -0
- package/src/{external → platform/env}/vuePlugin.js +10 -4
- package/src/platform/export/index.js +1 -1
- package/src/platform/export/{apiInject.js → inject.js} +2 -3
- package/src/platform/patch/builtInKeysMap.js +1 -1
- package/src/platform/patch/getDefaultOptions.ios.js +18 -19
- package/src/platform/patch/getDefaultOptions.js +0 -2
- package/src/platform/patch/index.js +3 -3
- package/src/convertor/wxToTenon.js +0 -86
- package/src/external/vue.js +0 -1
- package/src/external/vue.tenon.js +0 -13
- package/src/external/vue.web.js +0 -6
- package/src/platform/builtInMixins/pageStatusMixin.tenon.js +0 -40
- package/src/platform/builtInMixins/proxyEventMixin.tenon.js +0 -46
- package/src/platform/export/apiInject.tenon.js +0 -1
- package/src/platform/export/index.tenon.js +0 -78
- package/src/platform/patch/getDefaultOptions.tenon.js +0 -99
- package/src/platform/patch/lifecycle/index.tenon.js +0 -52
- /package/src/platform/export/{apiInject.web.js → inject.web.js} +0 -0
package/@types/global.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// declaration for mpx mode
|
|
2
|
-
declare let __mpx_mode__: 'wx' | 'ali' | 'swan' | 'qq' | 'tt' | '
|
|
2
|
+
declare let __mpx_mode__: 'wx' | 'ali' | 'swan' | 'qq' | 'tt' | 'web' | 'dd' | 'qa' | 'jd'
|
|
3
3
|
|
|
4
4
|
// declaration for mpx env
|
|
5
5
|
declare let __mpx_env__: string
|
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.9.
|
|
3
|
+
"version": "2.9.71",
|
|
4
4
|
"description": "mpx runtime core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"miniprogram",
|
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
],
|
|
20
20
|
"main": "src/index.js",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@mpxjs/utils": "
|
|
22
|
+
"@mpxjs/utils": "^2.9.70",
|
|
23
23
|
"lodash": "^4.1.1",
|
|
24
24
|
"miniprogram-api-typings": "^3.10.0"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"@ant-design/react-native": "^5.1.3",
|
|
28
28
|
"@d11/react-native-fast-image": "^8.6.12",
|
|
29
|
-
"@
|
|
30
|
-
"@
|
|
31
|
-
"@mpxjs/store": ">=2.9.0",
|
|
29
|
+
"@mpxjs/api-proxy": "^2.9.0",
|
|
30
|
+
"@mpxjs/store": "^2.9.0",
|
|
32
31
|
"@react-navigation/native": "^7.0.3",
|
|
33
32
|
"@react-navigation/stack": "^7.0.4",
|
|
33
|
+
"promise": "^8.3.0",
|
|
34
34
|
"react": "*",
|
|
35
35
|
"react-native": "*",
|
|
36
36
|
"react-native-gesture-handler": "^2.19.0",
|
|
@@ -62,6 +62,9 @@
|
|
|
62
62
|
"react-native": {
|
|
63
63
|
"optional": true
|
|
64
64
|
},
|
|
65
|
+
"promise": {
|
|
66
|
+
"optional": true
|
|
67
|
+
},
|
|
65
68
|
"@react-navigation/native": {
|
|
66
69
|
"optional": true
|
|
67
70
|
},
|
|
@@ -106,5 +109,5 @@
|
|
|
106
109
|
"url": "https://github.com/didi/mpx/issues"
|
|
107
110
|
},
|
|
108
111
|
"sideEffects": false,
|
|
109
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "38446f301a17e78dbe3ca7dacd771c79eb7a8ede"
|
|
110
113
|
}
|
|
@@ -3,7 +3,6 @@ import { mergeLifecycle } from './mergeLifecycle'
|
|
|
3
3
|
import { error, extend } from '@mpxjs/utils'
|
|
4
4
|
import wxToAliRule from './wxToAli'
|
|
5
5
|
import wxToWebRule from './wxToWeb'
|
|
6
|
-
import wxToTenonRule from './wxToTenon'
|
|
7
6
|
import wxToSwanRule from './wxToSwan'
|
|
8
7
|
import wxToQqRule from './wxToQq'
|
|
9
8
|
import wxToTtRule from './wxToTt'
|
|
@@ -31,7 +30,6 @@ const rulesMap = {
|
|
|
31
30
|
local: extend({}, defaultConvertRule),
|
|
32
31
|
default: defaultConvertRule,
|
|
33
32
|
wxToWeb: wxToWebRule,
|
|
34
|
-
wxToTenon: wxToTenonRule,
|
|
35
33
|
wxToAli: wxToAliRule,
|
|
36
34
|
wxToSwan: wxToSwanRule,
|
|
37
35
|
wxToQq: extend({}, defaultConvertRule, wxToQqRule),
|
package/src/core/mergeOptions.js
CHANGED
|
@@ -122,9 +122,10 @@ function extractObservers (options) {
|
|
|
122
122
|
Object.keys(props).forEach(key => {
|
|
123
123
|
const prop = props[key]
|
|
124
124
|
if (prop && prop.observer) {
|
|
125
|
+
let callback = prop.observer
|
|
126
|
+
delete prop.observer
|
|
125
127
|
mergeWatch(key, {
|
|
126
128
|
handler (...rest) {
|
|
127
|
-
let callback = prop.observer
|
|
128
129
|
if (typeof callback === 'string') {
|
|
129
130
|
callback = this[callback]
|
|
130
131
|
}
|
|
@@ -168,11 +169,7 @@ function extractObservers (options) {
|
|
|
168
169
|
cb = this[cb]
|
|
169
170
|
}
|
|
170
171
|
if (typeof cb === 'function') {
|
|
171
|
-
|
|
172
|
-
val = [val]
|
|
173
|
-
old = [old]
|
|
174
|
-
}
|
|
175
|
-
cb.call(this, ...val, ...old)
|
|
172
|
+
Array.isArray(val) ? cb.call(this, ...val) : cb.call(this, val)
|
|
176
173
|
}
|
|
177
174
|
},
|
|
178
175
|
deep,
|
package/src/core/proxy.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { reactive,
|
|
1
|
+
import { reactive, defineReactive } from '../observer/reactive'
|
|
2
2
|
import { ReactiveEffect, pauseTracking, resetTracking } from '../observer/effect'
|
|
3
3
|
import { effectScope } from '../platform/export/index'
|
|
4
4
|
import { watch } from '../observer/watch'
|
|
@@ -15,7 +15,6 @@ import {
|
|
|
15
15
|
isPlainObject,
|
|
16
16
|
isWeb,
|
|
17
17
|
isReact,
|
|
18
|
-
isTenon,
|
|
19
18
|
doGetByPath,
|
|
20
19
|
getByPath,
|
|
21
20
|
setByPath,
|
|
@@ -52,7 +51,7 @@ import {
|
|
|
52
51
|
} from './innerLifecycle'
|
|
53
52
|
import contextMap from '../dynamic/vnode/context'
|
|
54
53
|
import { getAst } from '../dynamic/astCache'
|
|
55
|
-
import { inject, provide } from '../platform/export/
|
|
54
|
+
import { inject, provide } from '../platform/export/inject'
|
|
56
55
|
|
|
57
56
|
let uid = 0
|
|
58
57
|
|
|
@@ -112,13 +111,13 @@ export default class MpxProxy {
|
|
|
112
111
|
this.uid = uid++
|
|
113
112
|
this.name = options.name || ''
|
|
114
113
|
this.options = options
|
|
115
|
-
this.
|
|
114
|
+
this.shallowReactivePattern = this.options.options?.shallowReactivePattern
|
|
116
115
|
// beforeCreate -> created -> mounted -> unmounted
|
|
117
116
|
this.state = BEFORECREATE
|
|
118
117
|
this.ignoreProxyMap = makeMap(Mpx.config.ignoreProxyWhiteList)
|
|
119
118
|
// 收集setup中动态注册的hooks,小程序与web环境都需要
|
|
120
119
|
this.hooks = {}
|
|
121
|
-
if (!isWeb
|
|
120
|
+
if (!isWeb) {
|
|
122
121
|
this.scope = effectScope(true)
|
|
123
122
|
// props响应式数据代理
|
|
124
123
|
this.props = {}
|
|
@@ -146,10 +145,12 @@ export default class MpxProxy {
|
|
|
146
145
|
this.initApi()
|
|
147
146
|
}
|
|
148
147
|
|
|
149
|
-
|
|
150
|
-
if (this.
|
|
148
|
+
processShallowReactive (obj) {
|
|
149
|
+
if (this.shallowReactivePattern && isObject(obj)) {
|
|
151
150
|
Object.keys(obj).forEach((key) => {
|
|
152
|
-
if (this.
|
|
151
|
+
if (this.shallowReactivePattern.test(key)) {
|
|
152
|
+
// 命中shallowReactivePattern的属性将其设置为 shallowReactive
|
|
153
|
+
defineReactive(obj, key, obj[key], true)
|
|
153
154
|
Object.defineProperty(obj, key, {
|
|
154
155
|
enumerable: true,
|
|
155
156
|
// set configurable to false to skip defineReactive
|
|
@@ -166,7 +167,7 @@ export default class MpxProxy {
|
|
|
166
167
|
// 缓存上下文,在 destoryed 阶段删除
|
|
167
168
|
contextMap.set(this.uid, this.target)
|
|
168
169
|
}
|
|
169
|
-
if (!isWeb
|
|
170
|
+
if (!isWeb) {
|
|
170
171
|
// web中BEFORECREATE钩子通过vue的beforeCreate钩子单独驱动
|
|
171
172
|
this.callHook(BEFORECREATE)
|
|
172
173
|
setCurrentInstance(this)
|
|
@@ -185,7 +186,7 @@ export default class MpxProxy {
|
|
|
185
186
|
this.state = CREATED
|
|
186
187
|
this.callHook(CREATED)
|
|
187
188
|
|
|
188
|
-
if (!isWeb && !isReact
|
|
189
|
+
if (!isWeb && !isReact) {
|
|
189
190
|
this.initRender()
|
|
190
191
|
}
|
|
191
192
|
|
|
@@ -278,7 +279,7 @@ export default class MpxProxy {
|
|
|
278
279
|
}
|
|
279
280
|
// 挂载$rawOptions
|
|
280
281
|
this.target.$rawOptions = this.options
|
|
281
|
-
if (!isWeb
|
|
282
|
+
if (!isWeb) {
|
|
282
283
|
// 挂载$watch
|
|
283
284
|
this.target.$watch = this.watch.bind(this)
|
|
284
285
|
// 强制执行render
|
|
@@ -291,10 +292,10 @@ export default class MpxProxy {
|
|
|
291
292
|
if (isReact) {
|
|
292
293
|
// react模式下props内部对象透传无需深clone,依赖对象深层的数据响应触发子组件更新
|
|
293
294
|
this.props = this.target.__getProps()
|
|
294
|
-
|
|
295
|
+
reactive(this.processShallowReactive(this.props))
|
|
295
296
|
} else {
|
|
296
297
|
this.props = diffAndCloneA(this.target.__getProps(this.options)).clone
|
|
297
|
-
reactive(this.
|
|
298
|
+
reactive(this.processShallowReactive(this.props))
|
|
298
299
|
}
|
|
299
300
|
proxy(this.target, this.props, undefined, false, this.createProxyConflictHandler('props'))
|
|
300
301
|
}
|
|
@@ -334,7 +335,7 @@ export default class MpxProxy {
|
|
|
334
335
|
if (isFunction(dataFn)) {
|
|
335
336
|
Object.assign(this.data, callWithErrorHandling(dataFn.bind(this.target), this, 'data function'))
|
|
336
337
|
}
|
|
337
|
-
reactive(this.
|
|
338
|
+
reactive(this.processShallowReactive(this.data))
|
|
338
339
|
proxy(this.target, this.data, undefined, false, this.createProxyConflictHandler('data'))
|
|
339
340
|
this.collectLocalKeys(this.data)
|
|
340
341
|
}
|
|
@@ -515,7 +516,7 @@ export default class MpxProxy {
|
|
|
515
516
|
if (hasOwn(renderData, key)) {
|
|
516
517
|
const data = renderData[key]
|
|
517
518
|
const firstKey = getFirstKey(key)
|
|
518
|
-
if (!this.localKeysMap[firstKey]
|
|
519
|
+
if (!this.localKeysMap[firstKey]) {
|
|
519
520
|
continue
|
|
520
521
|
}
|
|
521
522
|
// 外部clone,用于只需要clone的场景
|
|
@@ -762,7 +763,7 @@ export default class MpxProxy {
|
|
|
762
763
|
}
|
|
763
764
|
setByPath(this.target, key, data[key])
|
|
764
765
|
})
|
|
765
|
-
this.forceUpdateData
|
|
766
|
+
Object.assign(this.forceUpdateData, data)
|
|
766
767
|
} else {
|
|
767
768
|
this.forceUpdateAll = true
|
|
768
769
|
}
|
package/src/index.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
import { error, diffAndCloneA, hasOwn, makeMap } from '@mpxjs/utils'
|
|
3
3
|
import { APIs, InstanceAPIs } from './platform/export/api'
|
|
4
|
-
|
|
5
|
-
import { createI18n } from './platform/builtInMixins/i18nMixin'
|
|
4
|
+
import { init } from './platform/env/index'
|
|
6
5
|
|
|
7
6
|
export * from './platform/export/index'
|
|
8
7
|
|
|
@@ -123,10 +122,6 @@ function factory () {
|
|
|
123
122
|
|
|
124
123
|
Object.assign(Mpx, APIs)
|
|
125
124
|
Object.assign(Mpx.prototype, InstanceAPIs)
|
|
126
|
-
// 输出web时在mpx上挂载Vue对象
|
|
127
|
-
if (__mpx_mode__ === 'web' || __mpx_mode__ === 'tenon') {
|
|
128
|
-
Mpx.__vue = Vue
|
|
129
|
-
}
|
|
130
125
|
return Mpx
|
|
131
126
|
}
|
|
132
127
|
|
|
@@ -156,12 +151,6 @@ Mpx.config = {
|
|
|
156
151
|
rnConfig: {}
|
|
157
152
|
}
|
|
158
153
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
if (__mpx_mode__ !== 'web') {
|
|
162
|
-
if (global.i18n) {
|
|
163
|
-
Mpx.i18n = createI18n(global.i18n)
|
|
164
|
-
}
|
|
165
|
-
}
|
|
154
|
+
init(Mpx)
|
|
166
155
|
|
|
167
156
|
export default Mpx
|