Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
6642970e
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6642970e
编写于
11月 02, 2022
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(app): darkmode
上级
132ce9b6
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
44 addition
and
5 deletion
+44
-5
packages/uni-cli-shared/lib/index.js
packages/uni-cli-shared/lib/index.js
+3
-2
packages/uni-cli-shared/lib/theme.js
packages/uni-cli-shared/lib/theme.js
+1
-1
packages/vue-cli-plugin-uni/packages/postcss/index.js
packages/vue-cli-plugin-uni/packages/postcss/index.js
+1
-1
packages/vue-cli-plugin-uni/packages/postcss/index.v3.js
packages/vue-cli-plugin-uni/packages/postcss/index.v3.js
+39
-1
未找到文件。
packages/uni-cli-shared/lib/index.js
浏览文件 @
6642970e
...
...
@@ -65,7 +65,7 @@ const {
const
uts
=
require
(
'
./uts
'
)
const
{
parseTheme
}
=
require
(
'
./theme
'
)
const
{
parseTheme
,
initTheme
}
=
require
(
'
./theme
'
)
module
.
exports
=
{
uts
,
...
...
@@ -118,5 +118,6 @@ module.exports = {
getPlatformStat
,
getPlatformPush
,
getPlatformUniCloud
,
parseTheme
parseTheme
,
initTheme
}
packages/uni-cli-shared/lib/theme.js
浏览文件 @
6642970e
...
...
@@ -41,7 +41,7 @@ module.exports = {
return
}
try
{
themeConfig
=
getJson
(
themeLocation
,
true
)
themeConfig
=
Object
.
keys
(
themeConfig
).
length
?
themeConfig
:
getJson
(
themeLocation
,
true
)
global
.
uniPlugin
.
defaultTheme
=
themeConfig
.
light
}
catch
(
e
)
{
console
.
error
(
e
)
...
...
packages/vue-cli-plugin-uni/packages/postcss/index.js
浏览文件 @
6642970e
...
...
@@ -296,7 +296,7 @@ if (process.env.UNI_USING_V3) {
const
version
=
Number
(
require
(
'
postcss/package.json
'
).
version
.
split
(
'
.
'
)[
0
])
if
(
version
<
=
8
)
{
if
(
version
<
8
)
{
module
.
exports
=
postcss
.
plugin
(
'
postcss-uniapp-plugin
'
,
fn
)
}
else
{
module
.
exports
=
function
(
opts
)
{
...
...
packages/vue-cli-plugin-uni/packages/postcss/index.v3.js
浏览文件 @
6642970e
const
selectorParser
=
require
(
'
postcss-selector-parser
'
)
const
postcss
=
require
(
'
postcss
'
)
const
TAGS
=
Object
.
keys
(
require
(
'
@dcloudio/uni-cli-shared
'
).
tags
)
const
{
initTheme
,
parseTheme
,
getJson
,
getManifestJson
,
tags
}
=
require
(
'
@dcloudio/uni-cli-shared
'
)
const
TAGS
=
Object
.
keys
(
tags
)
const
pageJson
=
getJson
(
'
pages.json
'
,
true
)
const
transformSelector
=
(
complexSelector
,
transformer
)
=>
{
return
selectorParser
(
transformer
).
processSync
(
complexSelector
)
...
...
@@ -41,6 +51,34 @@ function once (root) {
)
}
})
// darkmode
if
(
process
.
env
.
VUE_APP_DARK_MODE
===
'
true
'
&&
root
.
source
.
input
.
file
.
indexOf
(
'
App.vue
'
)
!==
-
1
)
{
const
pageBGC
=
(
pageJson
.
globalStyle
||
{}).
backgroundColor
||
''
if
(
pageBGC
.
indexOf
(
'
@
'
)
===
0
)
{
// app 端 webpack-uni-pages-loader/lib/index-new.js 执行晚于 postCss
initTheme
(
getManifestJson
())
;[
'
dark
'
,
'
light
'
].
forEach
(
theme
=>
{
const
{
backgroundColor
}
=
parseTheme
({
backgroundColor
:
pageBGC
},
theme
)
if
(
backgroundColor
!==
'
undefined
'
)
{
const
mediaRoot
=
postcss
.
parse
(
`
/* #ifndef APP-NVUE*/
@media (prefers-color-scheme:
${
theme
}
) {
body,
uni-page-body {
background-color:
${
backgroundColor
}
;
}
}
/* #endif */
`
)
root
.
nodes
=
[...
mediaRoot
.
nodes
,
...
root
.
nodes
]
}
})
}
}
}
const
version
=
Number
(
require
(
'
postcss/package.json
'
).
version
.
split
(
'
.
'
)[
0
])
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录