const path = require('path')
|
|
const {
|
getPlatforms,
|
normalizePath
|
} = require('@dcloudio/uni-cli-shared')
|
|
const PLATFORMS = getPlatforms()
|
|
const alipayWindowMap = {
|
defaultTitle: 'navigationBarTitleText',
|
pullRefresh: 'enablePullDownRefresh',
|
allowsBounceVertical: 'allowsBounceVertical',
|
titleBarColor: 'navigationBarBackgroundColor',
|
optionMenu: 'optionMenu',
|
backgroundColor: 'backgroundColor',
|
usingComponents: 'usingComponents',
|
navigationBarShadow: 'navigationBarShadow',
|
titleImage: 'titleImage',
|
transparentTitle: 'transparentTitle',
|
titlePenetrate: 'titlePenetrate',
|
barButtonTheme: {
|
key: 'navigationBarTextStyle',
|
transform: function (value) {
|
|
}
|
}
|
}
|
|
const alipayTabBarMap = {
|
customize: 'customize',
|
textColor: 'color',
|
selectedColor: 'selectedColor',
|
backgroundColor: 'backgroundColor',
|
items: 'list'
|
}
|
|
const alipayTabBarItemMap = {
|
pagePath: 'pagePath',
|
name: 'text',
|
icon: 'iconPath',
|
activeIcon: 'selectedIconPath'
|
}
|
|
const _hasOwnProperty = Object.prototype.hasOwnProperty
|
|
function hasOwn (obj, key) {
|
return _hasOwnProperty.call(obj, key)
|
}
|
|
function trimMPJson (json) {
|
delete json.maxWidth
|
delete json.topWindow
|
delete json.leftWindow
|
delete json.rightWindow
|
if (json.tabBar) {
|
delete json.tabBar.matchMedia
|
}
|
return json
|
}
|
|
function parseStyle (style = {}, root = '') {
|
// TODO pages.json 触发了两次,需要排查
|
style = trimMPJson(JSON.parse(JSON.stringify(style)))
|
|
let platformStyle = {}
|
|
Object.keys(style).forEach(name => {
|
if (name === 'app') {
|
name = 'app-plus'
|
} else if (name === 'web') {
|
name = 'h5'
|
}
|
if (PLATFORMS.includes(name)) {
|
if (name === process.env.UNI_PLATFORM) {
|
if (name === 'app-plus') {
|
platformStyle = style.app || style[name] || {}
|
} else if (name === 'h5') {
|
platformStyle = style.web || style[name] || {}
|
} else {
|
platformStyle = style[name] || {}
|
}
|
}
|
delete style[name]
|
}
|
})
|
|
delete style.app
|
delete style.web
|
|
if (process.env.UNI_PLATFORM === 'app-plus') {
|
if (root && Array.isArray(platformStyle.subNVues) && platformStyle.subNVues.length) { // 处理分包逻辑
|
platformStyle.subNVues.forEach(subNVue => {
|
subNVue.path = normalizePath(path.join(root, subNVue.path))
|
})
|
}
|
|
style.disableSwipeBack === true
|
? platformStyle.popGesture = 'none'
|
: delete platformStyle.popGesture
|
delete style.disableSwipeBack
|
}
|
|
if (process.env.UNI_PLATFORM === 'mp-alipay') {
|
const windowOptions = {}
|
Object.keys(alipayWindowMap).forEach(key => {
|
if (hasOwn(style, alipayWindowMap[key])) {
|
windowOptions[key] = style[alipayWindowMap[key]]
|
}
|
})
|
return Object.assign(windowOptions, platformStyle)
|
}
|
|
if (
|
style.navigationBarTextStyle &&
|
(
|
style.navigationBarTextStyle !== 'black' &&
|
style.navigationBarTextStyle.indexOf('@') !== 0
|
)
|
) {
|
style.navigationBarTextStyle = 'white'
|
}
|
|
return Object.assign({
|
usingComponents: {}
|
}, style, platformStyle)
|
}
|
|
function parseTabBar (style = {}) {
|
if (process.env.UNI_PLATFORM === 'mp-alipay') {
|
const tabBarOptions = {}
|
Object.keys(alipayTabBarMap).forEach(key => {
|
if (hasOwn(style, alipayTabBarMap[key])) {
|
tabBarOptions[key] = style[alipayTabBarMap[key]]
|
}
|
})
|
if (Array.isArray(tabBarOptions.items) && tabBarOptions.items.length) {
|
tabBarOptions.items = tabBarOptions.items.map(itemOptions => {
|
const tabBarItemOptions = {}
|
Object.keys(alipayTabBarItemMap).forEach(key => {
|
if (hasOwn(itemOptions, alipayTabBarItemMap[key])) {
|
tabBarItemOptions[key] = itemOptions[alipayTabBarItemMap[key]]
|
}
|
})
|
return tabBarItemOptions
|
})
|
}
|
return tabBarOptions
|
}
|
|
return style
|
}
|
const NON_APP_JSON_KEYS = [
|
'appid',
|
'unipush',
|
'secureNetwork',
|
'usingComponents',
|
'optimization',
|
'scopedSlotsCompiler',
|
'slotMultipleInstance',
|
'uniStatistics',
|
'mergeVirtualHostAttributes',
|
'styleIsolation'
|
]
|
module.exports = {
|
hasOwn,
|
parseStyle,
|
parseTabBar,
|
trimMPJson,
|
NON_APP_JSON_KEYS
|
}
|