Skip to content

Commit

Permalink
cherrypicked solution from the vanilla pr
Browse files Browse the repository at this point in the history
  • Loading branch information
alanorth authored and milanmajchrak committed Jan 10, 2024
1 parent b45168e commit e8bdd5e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,18 @@ export class DsDynamicTagComponent extends DsDynamicVocabularyComponent implemen
}
}),
map((list: PaginatedList<VocabularyEntry>) => list.page),
// Add user input as last item of the list
map((list: VocabularyEntry[]) => {
if (list && list.length > 0) {
if (isNotEmpty(this.currentValue)) {
let vocEntry = new VocabularyEntry();
vocEntry.display = this.currentValue;
vocEntry.value = this.currentValue;
list.push(vocEntry);
}
}
return list;
}),
tap(() => this.changeSearchingStatus(false)),
merge(this.hideSearchingWhenUnsubscribed));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ <h4 class="modal-title">{{'vocabulary-treeview.header' | translate}}</h4>
<button class="btn btn-outline-secondary" type="button" (click)="reset()">
{{'vocabulary-treeview.search.form.reset' | translate}}
</button>
<button class="btn btn-outline-primary" type="button" (click)="add()" [disabled]="this.vocabularyOptions.closed">
{{'vocabulary-treeview.search.form.add' | translate}}
</button>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,15 @@ export class VocabularyTreeviewComponent implements OnDestroy, OnInit {
this.searchText = '';
}

add() {
const userVocabularyEntry = {
value: this.searchText,
display: this.searchText,
} as VocabularyEntryDetail;
this.select.emit(userVocabularyEntry);
}


/**
* Unsubscribe from all subscriptions
*/
Expand Down
5 changes: 4 additions & 1 deletion src/assets/i18n/en.json5
Original file line number Diff line number Diff line change
Expand Up @@ -5879,5 +5879,8 @@

"navbar.about.service-integrations": "Service integrations",

"navbar.about.project-partnership": "Project partnerships"
"navbar.about.project-partnership": "Project partnerships",

"vocabulary-treeview.search.form.add": "Add",

}

0 comments on commit e8bdd5e

Please sign in to comment.