mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
5 changed files with 75 additions and 58 deletions
@ -1,32 +1,49 @@ |
|||||
<mat-form-field appearance="outline" class="w-100 without-hint"> |
<div class="row"> |
||||
<mat-label i18n>Tags</mat-label> |
<div class="col"> |
||||
<mat-chip-grid #tagsChipList> |
@if (readonly) { |
||||
@for (tag of tagsSelected(); track tag.id) { |
<div class="h5" i18n>Tags</div> |
||||
<mat-chip-row |
@if (tags?.length > 0) { |
||||
matChipRemove |
<mat-chip-listbox> |
||||
[removable]="true" |
@for (tag of tags; track tag) { |
||||
(removed)="onRemoveTag(tag)" |
<mat-chip-option disabled>{{ tag.name }}</mat-chip-option> |
||||
> |
} |
||||
{{ tag.name }} |
</mat-chip-listbox> |
||||
<ion-icon matChipTrailingIcon name="close-outline" /> |
} @else { |
||||
</mat-chip-row> |
<div>-</div> |
||||
|
} |
||||
|
} @else { |
||||
|
<mat-form-field appearance="outline" class="w-100 without-hint"> |
||||
|
<mat-label i18n>Tags</mat-label> |
||||
|
<mat-chip-grid #tagsChipList> |
||||
|
@for (tag of tagsSelected(); track tag.id) { |
||||
|
<mat-chip-row |
||||
|
matChipRemove |
||||
|
[removable]="true" |
||||
|
(removed)="onRemoveTag(tag)" |
||||
|
> |
||||
|
{{ tag.name }} |
||||
|
<ion-icon matChipTrailingIcon name="close-outline" /> |
||||
|
</mat-chip-row> |
||||
|
} |
||||
|
<input |
||||
|
#tagInput |
||||
|
[formControl]="tagInputControl" |
||||
|
[matAutocomplete]="autocompleteTags" |
||||
|
[matChipInputFor]="tagsChipList" |
||||
|
[matChipInputSeparatorKeyCodes]="separatorKeysCodes" |
||||
|
/> |
||||
|
</mat-chip-grid> |
||||
|
<mat-autocomplete |
||||
|
#autocompleteTags="matAutocomplete" |
||||
|
(optionSelected)="onAddTag($event)" |
||||
|
> |
||||
|
@for (tag of filteredOptions | async; track tag.id) { |
||||
|
<mat-option [value]="tag.id"> |
||||
|
{{ tag.name }} |
||||
|
</mat-option> |
||||
|
} |
||||
|
</mat-autocomplete> |
||||
|
</mat-form-field> |
||||
} |
} |
||||
<input |
</div> |
||||
#tagInput |
</div> |
||||
[formControl]="tagInputControl" |
|
||||
[matAutocomplete]="autocompleteTags" |
|
||||
[matChipInputFor]="tagsChipList" |
|
||||
[matChipInputSeparatorKeyCodes]="separatorKeysCodes" |
|
||||
/> |
|
||||
</mat-chip-grid> |
|
||||
<mat-autocomplete |
|
||||
#autocompleteTags="matAutocomplete" |
|
||||
(optionSelected)="onAddTag($event)" |
|
||||
> |
|
||||
@for (tag of filteredOptions | async; track tag.id) { |
|
||||
<mat-option [value]="tag.id"> |
|
||||
{{ tag.name }} |
|
||||
</mat-option> |
|
||||
} |
|
||||
</mat-autocomplete> |
|
||||
</mat-form-field> |
|
||||
|
Loading…
Reference in new issue