@@ -68,21 +68,21 @@ export default class PatternInputController extends Controller {
68
68
69
69
static values = {
70
70
patternInitial : String ,
71
+ headingLocales : Object ,
71
72
suggestionsInitial : Object ,
72
73
insertAsTextTemplate : String ,
73
74
} ;
74
75
75
76
declare readonly patternInitialValue :string ;
76
77
declare readonly suggestionsInitialValue :Record < string , Record < string , string > > ;
78
+ declare readonly headingLocalesValue :Record < string , string > ;
77
79
declare readonly insertAsTextTemplateValue :string ;
78
80
79
81
validTokenMap :Record < string , string > = { } ;
80
82
currentRange :Range | undefined = undefined ;
81
83
82
84
connect ( ) {
83
- this . validTokenMap = Object . values ( this . suggestionsInitialValue )
84
- . reduce ( ( acc , val ) => ( { ...acc , ...val } ) , { } ) ;
85
-
85
+ this . validTokenMap = this . flatLocalizedTokenMap ( ) ;
86
86
this . contentTarget . innerHTML = this . toHtml ( this . patternInitialValue ) || ' ' ;
87
87
this . tagInvalidTokens ( ) ;
88
88
this . clearSuggestionsFilter ( ) ;
@@ -204,6 +204,19 @@ export default class PatternInputController extends Controller {
204
204
this . clearSuggestionsFilter ( ) ;
205
205
}
206
206
207
+ private flatLocalizedTokenMap ( ) :Record < string , string > {
208
+ return Object . entries ( this . suggestionsInitialValue )
209
+ . reduce ( ( acc , [ groupKey , attributes ] ) => {
210
+ if ( groupKey !== 'work_package' ) {
211
+ Object . entries ( attributes ) . forEach ( ( [ key , value ] ) => {
212
+ attributes [ key ] = `${ this . headingLocalesValue [ groupKey ] } : ${ value } ` ;
213
+ } ) ;
214
+ }
215
+
216
+ return { ...acc , ...attributes } ;
217
+ } , { } ) ;
218
+ }
219
+
207
220
private updateFormInputValue ( ) :void {
208
221
this . formInputTarget . value = this . toBlueprint ( ) ;
209
222
}
@@ -358,7 +371,7 @@ export default class PatternInputController extends Controller {
358
371
if ( groupHeader ) {
359
372
const headerElement = groupHeader . querySelector ( 'h2' ) ;
360
373
if ( headerElement ) {
361
- headerElement . innerText = group . key ;
374
+ headerElement . innerText = this . headingLocalesValue [ group . key ] ;
362
375
}
363
376
364
377
this . suggestionsTarget . appendChild ( groupHeader ) ;
0 commit comments