EASYAIuniappNewUI/node_modules/@dcloudio/uni-cli-shared/dist/json/app/manifest/launchwebview.js
2025-02-08 18:50:38 +08:00

54 lines
1.7 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.initLaunchwebview = void 0;
const shared_1 = require("@vue/shared");
function initLaunchwebview(manifestJson, pagesJson) {
let entryPagePath = pagesJson.pages[0].path;
// 依赖前置执行initArguments
if (manifestJson.plus.arguments) {
try {
const args = JSON.parse(manifestJson.plus.arguments);
if (args.path) {
entryPagePath = args.path;
}
}
catch (e) { }
}
if (manifestJson.plus.useragent.concatenate) {
if (manifestJson.plus.useragent.value) {
manifestJson.plus.useragent.value = [
'uni-app',
manifestJson.plus.useragent.value,
].join(' ');
}
else {
manifestJson.plus.useragent.value = 'uni-app';
}
}
if (manifestJson['app-harmony'].useragent.concatenate) {
if (manifestJson['app-harmony'].useragent.value) {
manifestJson['app-harmony'].useragent.value = [
'uni-app',
manifestJson['app-harmony'].useragent.value,
].join(' ');
}
else {
manifestJson['app-harmony'].useragent.value = 'uni-app';
}
}
(0, shared_1.extend)(manifestJson.plus.launchwebview, {
id: '1',
kernel: 'WKWebview',
});
// 首页为nvue
const entryPage = pagesJson.pages.find((p) => p.path === entryPagePath);
if (entryPage?.style.isNVue) {
manifestJson.plus.launchwebview.uniNView = { path: entryPagePath + '.js' };
}
else {
manifestJson.launch_path = '__uniappview.html';
}
return entryPagePath;
}
exports.initLaunchwebview = initLaunchwebview;