File tree 2 files changed +54
-4
lines changed
2 files changed +54
-4
lines changed Original file line number Diff line number Diff line change @@ -220,10 +220,35 @@ If you want to use a custom component as your <Content />, you can use the creat
220
220
ItemTitle
221
221
) . targetChildren
222
222
223
- const maybeTitle =
223
+ let maybeTitle =
224
224
child . props . textValue ?? titleChild ?. [ 0 ] ?. props . children
225
225
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' ) {
227
252
title = maybeTitle
228
253
} else {
229
254
console . error (
Original file line number Diff line number Diff line change @@ -216,10 +216,35 @@ If you want to use a custom component as your <Content />, you can use the creat
216
216
ItemTitle
217
217
) . targetChildren
218
218
219
- const maybeTitle =
219
+ let maybeTitle =
220
220
child . props . textValue ?? titleChild ?. [ 0 ] ?. props . children
221
221
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' ) {
223
248
title = maybeTitle
224
249
} else {
225
250
console . error (
You can’t perform that action at this time.
0 commit comments