Skip to content

Commit 6a9bac7

Browse files
authored
Merge pull request opf#18358 from opf/implementation/62257-display-text-contains-parent-and-project-context
[#62257] display parent and project prefix in attribute tokens
2 parents 53866a0 + 2a77b57 commit 6a9bac7

File tree

4 files changed

+30
-7
lines changed

4 files changed

+30
-7
lines changed

app/components/work_packages/types/pattern_input.html.erb

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ See COPYRIGHT and LICENSE files for more details.
3434
classes: "pattern-input",
3535
"data-controller": "pattern-input",
3636
"data-pattern-input-pattern-initial-value": @value,
37+
"data-pattern-input-heading-locales-value": heading_locales,
3738
"data-pattern-input-insert-as-text-template-value": I18n.t("types.edit.subject_configuration.pattern.insert_as_text"),
3839
"data-pattern-input-suggestions-initial-value": suggestions_for_stimulus
3940
)

app/components/work_packages/types/pattern_input.rb

+8-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,14 @@ def initialize(input:, value:, suggestions:)
4343
end
4444

4545
def suggestions_for_stimulus
46-
@suggestions_for_stimulus ||= @suggestions
47-
.transform_keys { |key| key.to_s.humanize }
48-
.to_json
46+
@suggestions_for_stimulus ||= @suggestions.to_json
47+
end
48+
49+
def heading_locales
50+
@suggestions.keys.reduce({}) do |acc, key|
51+
acc[key] = I18n.t("types.edit.subject_configuration.pattern.headings.#{key}")
52+
acc
53+
end.to_json
4954
end
5055

5156
def suggestions_list_component

config/locales/en.yml

+4
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,10 @@ en:
677677
pattern:
678678
label: "Subject pattern"
679679
caption: "Add text or type / to search for an attribute. You can add spaces to separate them."
680+
headings:
681+
work_package: "Work package"
682+
parent: "Parent"
683+
project: "Project"
680684
insert_as_text: "No attributes found. Add as text: \"%{word}\""
681685
export_configuration:
682686
tab: "Generate PDF"

frontend/src/stimulus/controllers/pattern-input.controller.ts

+17-4
Original file line numberDiff line numberDiff line change
@@ -68,21 +68,21 @@ export default class PatternInputController extends Controller {
6868

6969
static values = {
7070
patternInitial: String,
71+
headingLocales: Object,
7172
suggestionsInitial: Object,
7273
insertAsTextTemplate: String,
7374
};
7475

7576
declare readonly patternInitialValue:string;
7677
declare readonly suggestionsInitialValue:Record<string, Record<string, string>>;
78+
declare readonly headingLocalesValue:Record<string, string>;
7779
declare readonly insertAsTextTemplateValue:string;
7880

7981
validTokenMap:Record<string, string> = {};
8082
currentRange:Range|undefined = undefined;
8183

8284
connect() {
83-
this.validTokenMap = Object.values(this.suggestionsInitialValue)
84-
.reduce((acc, val) => ({ ...acc, ...val }), {});
85-
85+
this.validTokenMap = this.flatLocalizedTokenMap();
8686
this.contentTarget.innerHTML = this.toHtml(this.patternInitialValue) || ' ';
8787
this.tagInvalidTokens();
8888
this.clearSuggestionsFilter();
@@ -204,6 +204,19 @@ export default class PatternInputController extends Controller {
204204
this.clearSuggestionsFilter();
205205
}
206206

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+
207220
private updateFormInputValue():void {
208221
this.formInputTarget.value = this.toBlueprint();
209222
}
@@ -358,7 +371,7 @@ export default class PatternInputController extends Controller {
358371
if (groupHeader) {
359372
const headerElement = groupHeader.querySelector('h2');
360373
if (headerElement) {
361-
headerElement.innerText = group.key;
374+
headerElement.innerText = this.headingLocalesValue[group.key];
362375
}
363376

364377
this.suggestionsTarget.appendChild(groupHeader);

0 commit comments

Comments
 (0)