Skip to content

Commit c38e4e6

Browse files
committed
fix hirbod's issue
1 parent a57e24e commit c38e4e6

File tree

2 files changed

+54
-4
lines changed

2 files changed

+54
-4
lines changed

packages/zeego/src/menu/create-android-menu/index.android.tsx

+27-2
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,35 @@ If you want to use a custom component as your <Content />, you can use the creat
220220
ItemTitle
221221
).targetChildren
222222

223-
const maybeTitle =
223+
let maybeTitle =
224224
child.props.textValue ?? titleChild?.[0]?.props.children
225225

226-
if (typeof maybeTitle == 'string') {
226+
if (Array.isArray(maybeTitle)) {
227+
/**
228+
* Use case: <ItemTitle>Here is some {text}</ItemTitle>
229+
* React will turn that into ['Here is some ', text] as an array
230+
* So we need to 1) detect that it's all strings and 2) join them together
231+
*/
232+
let stringTitle = ''
233+
let isString = false
234+
235+
for (let i = 0; i < maybeTitle.length; i++) {
236+
const text = maybeTitle[i]
237+
if (typeof text == 'string') {
238+
stringTitle += text
239+
isString = true
240+
} else {
241+
isString = false
242+
break
243+
}
244+
}
245+
246+
if (isString) {
247+
maybeTitle = stringTitle
248+
}
249+
}
250+
251+
if (typeof maybeTitle === 'string') {
227252
title = maybeTitle
228253
} else {
229254
console.error(

packages/zeego/src/menu/create-ios-menu/index.ios.tsx

+27-2
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,35 @@ If you want to use a custom component as your <Content />, you can use the creat
216216
ItemTitle
217217
).targetChildren
218218

219-
const maybeTitle =
219+
let maybeTitle =
220220
child.props.textValue ?? titleChild?.[0]?.props.children
221221

222-
if (typeof maybeTitle == 'string') {
222+
if (Array.isArray(maybeTitle)) {
223+
/**
224+
* Use case: <ItemTitle>Here is some {text}</ItemTitle>
225+
* React will turn that into ['Here is some ', text] as an array
226+
* So we need to 1) detect that it's all strings and 2) join them together
227+
*/
228+
let stringTitle = ''
229+
let isString = false
230+
231+
for (let i = 0; i < maybeTitle.length; i++) {
232+
const text = maybeTitle[i]
233+
if (typeof text == 'string') {
234+
stringTitle += text
235+
isString = true
236+
} else {
237+
isString = false
238+
break
239+
}
240+
}
241+
242+
if (isString) {
243+
maybeTitle = stringTitle
244+
}
245+
}
246+
247+
if (typeof maybeTitle === 'string') {
223248
title = maybeTitle
224249
} else {
225250
console.error(

0 commit comments

Comments
 (0)