@mpxjs/webpack-plugin 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/LICENSE +433 -0
- package/README.md +1 -1
- package/lib/config.js +0 -14
- package/lib/dependencies/ResolveDependency.js +0 -5
- package/lib/index.js +7 -38
- package/lib/json-compiler/helper.js +3 -3
- package/lib/loader.js +0 -53
- package/lib/parser.js +1 -1
- package/lib/platform/json/wx/index.js +21 -8
- package/lib/platform/style/wx/index.js +51 -54
- package/lib/platform/template/wx/component-config/button.js +2 -14
- package/lib/platform/template/wx/component-config/fix-component-name.js +15 -12
- package/lib/platform/template/wx/component-config/image.js +0 -4
- package/lib/platform/template/wx/component-config/index.js +1 -1
- package/lib/platform/template/wx/component-config/input.js +0 -4
- package/lib/platform/template/wx/component-config/movable-view.js +8 -1
- package/lib/platform/template/wx/component-config/picker-view.js +1 -5
- package/lib/platform/template/wx/component-config/rich-text.js +6 -2
- package/lib/platform/template/wx/component-config/scroll-view.js +1 -5
- package/lib/platform/template/wx/component-config/switch.js +0 -4
- package/lib/platform/template/wx/component-config/text.js +0 -4
- package/lib/platform/template/wx/component-config/textarea.js +0 -5
- package/lib/platform/template/wx/component-config/unsupported.js +1 -1
- package/lib/platform/template/wx/component-config/view.js +0 -4
- package/lib/platform/template/wx/index.js +1 -131
- package/lib/resolve-loader.js +1 -4
- package/lib/runtime/components/react/context.ts +8 -0
- package/lib/runtime/components/react/dist/context.js +2 -0
- package/lib/runtime/components/react/dist/getInnerListeners.js +39 -37
- package/lib/runtime/components/react/dist/mpx-button.jsx +16 -44
- package/lib/runtime/components/react/dist/mpx-canvas/html.js +2 -4
- package/lib/runtime/components/react/dist/mpx-canvas/index.jsx +5 -1
- package/lib/runtime/components/react/dist/mpx-movable-view.jsx +93 -58
- package/lib/runtime/components/react/dist/mpx-navigator.jsx +1 -1
- package/lib/runtime/components/react/dist/mpx-picker-view-column-item.jsx +10 -14
- package/lib/runtime/components/react/dist/mpx-picker-view-column.jsx +94 -81
- package/lib/runtime/components/react/dist/mpx-picker-view.jsx +19 -16
- package/lib/runtime/components/react/dist/mpx-rich-text/index.jsx +10 -11
- package/lib/runtime/components/react/dist/mpx-scroll-view.jsx +11 -4
- package/lib/runtime/components/react/dist/mpx-swiper-item.jsx +31 -8
- package/lib/runtime/components/react/dist/mpx-swiper.jsx +435 -371
- package/lib/runtime/components/react/dist/mpx-view.jsx +18 -53
- package/lib/runtime/components/react/dist/pickerFaces.js +3 -8
- package/lib/runtime/components/react/dist/pickerVIewContext.js +5 -0
- package/lib/runtime/components/react/dist/{pickerViewOverlay.jsx → pickerViewIndicator.jsx} +6 -6
- package/lib/runtime/components/react/dist/pickerViewMask.jsx +2 -2
- package/lib/runtime/components/react/dist/useAnimationHooks.js +27 -10
- package/lib/runtime/components/react/dist/utils.jsx +162 -70
- package/lib/runtime/components/react/event.config.ts +25 -26
- package/lib/runtime/components/react/getInnerListeners.ts +236 -182
- package/lib/runtime/components/react/mpx-button.tsx +27 -69
- package/lib/runtime/components/react/mpx-canvas/html.ts +2 -4
- package/lib/runtime/components/react/mpx-canvas/index.tsx +44 -46
- package/lib/runtime/components/react/mpx-checkbox-group.tsx +15 -13
- package/lib/runtime/components/react/mpx-checkbox.tsx +20 -21
- package/lib/runtime/components/react/mpx-form.tsx +15 -20
- package/lib/runtime/components/react/mpx-icon.tsx +2 -2
- package/lib/runtime/components/react/mpx-image.tsx +87 -47
- package/lib/runtime/components/react/mpx-input.tsx +24 -32
- package/lib/runtime/components/react/mpx-label.tsx +12 -14
- package/lib/runtime/components/react/mpx-movable-area.tsx +10 -16
- package/lib/runtime/components/react/mpx-movable-view.tsx +133 -92
- package/lib/runtime/components/react/mpx-navigator.tsx +3 -9
- package/lib/runtime/components/react/mpx-picker-view-column-item.tsx +76 -0
- package/lib/runtime/components/react/mpx-picker-view-column.tsx +206 -183
- package/lib/runtime/components/react/mpx-picker-view.tsx +49 -48
- package/lib/runtime/components/react/mpx-radio-group.tsx +13 -15
- package/lib/runtime/components/react/mpx-radio.tsx +19 -25
- package/lib/runtime/components/react/mpx-rich-text/html.ts +40 -0
- package/lib/runtime/components/react/mpx-rich-text/index.tsx +115 -0
- package/lib/runtime/components/react/mpx-root-portal.tsx +3 -5
- package/lib/runtime/components/react/mpx-scroll-view.tsx +53 -43
- package/lib/runtime/components/react/mpx-swiper-item.tsx +45 -11
- package/lib/runtime/components/react/mpx-swiper.tsx +742 -0
- package/lib/runtime/components/react/mpx-switch.tsx +19 -15
- package/lib/runtime/components/react/mpx-text.tsx +8 -16
- package/lib/runtime/components/react/mpx-textarea.tsx +11 -10
- package/lib/runtime/components/react/mpx-view.tsx +28 -77
- package/lib/runtime/components/react/mpx-web-view.tsx +94 -59
- package/lib/runtime/components/react/pickerFaces.ts +10 -7
- package/lib/runtime/components/react/pickerVIewContext.ts +27 -0
- package/lib/runtime/components/react/pickerViewIndicator.tsx +34 -0
- package/lib/runtime/components/react/pickerViewMask.tsx +30 -0
- package/lib/runtime/components/react/types/{getInnerListeners.ts → getInnerListeners.d.ts} +4 -5
- package/lib/runtime/components/react/types/global.d.ts +12 -1
- package/lib/runtime/components/react/useAnimationHooks.ts +60 -15
- package/lib/runtime/components/react/utils.tsx +175 -71
- package/lib/runtime/components/web/mpx-checkbox.vue +1 -1
- package/lib/runtime/components/web/mpx-picker-view-column.vue +9 -4
- package/lib/runtime/components/web/mpx-web-view.vue +34 -20
- package/lib/runtime/optionProcessor.js +0 -22
- package/lib/style-compiler/index.js +1 -1
- package/lib/style-compiler/plugins/scope-id.js +30 -2
- package/lib/template-compiler/compiler.js +91 -39
- package/lib/utils/env.js +1 -6
- package/lib/utils/pre-process-json.js +9 -5
- package/lib/wxss/loader.js +15 -2
- package/package.json +4 -7
- package/lib/dependencies/AddEntryDependency.js +0 -24
- package/lib/runtime/components/react/dist/types/common.js +0 -1
- package/lib/runtime/components/react/dist/types/getInnerListeners.js +0 -1
- package/lib/runtime/components/react/mpx-swiper/carouse.tsx +0 -527
- package/lib/runtime/components/react/mpx-swiper/index.tsx +0 -80
- package/lib/runtime/components/react/mpx-swiper/type.ts +0 -87
- package/lib/runtime/components/react/pickerOverlay.tsx +0 -32
- package/lib/runtime/components/tenon/getInnerListeners.js +0 -334
- package/lib/runtime/components/tenon/tenon-button.vue +0 -309
- package/lib/runtime/components/tenon/tenon-image.vue +0 -66
- package/lib/runtime/components/tenon/tenon-input.vue +0 -171
- package/lib/runtime/components/tenon/tenon-rich-text.vue +0 -26
- package/lib/runtime/components/tenon/tenon-scroll-view.vue +0 -127
- package/lib/runtime/components/tenon/tenon-switch.vue +0 -96
- package/lib/runtime/components/tenon/tenon-text.vue +0 -70
- package/lib/runtime/components/tenon/tenon-textarea.vue +0 -86
- package/lib/runtime/components/tenon/tenon-view.vue +0 -93
- package/lib/runtime/components/web/event.js +0 -105
- package/lib/runtime/optionProcessor.tenon.js +0 -84
- package/lib/style-compiler/plugins/hm.js +0 -20
- package/lib/tenon/index.js +0 -117
- package/lib/tenon/processJSON.js +0 -352
- package/lib/tenon/processScript.js +0 -203
- package/lib/tenon/processStyles.js +0 -21
- package/lib/tenon/processTemplate.js +0 -126
- package/lib/tenon/script-helper.js +0 -223
- package/lib/utils/get-relative-path.js +0 -25
- /package/lib/runtime/components/react/types/{common.ts → common.d.ts} +0 -0
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/README.md
CHANGED
package/lib/config.js
CHANGED
|
@@ -368,20 +368,6 @@ module.exports = {
|
|
|
368
368
|
templatePrefix: 'module.exports = \n'
|
|
369
369
|
}
|
|
370
370
|
},
|
|
371
|
-
tenon: {
|
|
372
|
-
directive: {
|
|
373
|
-
if: 'v-if',
|
|
374
|
-
elseif: 'v-else-if',
|
|
375
|
-
else: 'v-else'
|
|
376
|
-
},
|
|
377
|
-
wxs: {
|
|
378
|
-
tag: 'wxs',
|
|
379
|
-
module: 'module',
|
|
380
|
-
src: 'src',
|
|
381
|
-
ext: '.wxs',
|
|
382
|
-
templatePrefix: 'module.exports = \n'
|
|
383
|
-
}
|
|
384
|
-
},
|
|
385
371
|
qa: {
|
|
386
372
|
typeExtMap: {
|
|
387
373
|
json: '.json',
|
|
@@ -76,11 +76,6 @@ ResolveDependency.Template = class ResolveDependencyTemplate {
|
|
|
76
76
|
|
|
77
77
|
getContent (dep) {
|
|
78
78
|
const { resolved = '' } = dep
|
|
79
|
-
// for tenon
|
|
80
|
-
if (dep.compilation.__mpx__.mode === 'tenon') {
|
|
81
|
-
// 只支持所有产物在一个目录下的场景 进行相对路径跳转
|
|
82
|
-
return `'./${resolved}.js'`
|
|
83
|
-
}
|
|
84
79
|
// ?resolve 必定返回绝对路径
|
|
85
80
|
return JSON.stringify('/' + resolved)
|
|
86
81
|
}
|
package/lib/index.js
CHANGED
|
@@ -66,7 +66,7 @@ const emitFile = require('./utils/emit-file')
|
|
|
66
66
|
const { MPX_PROCESSED_FLAG, MPX_DISABLE_EXTRACTOR_CACHE, MPX_APP_MODULE_ID } = require('./utils/const')
|
|
67
67
|
const isEmptyObject = require('./utils/is-empty-object')
|
|
68
68
|
const DynamicPlugin = require('./resolver/DynamicPlugin')
|
|
69
|
-
const { isReact, isWeb
|
|
69
|
+
const { isReact, isWeb } = require('./utils/env')
|
|
70
70
|
const VirtualModulesPlugin = require('webpack-virtual-modules')
|
|
71
71
|
require('./utils/check-core-version-match')
|
|
72
72
|
|
|
@@ -323,7 +323,7 @@ class MpxWebpackPlugin {
|
|
|
323
323
|
}
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
-
if (!isWeb(this.options.mode) && !isReact(this.options.mode)
|
|
326
|
+
if (!isWeb(this.options.mode) && !isReact(this.options.mode)) {
|
|
327
327
|
// 强制设置publicPath为'/'
|
|
328
328
|
if (compiler.options.output.publicPath && compiler.options.output.publicPath !== publicPath) {
|
|
329
329
|
warnings.push(`webpack options: MpxWebpackPlugin accept options.output.publicPath to be ${publicPath} only, custom options.output.publicPath will be ignored!`)
|
|
@@ -381,7 +381,7 @@ class MpxWebpackPlugin {
|
|
|
381
381
|
compiler.options.resolve.plugins.push(dynamicPlugin)
|
|
382
382
|
|
|
383
383
|
const optimization = compiler.options.optimization
|
|
384
|
-
if (!isWeb(this.options.mode) && !isReact(this.options.mode)
|
|
384
|
+
if (!isWeb(this.options.mode) && !isReact(this.options.mode)) {
|
|
385
385
|
optimization.runtimeChunk = {
|
|
386
386
|
name: (entrypoint) => {
|
|
387
387
|
for (const packageName in mpx.independentSubpackagesMap) {
|
|
@@ -397,7 +397,7 @@ class MpxWebpackPlugin {
|
|
|
397
397
|
let splitChunksOptions = null
|
|
398
398
|
let splitChunksPlugin = null
|
|
399
399
|
// 输出web ssr需要将optimization.splitChunks设置为false以关闭splitChunks
|
|
400
|
-
if (optimization.splitChunks !== false && !isReact(this.options.mode)
|
|
400
|
+
if (optimization.splitChunks !== false && !isReact(this.options.mode)) {
|
|
401
401
|
splitChunksOptions = Object.assign({
|
|
402
402
|
chunks: 'all',
|
|
403
403
|
usedExports: optimization.usedExports === true,
|
|
@@ -1482,27 +1482,6 @@ class MpxWebpackPlugin {
|
|
|
1482
1482
|
}
|
|
1483
1483
|
})
|
|
1484
1484
|
|
|
1485
|
-
// processing for tenon-store
|
|
1486
|
-
if (mpx.mode === 'tenon') {
|
|
1487
|
-
let TENON_STORE_ID = 0
|
|
1488
|
-
parser.hooks.call.for('imported var').tap('MpxWebpackPlugin', (expr) => {
|
|
1489
|
-
if (['createStore', 'createStoreWithThis'].includes(expr.callee.name)) {
|
|
1490
|
-
const current = parser.state.current
|
|
1491
|
-
const storeOptions = expr.arguments.length && expr.arguments[0]
|
|
1492
|
-
if (storeOptions) {
|
|
1493
|
-
current.addDependency(new InjectDependency({
|
|
1494
|
-
content: 'Object.assign(',
|
|
1495
|
-
index: storeOptions.range[0]
|
|
1496
|
-
}))
|
|
1497
|
-
current.addDependency(new InjectDependency({
|
|
1498
|
-
content: `, { __store_id: ${TENON_STORE_ID++} })`,
|
|
1499
|
-
index: storeOptions.range[1]
|
|
1500
|
-
}))
|
|
1501
|
-
}
|
|
1502
|
-
}
|
|
1503
|
-
})
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
1485
|
parser.hooks.evaluate.for('NewExpression').tap('MpxWebpackPlugin', (expression) => {
|
|
1507
1486
|
if (/@intlify\/core-base/.test(parser.state.module.resource)) {
|
|
1508
1487
|
if (expression.callee.name === 'Function') {
|
|
@@ -1618,7 +1597,7 @@ class MpxWebpackPlugin {
|
|
|
1618
1597
|
name: 'MpxWebpackPlugin',
|
|
1619
1598
|
stage: compilation.PROCESS_ASSETS_STAGE_ADDITIONS
|
|
1620
1599
|
}, () => {
|
|
1621
|
-
if (isWeb(mpx.mode) || isReact(mpx.mode)
|
|
1600
|
+
if (isWeb(mpx.mode) || isReact(mpx.mode)) return
|
|
1622
1601
|
|
|
1623
1602
|
if (this.options.generateBuildMap) {
|
|
1624
1603
|
const pagesMap = compilation.__mpx__.pagesMap
|
|
@@ -1859,31 +1838,21 @@ try {
|
|
|
1859
1838
|
// mpxStyleOptions 为 mpx style 文件的标识,避免 Vue 文件插入 styleCompiler 后导致 vue scoped 样式隔离失效
|
|
1860
1839
|
if (isWeb(mpx.mode) && queryObj.mpxStyleOptions) {
|
|
1861
1840
|
const firstLoader = loaders[0] ? toPosix(loaders[0].loader) : ''
|
|
1862
|
-
const isPitcherRequest = firstLoader.includes('node_modules/vue-loader/lib/loaders/pitcher')
|
|
1841
|
+
const isPitcherRequest = firstLoader.includes('node_modules/vue-loader/lib/loaders/pitcher')
|
|
1863
1842
|
let cssLoaderIndex = -1
|
|
1864
1843
|
let vueStyleLoaderIndex = -1
|
|
1865
1844
|
let mpxStyleLoaderIndex = -1
|
|
1866
|
-
let tenonStyleLoaderIndex = -1
|
|
1867
1845
|
loaders.forEach((loader, index) => {
|
|
1868
1846
|
const currentLoader = toPosix(loader.loader)
|
|
1869
1847
|
if (currentLoader.includes('node_modules/css-loader') && cssLoaderIndex === -1) {
|
|
1870
1848
|
cssLoaderIndex = index
|
|
1871
1849
|
} else if (currentLoader.includes('node_modules/vue-loader/lib/loaders/stylePostLoader') && vueStyleLoaderIndex === -1) {
|
|
1872
1850
|
vueStyleLoaderIndex = index
|
|
1873
|
-
} else if (currentLoader.includes('@hummer/tenon-style-loader/dist/index.js') && tenonStyleLoaderIndex === -1) {
|
|
1874
|
-
tenonStyleLoaderIndex = index
|
|
1875
1851
|
} else if (currentLoader.includes(styleCompilerPath) && mpxStyleLoaderIndex === -1) {
|
|
1876
1852
|
mpxStyleLoaderIndex = index
|
|
1877
1853
|
}
|
|
1878
1854
|
})
|
|
1879
|
-
if (
|
|
1880
|
-
if (tenonStyleLoaderIndex > -1 && !isPitcherRequest) {
|
|
1881
|
-
loaders.splice(tenonStyleLoaderIndex + 1, 0, {
|
|
1882
|
-
loader: normalize.lib('style-compiler/index.js'),
|
|
1883
|
-
options: (mpxStyleOptions && JSON.parse(mpxStyleOptions)) || {}
|
|
1884
|
-
})
|
|
1885
|
-
}
|
|
1886
|
-
} else if (mpxStyleLoaderIndex === -1) {
|
|
1855
|
+
if (mpxStyleLoaderIndex === -1) {
|
|
1887
1856
|
let loaderIndex = -1
|
|
1888
1857
|
if (cssLoaderIndex > -1 && vueStyleLoaderIndex === -1) {
|
|
1889
1858
|
loaderIndex = cssLoaderIndex
|
|
@@ -7,7 +7,7 @@ const addQuery = require('../utils/add-query')
|
|
|
7
7
|
const loaderUtils = require('loader-utils')
|
|
8
8
|
const resolve = require('../utils/resolve')
|
|
9
9
|
const { matchCondition } = require('../utils/match-condition')
|
|
10
|
-
const { isWeb, isReact
|
|
10
|
+
const { isWeb, isReact } = require('../utils/env')
|
|
11
11
|
|
|
12
12
|
module.exports = function createJSONHelper ({ loaderContext, emitWarning, customGetDynamicEntry }) {
|
|
13
13
|
const mpx = loaderContext.getMpx()
|
|
@@ -76,7 +76,7 @@ module.exports = function createJSONHelper ({ loaderContext, emitWarning, custom
|
|
|
76
76
|
const resourceName = path.join(parsed.dir, parsed.name)
|
|
77
77
|
|
|
78
78
|
if (!outputPath) {
|
|
79
|
-
if (isScript(ext) && resourceName.includes('node_modules') && !isWeb(mode) && !
|
|
79
|
+
if (isScript(ext) && resourceName.includes('node_modules') && !isWeb(mode) && !isReact(mode)) {
|
|
80
80
|
let root = info.descriptionFileRoot
|
|
81
81
|
let name = 'nativeComponent'
|
|
82
82
|
if (info.descriptionFileData) {
|
|
@@ -139,7 +139,7 @@ module.exports = function createJSONHelper ({ loaderContext, emitWarning, custom
|
|
|
139
139
|
outputPath = /^(.*?)(\.[^.]*)?$/.exec(relative)[1]
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
|
-
if (isScript(ext) && !isWeb(mode) && !
|
|
142
|
+
if (isScript(ext) && !isWeb(mode) && !isReact(mode)) {
|
|
143
143
|
resource = `!!${nativeLoaderPath}!${resource}`
|
|
144
144
|
}
|
|
145
145
|
const entry = getDynamicEntry(resource, 'page', outputPath, tarRoot, publicPath + tarRoot)
|
package/lib/loader.js
CHANGED
|
@@ -4,8 +4,6 @@ const parseRequest = require('./utils/parse-request')
|
|
|
4
4
|
const { matchCondition } = require('./utils/match-condition')
|
|
5
5
|
const addQuery = require('./utils/add-query')
|
|
6
6
|
const async = require('async')
|
|
7
|
-
const processForTenon = require('./tenon/index')
|
|
8
|
-
const getJSONContent = require('./utils/get-json-content')
|
|
9
7
|
const normalize = require('./utils/normalize')
|
|
10
8
|
const getEntryName = require('./utils/get-entry-name')
|
|
11
9
|
const AppEntryDependency = require('./dependencies/AppEntryDependency')
|
|
@@ -19,11 +17,6 @@ const path = require('path')
|
|
|
19
17
|
const processWeb = require('./web')
|
|
20
18
|
const processReact = require('./react')
|
|
21
19
|
const genMpxCustomElement = require('./runtime-render/gen-mpx-custom-element')
|
|
22
|
-
const loaderUtils = require('loader-utils')
|
|
23
|
-
|
|
24
|
-
function stringifyRequest (loaderContext, request) {
|
|
25
|
-
return loaderUtils.stringifyRequest(loaderContext, request)
|
|
26
|
-
}
|
|
27
20
|
|
|
28
21
|
module.exports = function (content) {
|
|
29
22
|
this.cacheable()
|
|
@@ -135,52 +128,6 @@ module.exports = function (content) {
|
|
|
135
128
|
const hasComment = templateAttrs && templateAttrs.comments
|
|
136
129
|
const isNative = false
|
|
137
130
|
|
|
138
|
-
|
|
139
|
-
if (mode === 'tenon') {
|
|
140
|
-
let output = ''
|
|
141
|
-
if (ctorType === 'app' && !queryObj.app) {
|
|
142
|
-
const request = addQuery(this.resource, { app: true })
|
|
143
|
-
output += `
|
|
144
|
-
import App from ${stringifyRequest(loaderContext, request)}
|
|
145
|
-
import * as Tenon from '@hummer/tenon-vue'
|
|
146
|
-
|
|
147
|
-
Tenon.render(App)\n`
|
|
148
|
-
// 直接结束loader进入parse
|
|
149
|
-
this.loaderIndex = -1
|
|
150
|
-
return callback(null, output)
|
|
151
|
-
}
|
|
152
|
-
if (ctorType === 'page' && queryObj.tenon) {
|
|
153
|
-
console.log(resourcePath)
|
|
154
|
-
const request = addQuery(resourcePath, { page: true })
|
|
155
|
-
output += `
|
|
156
|
-
import page from ${stringifyRequest(loaderContext, request)}
|
|
157
|
-
import * as Tenon from '@hummer/tenon-vue'
|
|
158
|
-
|
|
159
|
-
Tenon.render(page)\n`
|
|
160
|
-
this.loaderIndex = -1
|
|
161
|
-
return callback(null, output)
|
|
162
|
-
}
|
|
163
|
-
return processForTenon({
|
|
164
|
-
parts,
|
|
165
|
-
jsonContent,
|
|
166
|
-
loaderContext,
|
|
167
|
-
pagesMap,
|
|
168
|
-
componentsMap,
|
|
169
|
-
queryObj,
|
|
170
|
-
ctorType,
|
|
171
|
-
srcMode,
|
|
172
|
-
moduleId,
|
|
173
|
-
isProduction,
|
|
174
|
-
hasScoped,
|
|
175
|
-
hasComment,
|
|
176
|
-
isNative,
|
|
177
|
-
usingComponentsInfo: JSON.stringify(usingComponentsInfo),
|
|
178
|
-
componentGenerics,
|
|
179
|
-
autoScope,
|
|
180
|
-
callback
|
|
181
|
-
})
|
|
182
|
-
}
|
|
183
|
-
|
|
184
131
|
// 处理mode为web时输出vue格式文件
|
|
185
132
|
if (mode === 'web') {
|
|
186
133
|
return processWeb({
|
package/lib/parser.js
CHANGED