31 lines
1.6 KiB
JavaScript
31 lines
1.6 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.uniMainJsPlugin = void 0;
|
|
const uni_cli_shared_1 = require("@dcloudio/uni-cli-shared");
|
|
function uniMainJsPlugin() {
|
|
return (0, uni_cli_shared_1.defineUniMainJsPlugin)((opts) => {
|
|
return {
|
|
name: 'uni:app-vue-main-js',
|
|
enforce: 'pre',
|
|
transform(code, id) {
|
|
if (opts.filter(id)) {
|
|
code = code.includes('createSSRApp')
|
|
? createApp(code)
|
|
: createLegacyApp(code);
|
|
return {
|
|
code: `import './${uni_cli_shared_1.PAGES_JSON_JS}';` + code,
|
|
map: { mappings: '' },
|
|
};
|
|
}
|
|
},
|
|
};
|
|
});
|
|
}
|
|
exports.uniMainJsPlugin = uniMainJsPlugin;
|
|
function createApp(code) {
|
|
return `${code.replace('createSSRApp', 'createVueApp as createSSRApp')};const {app:__app__,Vuex:__Vuex__,Pinia:__Pinia__}=createApp();uni.Vuex=__Vuex__;uni.Pinia=__Pinia__;__app__.provide('__globalStyles', __uniConfig.styles);__app__._component.mpType='app';__app__._component.render=()=>{};__app__.mount("#app");`;
|
|
}
|
|
function createLegacyApp(code) {
|
|
return `function createApp(rootComponent,rootProps){rootComponent.mpTye='app';rootComponent.render=()=>{};const app=createVueApp(rootComponent,rootProps);app.provide('__globalStyles', __uniConfig.styles);const oldMount=app.mount;app.mount=(container)=>{const appVm=oldMount.call(app,container);return appVm;};return app;};${code.replace('createApp', 'createVueApp')}`;
|
|
}
|