From 35ef06d27a840149ad15c53f99bca7694386581a Mon Sep 17 00:00:00 2001
From: Ken Tandrian <60643640+KenTandrian@users.noreply.github.com>
Date: Sun, 9 Feb 2025 16:24:44 +0700
Subject: [PATCH 1/2] Feature/allow creating custom tags in tag selector
component (#4305)
* feat(ui): allow creating custom tags
* feat(ui): add new story
* Update changelog
---
CHANGELOG.md | 1 +
.../lib/tags-selector/tags-selector.component.html | 11 +++++++++++
.../tags-selector.component.stories.ts | 14 ++++++++++++++
.../lib/tags-selector/tags-selector.component.ts | 11 ++++++++++-
4 files changed, 36 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4cae16ca..295158c9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Extended the tags selector component by a `readonly` attribute
+- Extended the tags selector component to support creating custom tags
- Added global styles to the _Storybook_ setup
## 2.138.0 - 2025-02-08
diff --git a/libs/ui/src/lib/tags-selector/tags-selector.component.html b/libs/ui/src/lib/tags-selector/tags-selector.component.html
index 1b681772..4f392942 100644
--- a/libs/ui/src/lib/tags-selector/tags-selector.component.html
+++ b/libs/ui/src/lib/tags-selector/tags-selector.component.html
@@ -42,6 +42,17 @@
{{ tag.name }}
}
+
+ @if (hasPermissionToCreateTags && tagInputControl.value) {
+
+
+
+ Create "{{
+ tagInputControl.value.trim()
+ }}"
+
+
+ }
}
diff --git a/libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts b/libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts
index 4fd0f7e7..8d1431b4 100644
--- a/libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts
+++ b/libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts
@@ -47,6 +47,20 @@ export const Default: Story = {
}
};
+export const CreateCustomTags: Story = {
+ args: {
+ hasPermissionToCreateTags: true,
+ tags: [
+ {
+ id: 'EMERGENCY_FUND',
+ name: 'Emergency Fund',
+ userId: null
+ }
+ ],
+ tagsAvailable: OPTIONS
+ }
+};
+
export const Readonly: Story = {
args: {
readonly: true,
diff --git a/libs/ui/src/lib/tags-selector/tags-selector.component.ts b/libs/ui/src/lib/tags-selector/tags-selector.component.ts
index 6b59d53f..611c1e93 100644
--- a/libs/ui/src/lib/tags-selector/tags-selector.component.ts
+++ b/libs/ui/src/lib/tags-selector/tags-selector.component.ts
@@ -42,6 +42,7 @@ import { BehaviorSubject, Subject, takeUntil } from 'rxjs';
templateUrl: 'tags-selector.component.html'
})
export class GfTagsSelectorComponent implements OnInit, OnChanges, OnDestroy {
+ @Input() hasPermissionToCreateTags = false;
@Input() readonly = false;
@Input() tags: Tag[];
@Input() tagsAvailable: Tag[];
@@ -76,10 +77,18 @@ export class GfTagsSelectorComponent implements OnInit, OnChanges, OnDestroy {
}
public onAddTag(event: MatAutocompleteSelectedEvent) {
- const tag = this.tagsAvailable.find(({ id }) => {
+ let tag = this.tagsAvailable.find(({ id }) => {
return id === event.option.value;
});
+ if (!tag && this.hasPermissionToCreateTags) {
+ tag = {
+ id: undefined,
+ name: event.option.value as string,
+ userId: null
+ };
+ }
+
this.tagsSelected.update((tags) => {
return [...(tags ?? []), tag];
});
From f92c8777693380ee19ed890382e070a0f7e84cea Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 9 Feb 2025 12:13:53 +0100
Subject: [PATCH 2/2] Feature/update locales 20250209 (#4304)
* Update translations
* Update changelog
---------
Co-authored-by: github-actions[bot]
Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
---
CHANGELOG.md | 4 ++++
apps/client/src/locales/messages.ca.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.de.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.es.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.fr.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.it.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.nl.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.pl.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.pt.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.tr.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.uk.xlf | 16 ++++++++++++----
apps/client/src/locales/messages.xlf | 15 +++++++++++----
apps/client/src/locales/messages.zh.xlf | 16 ++++++++++++----
13 files changed, 147 insertions(+), 48 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 295158c9..349c140a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Extended the tags selector component to support creating custom tags
- Added global styles to the _Storybook_ setup
+### Changed
+
+- Improved the language localization for German (`de`)
+
## 2.138.0 - 2025-02-08
### Added
diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf
index 3bee762a..82f3f96b 100644
--- a/apps/client/src/locales/messages.ca.xlf
+++ b/apps/client/src/locales/messages.ca.xlf
@@ -2218,12 +2218,12 @@
87
- apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html
- 387
+ libs/ui/src/lib/tags-selector/tags-selector.component.html
+ 4
libs/ui/src/lib/tags-selector/tags-selector.component.html
- 2
+ 16
@@ -2639,7 +2639,7 @@
Informar d’un Problema amb les Dades
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html
- 406
+ 385
@@ -7748,6 +7748,14 @@
154
+
+ Create
+ Create
+
+ libs/ui/src/lib/tags-selector/tags-selector.component.html
+ 50
+
+