Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
3c47420f
U
uni-app
项目概览
DCloud
/
uni-app
6 个月 前同步成功
通知
751
Star
38709
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
8
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
8
Issue
8
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
3c47420f
编写于
2月 06, 2023
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(i18n): h5 titleNView buttons text
上级
2b84f65d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
58 addition
and
30 deletion
+58
-30
packages/uni-core/src/i18n/component.ts
packages/uni-core/src/i18n/component.ts
+1
-0
packages/uni-core/src/i18n/useI18n.ts
packages/uni-core/src/i18n/useI18n.ts
+25
-10
packages/uni-h5/src/framework/components/page/pageHead.tsx
packages/uni-h5/src/framework/components/page/pageHead.tsx
+32
-20
未找到文件。
packages/uni-core/src/i18n/component.ts
浏览文件 @
3c47420f
...
...
@@ -8,6 +8,7 @@ export function initNavigationBarI18n(
return
defineI18nProperties
(
navigationBar
,
[
[
'
titleText
'
],
[
'
searchInput
'
,
'
placeholder
'
],
[
'
buttons
'
,
'
text
'
],
])
as
[
boolean
,
boolean
]
}
}
...
...
packages/uni-core/src/i18n/useI18n.ts
浏览文件 @
3c47420f
...
...
@@ -31,9 +31,18 @@ export function formatI18n(message: string) {
function
resolveJsonObj
(
jsonObj
:
Record
<
string
,
any
>
|
undefined
,
names
:
string
[]
):
Record
<
string
,
any
>
|
undefined
{
):
Record
<
string
,
any
>
|
Array
<
Record
<
string
,
any
>>
|
undefined
{
if
(
names
.
length
===
1
)
{
if
(
jsonObj
)
{
const
_isI18nStr
=
(
value
:
any
)
=>
isString
(
value
)
&&
isI18nStr
(
value
,
I18N_JSON_DELIMITERS
)
const
_name
=
names
[
0
]
if
(
Array
.
isArray
(
jsonObj
)
&&
jsonObj
.
some
((
item
)
=>
_isI18nStr
(
item
[
_name
]))
)
{
return
jsonObj
}
const
value
=
jsonObj
[
names
[
0
]]
if
(
isString
(
value
)
&&
isI18nStr
(
value
,
I18N_JSON_DELIMITERS
))
{
return
jsonObj
...
...
@@ -58,15 +67,21 @@ export function defineI18nProperty(obj: Record<string, any>, names: string[]) {
return
false
}
const
prop
=
names
[
names
.
length
-
1
]
let
value
=
jsonObj
[
prop
]
Object
.
defineProperty
(
jsonObj
,
prop
,
{
get
()
{
return
formatI18n
(
value
)
},
set
(
v
)
{
value
=
v
},
})
if
(
Array
.
isArray
(
jsonObj
))
{
jsonObj
.
filter
((
item
)
=>
isI18nStr
(
item
[
prop
],
I18N_JSON_DELIMITERS
))
.
forEach
((
item
)
=>
defineI18nProperty
(
item
,
[
prop
]))
}
else
{
let
value
=
jsonObj
[
prop
]
Object
.
defineProperty
(
jsonObj
,
prop
,
{
get
()
{
return
formatI18n
(
value
)
},
set
(
v
)
{
value
=
v
},
})
}
return
true
}
...
...
packages/uni-h5/src/framework/components/page/pageHead.tsx
浏览文件 @
3c47420f
...
...
@@ -363,27 +363,39 @@ function usePageHeadButton(
if
(
btn
.
fontFamily
)
{
iconStyle
.
fontFamily
=
btn
.
fontFamily
}
return
{
btnClass
:
{
// 类似这样的大量重复的字符串,会在gzip时压缩大小,无需在代码层考虑优化相同字符串
'
uni-page-head-btn
'
:
true
,
'
uni-page-head-btn-red-dot
'
:
!!
(
btn
.
redDot
||
btn
.
badgeText
),
'
uni-page-head-btn-select
'
:
!!
btn
.
select
,
},
btnStyle
:
{
backgroundColor
:
isTransparent
?
btn
.
background
:
'
transparent
'
,
width
:
btn
.
width
,
},
btnText
:
btn
.
fontSrc
&&
btn
.
fontFamily
?
btn
.
text
.
replace
(
'
\\
u
'
,
'
&#x
'
)
:
btn
.
text
,
btnIconPath
:
ICON_PATHS
[
btn
.
type
],
badgeText
:
btn
.
badgeText
,
iconStyle
,
onClick
()
{
invokeHook
(
pageId
,
ON_NAVIGATION_BAR_BUTTON_TAP
,
extend
({
index
},
btn
))
return
new
Proxy
(
{
btnClass
:
{
// 类似这样的大量重复的字符串,会在gzip时压缩大小,无需在代码层考虑优化相同字符串
'
uni-page-head-btn
'
:
true
,
'
uni-page-head-btn-red-dot
'
:
!!
(
btn
.
redDot
||
btn
.
badgeText
),
'
uni-page-head-btn-select
'
:
!!
btn
.
select
,
},
btnStyle
:
{
backgroundColor
:
isTransparent
?
btn
.
background
:
'
transparent
'
,
width
:
btn
.
width
,
},
btnText
:
''
,
btnIconPath
:
ICON_PATHS
[
btn
.
type
],
badgeText
:
btn
.
badgeText
,
iconStyle
,
onClick
()
{
invokeHook
(
pageId
,
ON_NAVIGATION_BAR_BUTTON_TAP
,
extend
({
index
},
btn
))
},
btnSelect
:
btn
.
select
,
},
btnSelect
:
btn
.
select
,
}
{
get
(
target
,
key
,
receiver
)
{
if
([
'
btnText
'
].
includes
(
key
as
string
))
{
return
btn
.
fontSrc
&&
btn
.
fontFamily
?
btn
.
text
.
replace
(
'
\\
u
'
,
'
&#x
'
)
:
btn
.
text
}
else
{
return
Reflect
.
get
(
target
,
key
,
receiver
)
}
},
}
)
}
type
PageHeadSearchInput
=
ReturnType
<
typeof
usePageHeadSearchInput
>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录